diff --git a/NEWS b/NEWS index 47182bf..616bc23 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,41 @@ +1.5.0 +====== +Please note that this is a development release +- Port to xfconf +- Move to Client-side decorations +- Migrate all settings to the settings dialog +- settings: Switch to XfceTitledDialog +- Use infobar for root warning box +- Drop exec button from toolbar +- include stdlib.h because exit() is used +- remove GLIB_CHECK_VERSION checks +- statusbar: Use better color that works well with both light and dark +themes (!17) +- Fix handling "show-legend" setting +- Handle Esc key correctly with hidden filter +- Drop unused var and sort copyright +- Show/hide filterbar with Ctrl+f and clear with Esc +- Properly close settings dialog +- Remove GSourceFunc casts +- Fix compilation warnings +- Replace AC_PROG_LIBTOOL with IT_PROG_INTLTOOL +- Simplify "query-tooltip" signal handler +- Ellipsize memory and swap labels (Fixes #32) +- Set window icon in glade file +- Replace filter entry with GtkSearchBar +- Fix doc links and bump dates +- Simplify settings dialog code +- Drop leftover function for toolbar style +- Move about dialog to settings +- Drop toolbar style setting +- Fix typo +- Fix tooltip markdown issue +- Create notification area icon only if needed (Bug #25) +- Translation Updates: + Basque, Belarusian, Chinese (China), Chinese (Taiwan), Czech, French, + Galician, Italian, Japanese, Lithuanian, Norwegian Bokmål, + Portuguese (Brazil), Serbian, Turkish + 1.4.0 ====== - Drop Gtk2 support diff --git a/configure.ac.in b/configure.ac.in index a44b385..6ecc17f 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -8,10 +8,10 @@ dnl *************************** dnl *** Version information *** dnl *************************** m4_define([taskmanager_version_major], [1]) -m4_define([taskmanager_version_minor], [4]) +m4_define([taskmanager_version_minor], [5]) m4_define([taskmanager_version_micro], [0]) m4_define([taskmanager_version_build], [@REVISION@]) -m4_define([taskmanager_version_tag], [git]) +m4_define([taskmanager_version_tag], []) m4_define([taskmanager_version], [taskmanager_version_major().taskmanager_version_minor().taskmanager_version_micro()ifelse(taskmanager_version_tag(), [git], [taskmanager_version_tag()-taskmanager_version_build()], [taskmanager_version_tag()])]) dnl ***************************