Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): 3.2.0 #267

Merged
merged 5 commits into from
Oct 29, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Changelog

## [3.2.0](https://github.com/AntiMicroX/antimicrox/tree/3.2.0) (2021-10-28)

[Full Changelog](https://github.com/AntiMicroX/antimicrox/compare/3.1.7...3.2.0)

First AntiMicroX release supporting Windows

**Implemented enhancements:**

- Prepare installer for Windows [\#237](https://github.com/AntiMicroX/antimicrox/issues/237)
- Handle segfaults and other crashes in code [\#235](https://github.com/AntiMicroX/antimicrox/issues/235)
- Create config for debug builds [\#218](https://github.com/AntiMicroX/antimicrox/issues/218)
- Allow unhiding app window when second instance of AntiMicroX is launched [\#257](https://github.com/AntiMicroX/antimicrox/pull/257)

**Fixed bugs:**

- Typo in udev rule name: 60-antimicrox-uinput.rules instead 60-antimcrox-uinput.rules? [\#204](https://github.com/AntiMicroX/antimicrox/issues/204)

**Notable merged pull requests:**

- Move gui-related files to separate directory [\#253](https://github.com/AntiMicroX/antimicrox/pull/253) ([pktiuk](https://github.com/pktiuk))
- Logging system improvements [\#250](https://github.com/AntiMicroX/antimicrox/pull/250) ([pktiuk](https://github.com/pktiuk))
- Some additional logs and notes [\#233](https://github.com/AntiMicroX/antimicrox/pull/233) [\#249](https://github.com/AntiMicroX/antimicrox/pull/249) ([pktiuk](https://github.com/pktiuk))
- Fix compile warnings [\#246](https://github.com/AntiMicroX/antimicrox/pull/246) [\#242](https://github.com/AntiMicroX/antimicrox/pull/242) ([pktiuk](https://github.com/pktiuk))
- Set homepage url for packages [\#245](https://github.com/AntiMicroX/antimicrox/pull/245) ([pktiuk](https://github.com/pktiuk))
- Create config for debug build [\#243](https://github.com/AntiMicroX/antimicrox/pull/243) ([pktiuk](https://github.com/pktiuk))
- Cmake cleanup [\#219](https://github.com/AntiMicroX/antimicrox/pull/219) ([pktiuk](https://github.com/pktiuk))

**Pull requests restoring Windows support:**

- Add Cpack NSIS config for building packages [\#262](https://github.com/AntiMicroX/antimicrox/pull/262) ([pktiuk](https://github.com/pktiuk))
- Restore full functionality of Windows build [\#225](https://github.com/AntiMicroX/antimicrox/pull/225) ([pktiuk](https://github.com/pktiuk))
- Restore Windows build [\#220](https://github.com/AntiMicroX/antimicrox/pull/220) [\#244](https://github.com/AntiMicroX/antimicrox/pull/244) ([pktiuk](https://github.com/pktiuk))
- Embed icon into windows executable [\#261](https://github.com/AntiMicroX/antimicrox/pull/261) ([pktiuk](https://github.com/pktiuk))
- Saves migration win [\#266](https://github.com/AntiMicroX/antimicrox/pull/266) ([pktiuk](https://github.com/pktiuk))
- Use -rdynamic only in Unix debug builds [\#259](https://github.com/AntiMicroX/antimicrox/pull/259) ([pktiuk](https://github.com/pktiuk))
- Setup Github Actions for Windows build [\#223](https://github.com/AntiMicroX/antimicrox/issues/223) (big kudos to [avinal](https://github.com/avinal))
pktiuk marked this conversation as resolved.
Show resolved Hide resolved

## [3.1.7](https://github.com/AntiMicroX/antimicrox/tree/3.1.7) (2021-09-10)

[Full Changelog](https://github.com/AntiMicroX/antimicrox/compare/3.1.6...3.1.7)
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ endif(COMPILER_SUPPORTS_CXX11)

# The version number.
set(ANTIMICROX_MAJOR_VERSION 3)
set(ANTIMICROX_MINOR_VERSION 1)
set(ANTIMICROX_PATCH_VERSION 7)
set(ANTIMICROX_MINOR_VERSION 2)
set(ANTIMICROX_PATCH_VERSION 0)

if(UNIX)
option(WITH_X11 "Compile with support for X11." ON)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<url type="homepage">https://github.com/AntiMicroX/antimicrox/</url>
<launchable type="desktop-id">io.github.antimicrox.antimicrox.desktop</launchable>
<releases>
<release version="3.2.0" date="2021-10-29" />
pktiuk marked this conversation as resolved.
Show resolved Hide resolved
<release version="3.1.7" date="2021-09-10" />
<release version="3.1.6" date="2021-08-14" />
<release version="3.1.5" date="2021-03-14" />
Expand Down