diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..a457d06 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,22 @@ +IdealIRC changelog. http://www.idealirc.org/ + +Issues at https://git.idealirc.org/idealirc/idealirc/issues + +Version 1.0.1 - July 8th 2021 + #68 QUIT message isn't always sent + * Bugfix: Ensured that the configured QUIT message is used when closing status window, using tool buttons and when + no parameters were given to /QUIT command. + + #99 Re-join on re-connect crashes + * Bugfix: Prevent message parsing if it looks incimplete (missing \r\n in buffer) + * Added: New configuration "ReconnectDelay"; in the settings GUI, this is a spin-box next to the reconnect option. + + #100 Menu item "Help" -> "Online wiki" doesn't work. + * Bugfix: This menu item now opens a web-browser to the IdealIRC wiki website. + + #101 No MOTD file present causes client not think we're connected + * Bugfix: Consider server-registration done when we also read the "No MOTD file found" message. + + +Version 1.0.0 - January 2nd 2021 + Initial release. Implemented an IRC client which is light on features. diff --git a/CMakeLists.txt b/CMakeLists.txt index abba31e..c8bb8a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(BUILD_TYPE "packaged") set(VERSION_MAJOR 1) set(VERSION_MINOR 0) set(VERSION_PATCH 1) -set(VERSION_APPEND "-dev") +set(VERSION_APPEND "") # # CMake build environment setup