From 8f1eed9cd44455a198c2f2d31a3927823f2c81ef Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Fri, 28 Jul 2017 00:33:50 +0200 Subject: [PATCH] Prepare for 1.4.1 release. --- ChangeLog | 118 +++++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 20 ++++++++- README.md | 6 +-- README.md.in | 2 +- VERSION | 2 +- configure.ac | 6 +-- doc/icewm.adoc | 2 +- 7 files changed, 146 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 27ae37e4e..b8c0e09cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,123 @@ # created with git log --stat=76 -M -C -300|fmt -sct -w80 +commit 9b13b2837831888a369c34b9c28939b99c1cd175 +Author: Bert Gijsbers +Date: Thu Jul 27 21:11:17 2017 +0200 + + Update to version 1.4.0. + + VERSION | 2 +- + configure.ac | 6 +++--- + 2 files changed, 4 insertions(+), 4 deletions(-) + +commit bbcaf155b579889035a243435059b9e191b7fa70 +Author: Bert Gijsbers +Date: Thu Jul 27 19:19:22 2017 +0200 + + Omit -b in git checkout icewm-1-4-BRANCH. + + README.md | 2 +- + README.md.in | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +commit 05e0fefa724d3d1fc2051521fbe761d20bfd66fa +Author: Bert Gijsbers +Date: Thu Jul 27 19:16:44 2017 +0200 + + Only load a gradient when it is specified in the theme "gradients" option. + This fixes issue #144. + + src/wpixres.cc | 119 +++++++++++++++++++++++++++++++++++------------------ + 1 file changed, 79 insertions(+), 40 deletions(-) + +commit 93e7d6e7673b6f1e60624c38e29322a3263fd30f +Author: Bert Gijsbers +Date: Thu Jul 27 19:06:54 2017 +0200 + + Before calling setNetFrameExtents check if client() is non-null. + This prevents a SEGV crash which occasionally occurs when closing all + windows. + + src/wmframe.cc | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit c99585a373a909236031daba31d5ab6bc20854da +Author: Aleš Kastner +Date: Tue Jul 25 18:41:00 2017 +0000 + + Translated using Weblate (Czech) + + Currently translated at 100.0% (276 of 276 strings) + + po/cs.po | 182 +++++++++++++++++++++++++++++++++++++---------------------- + 1 file changed, 113 insertions(+), 69 deletions(-) + +commit 8c941220fdc8e674640d9b8238f71881b5ac4c95 +Author: Bert Gijsbers +Date: Mon Jul 24 22:36:58 2017 +0200 + + Changes to print_configured to make it compile under CMake. + + src/wmapp.cc | 86 ++++++++++++++++++++++++++++---------------------------- + 1 file changed, 43 insertions(+), 43 deletions(-) + +commit 780966551f89c61011968aa299ac1c2084777a73 +Author: Bert Gijsbers +Date: Mon Jul 24 22:35:29 2017 +0200 + + Add missing PACKAGE_BUGREPORT define. Change empty PACKAGE_URL into + website URL. + + src/config.cmake.h.in | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit 2535cc4876a663e8f0754a63707db3d1fa318d0e +Author: Bert Gijsbers +Date: Mon Jul 24 16:14:58 2017 +0200 + + Update README.md for 1.4.0 release. + + README.md | 18 ++++++++++-------- + README.md.in | 14 ++++++++------ + 2 files changed, 18 insertions(+), 14 deletions(-) + +commit 96cf749d418612014d04c7d5e7e04c1a4fc6ba83 +Author: Bert Gijsbers +Date: Mon Jul 24 16:13:53 2017 +0200 + + Update NEWS for 1.4.0 release. + + NEWS | 694 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- + 1 file changed, 664 insertions(+), 30 deletions(-) + +commit f4bf065d0eb86f9ee5b0111f5fa5f4dcae30c61c +Author: Bert Gijsbers +Date: Mon Jul 24 16:13:21 2017 +0200 + + Update ChangeLog for 1.4.0 release. + + ChangeLog | 5240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 5240 insertions(+) + +commit b70345d8a47b90adac84909bb3054ba9eff40d41 +Author: Bert Gijsbers +Date: Mon Jul 24 16:12:20 2017 +0200 + + Update bug report location to Github. + + BUGS | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 9582cd4a7ec03991c3264d2d404b01309c6af693 +Author: Bert Gijsbers +Date: Mon Jul 24 14:00:07 2017 +0200 + + Enforce 32-bit unsigned comparison of X11 time stamps in updateUserTime. + This improves availability of focused windows in issue #37. + + src/wmmgr.cc | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + commit a7e96a0284a4647b2f779a9cacfa5ebb8164f5dd Author: Benoît Monin Date: Sat Jul 22 18:01:44 2017 +0000 diff --git a/NEWS b/NEWS index a6227f131..827dee6fd 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,27 @@ icewm -- history of user-visible changes. 2017-07-24 +Release icewm-1.4.1 released 2017-07-27 +------------------------------------------- + +git shortlog -e -n -w80,6,8 1.4.0...HEAD + +Bert Gijsbers (4): + Before calling setNetFrameExtents check if client() is non-null. This + prevents a SEGV crash which occasionally occurs when closing all + windows. + Only load a gradient when it is specified in the theme "gradients" option. + This fixes issue #144. + Omit -b in git checkout icewm-1-4-BRANCH. + Update to version 1.4.0. + +Aleš Kastner (1): + Translated using Weblate (Czech) + + Release icewm-1.4.0 released 2017-07-24 ------------------------------------------- -git shortlog -e -n -w80,6,8 1.3.12...HEAD +git shortlog -e -n -w80,6,8 1.3.12...1.4.0 Bert Gijsbers (155): Fix for 'msgstr' not being a valid C format string, unlike 'msgid'. diff --git a/README.md b/README.md index b37d1071d..4ade2967f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[icewm -- read me first file. 2017-07-24]: # +[icewm -- read me first file. 2017-07-27]: # Ice Window Manager (IceWM) ========================== @@ -16,7 +16,7 @@ list, and various other GitHub forks. Release ------- -This is the icewm-1.4.0 package, released under LGPL license 2017-07-24. +This is the icewm-1.4.1 package, released under LGPL license 2017-07-24. This release as well as future versions here, can all be obtained from [GitHub][1] using a command such as: @@ -90,7 +90,7 @@ Website][14] or from the [online manual][16]. Unfortunately the documentation is for version 1.2.27 and is incomplete at that; however, it is for the most part usable. -The good news is that the `icewm(1)` manual page for version 1.4.0 +The good news is that the `icewm(1)` manual page for version 1.4.1 is complete and fully up-to-date. diff --git a/README.md.in b/README.md.in index 4797e9a92..06082665c 100644 --- a/README.md.in +++ b/README.md.in @@ -90,7 +90,7 @@ Website][14] or from the [online manual][16]. Unfortunately the documentation is for version 1.2.27 and is incomplete at that; however, it is for the most part usable. -The good news is that the `icewm(1)` manual page for version 1.4.0 +The good news is that the `icewm(1)` manual page for version 1.4.1 is complete and fully up-to-date. diff --git a/VERSION b/VERSION index 7d7f96a7b..949a49ca6 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ PACKAGE=icewm -VERSION=1.4.0 +VERSION=1.4.1 diff --git a/configure.ac b/configure.ac index 309dab2ce..4a2c4d654 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([icewm],[1.4.0],[https://github.com/bbidulock/icewm/issues]) -AC_REVISION([1.4.0]) +AC_INIT([icewm],[1.4.1],[https://github.com/bbidulock/icewm/issues]) +AC_REVISION([1.4.1]) AC_CONFIG_SRCDIR([src/ysmapp.cc]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR([scripts]) AC_USE_SYSTEM_EXTENSIONS AC_CANONICAL_TARGET -DATE='2017-07-24' +DATE='2017-07-27' AC_SUBST([DATE]) APPLICATIONS='icewm icewm-session icesh icewmhint icewmbg icewmtray' diff --git a/doc/icewm.adoc b/doc/icewm.adoc index 97e83f8bc..ce68d7be8 100644 --- a/doc/icewm.adoc +++ b/doc/icewm.adoc @@ -1,6 +1,6 @@ = IceWM Marko Macek, -v1.3.12, 2017 May 04 +v1.4.1, 2017 July 27 :homepage: http://www.icewm.org :toc: :toclevels: 1