]> jfr.im git - irc/irssi/irssi.git/commitdiff
tag as 1.4.0-an
authorAilin Nemui <redacted>
Sun, 29 May 2022 18:46:17 +0000 (20:46 +0200)
committerAilin Nemui <redacted>
Mon, 30 May 2022 09:33:44 +0000 (11:33 +0200)
NEWS
configure.ac
meson.build
utils/irssi-version.sh

diff --git a/NEWS b/NEWS
index 5464ad058d2efbe160b9b4eb209114b6fec5737b..ba1a750b932e51a7d651d39017c689f0b33a69d8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+v1.4.0-an 2022-05-31  Ailin Nemui <Nei>
+       * Format the output of /QUOTE HELP (#1371, an#82). By Val
+         Lorentz. Add /SHELP as default alias (an#83)
+       + GLib log message filter: /SET glib_log_domains (an#50,
+         an#59). By Andrej Kacian
+       + An option to clear the cutbuffer:
+         /SET empty_kill_clears_cutbuffer (an#58). By Mikael
+         Magnusson
+       + Scriptable pastebin (an#60)
+       + Configurable actlist separator: /SET actlist_separator
+         (#1364, an#61)
+       - Fix window left/right not skipping visible windows
+         (an#57). By Mikael Magnusson
+       - Fix wrong printf-format on OpenBSD (an#66, an#68). Reported
+         by Aaron Bieber
+       - Fix erroneous output produced by autoload_modules (an#72)
+       - Fix scroll_page_count setting with `.' (#1365, an#76)
+       - Fix memory leak in /IGNORE (#1373, an#84). Found by Jookia
+       - Misc fixes (an#45, an#67, an#70, #1368, an#77)
+
 v1.3.2-an 2022-01-14  Ailin Nemui <Nei>
        - CHANTYPES take precedence over (missing) STATUSMSG in /join
           (#1358, an#54)
index 87dcbc32d7237d3de1a0ebff89ce92cba99829f8..fba52295b9691692a5dece30f1f0524cf85e1669 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(irssi, 1.3.2-an)
+AC_INIT(irssi, 1.4.0-an)
 AC_CONFIG_SRCDIR([src])
 AC_CONFIG_AUX_DIR(build-aux)
 AC_PREREQ(2.50)
index 64dd04cf9fbcfb2dab619e4af2e161fde63180c7..a563a90e5e23b7cc71d31ae92941ae1a1a092291 100644 (file)
@@ -1,5 +1,5 @@
 project('irssi', 'c',
-  version : '1.3.2-an',
+  version : '1.4.0-an',
   meson_version : '>=0.49',
   default_options : ['warning_level=1'])
 
index b096fd908d5d8e4437b4105f41385478e3c411c0..75c628351c409873e1394abeb81ec22f1007633d 100755 (executable)
@@ -14,7 +14,7 @@ if test -z "$VERSION_DATE"; then
        ;;
     esac
     VERSION_TIME=`echo "$DATE" | cut -f 1 -d ' ' | tr -d v | tr .- ' '`
-    VERSION_TIME=`printf %d%d%02d $VERSION_TIME 2>/dev/null`
+    VERSION_TIME=`printf %d%d%02d $VERSION_TIME 2>/dev/null | cut -c 1-4`
 fi
 
 echo "#define IRSSI_VERSION_DATE $VERSION_DATE"