diff --git a/NEWS b/NEWS index 295ab54..f0a7d1e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,22 @@ +1.1.0 + +- Initial port to Gtk3, use --enable-gtk3 to test it (Gtk2 is still the default) +- Stop using lots of deprecated Gtk2 API +- Add a process treeview mode (Peter de Ridder) +- General UI/graph overhaul (Simon Steinbeiss) +- Various crash & correctness fixes on the bsd backend +- Add a searchbox to filter on process names (Matias de Iellis #9856) +- Make Escape key close the main window (Harald Judt #11343) +- Fix window settings not properly saved (#10670) +- Fix build issue on FreeBSD 8.0 (#8081) +- Fix the refresh rate menu (Alistair Buxton) +- Default the focus on the process list instead of the exec button (#10643) +- Add an option to show memory/swap usage as bytes instead of % (#6503) +- Add unique app behaviour (#8808) +- Default to close the window instead of hiding in systray (#10941) +- Fix type causing high cpu usage on ARM (#10417) +- Tons of translation updates (thanks to all translators!) + 1.0.1 - Add "Run Task Manager as root" item in "Execute" menu diff --git a/configure.ac.in b/configure.ac.in index 5a0808f..a627727 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], [0]) -m4_define([taskmanager_version_micro], [2]) +m4_define([taskmanager_version_minor], [1]) +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 ***************************