mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Merge tag '1.4.0-an' into integrate/1.4.0-an
This commit is contained in:
commit
c33d0c2384
22
NEWS
22
NEWS
@ -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>
|
v1.3.2-an 2022-01-14 Ailin Nemui <Nei>
|
||||||
- CHANTYPES take precedence over (missing) STATUSMSG in /join
|
- CHANTYPES take precedence over (missing) STATUSMSG in /join
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
project('irssi', 'c',
|
project('irssi', 'c',
|
||||||
version : '1.4-head-an',
|
version : '1.5-head-an',
|
||||||
meson_version : '>=0.53',
|
meson_version : '>=0.53',
|
||||||
default_options : ['warning_level=1'])
|
default_options : ['warning_level=1'])
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ if test -z "$VERSION_DATE"; then
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
VERSION_TIME=$(echo "$DATE" | cut -f 1 -d ' ' | tr -d v | tr .- ' ')
|
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
|
fi
|
||||||
|
|
||||||
echo "#define IRSSI_VERSION_DATE $VERSION_DATE"
|
echo "#define IRSSI_VERSION_DATE $VERSION_DATE"
|
||||||
|
Loading…
Reference in New Issue
Block a user