1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-09 06:20:45 +00:00

Merge tag '1.4.0-an' into integrate/1.4.0-an

This commit is contained in:
Ailin Nemui 2022-05-31 12:34:27 +02:00
commit c33d0c2384
3 changed files with 23 additions and 3 deletions

22
NEWS
View File

@ -1,4 +1,24 @@
v1.4-head-an 2022-xx-xx Ailin Nemui <Nei>
v1.5-head-an 2022-xx-xx Ailin Nemui <Nei>
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

View File

@ -1,5 +1,5 @@
project('irssi', 'c',
version : '1.4-head-an',
version : '1.5-head-an',
meson_version : '>=0.53',
default_options : ['warning_level=1'])

View File

@ -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"