mirror of
https://github.com/weechat/weechat.git
synced 2026-06-23 03:16:37 +02:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 93f5371cf8 | |||
| 9db6255a84 | |||
| 03d36f13af | |||
| b1fe88d5d4 | |||
| dcccfa2255 | |||
| 72936fd3be | |||
| 3da91d702e |
+10
-1
@@ -15,8 +15,17 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
(file _ReleaseNotes.adoc_ in sources).
|
||||
|
||||
|
||||
[[v3.0.1]]
|
||||
== Version 3.0.1 (2021-01-31)
|
||||
|
||||
Bug fixes::
|
||||
|
||||
* exec: fix search of command by identifier
|
||||
* spell: fix refresh of bar item "spell_suggest" when the input becomes empty (issue #1586)
|
||||
* spell: fix crash with IRC color codes in command line (issue #1589)
|
||||
|
||||
[[v3.0]]
|
||||
== Version 3.0 (under dev)
|
||||
== Version 3.0 (2020-11-11)
|
||||
|
||||
New features::
|
||||
|
||||
|
||||
+6
-1
@@ -17,8 +17,13 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
|
||||
(file _ChangeLog.adoc_ in sources).
|
||||
|
||||
|
||||
[[v3.0.1]]
|
||||
== Version 3.0.1 (2021-01-31)
|
||||
|
||||
Bug fix and maintenance release.
|
||||
|
||||
[[v3.0]]
|
||||
== Version 3.0 (under dev)
|
||||
== Version 3.0 (2020-11-11)
|
||||
|
||||
[[v3.0_script_option_download_enabled]]
|
||||
=== New option to enable download of scripts
|
||||
|
||||
@@ -1,3 +1,38 @@
|
||||
weechat (2.9-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
* Refresh ASCII Doctor options patch
|
||||
* Switch debhelper compatibility to 13 and add debian/not-installed
|
||||
accordingly
|
||||
|
||||
-- Emmanuel Bouthenot <kolter@debian.org> Sat, 15 Aug 2020 20:31:09 +0000
|
||||
|
||||
weechat (2.8-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Fix FTBFS with ruby 2.7 (Closes: #954701, #954789)
|
||||
- Remove patch to fix compilation error while testing iconv support
|
||||
- Remove patch to fix a crash when loading script with PHP 7.4
|
||||
|
||||
-- Emmanuel Bouthenot <kolter@debian.org> Sat, 04 Apr 2020 09:01:45 +0000
|
||||
|
||||
weechat (2.7.1-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- fix CVE-2020-8955: possible remote DOS via malformed IRC messages
|
||||
(Closes: #951289)
|
||||
- rebuilt against python 3.8 (Closes: #953620)
|
||||
* Remove Guile 2.2 support patch (merged upstream)
|
||||
* Add a patch to fix compilation error while testing iconv support
|
||||
* Add a patch to fix a crash when loading script with PHP 7.4
|
||||
* Bump Standards-Version to 4.5.0
|
||||
* Replace gem2deb build dependency by ruby-dev to facilitate
|
||||
transitions to new versions of ruby (Closes: #951713)
|
||||
* Set Rules-Requires-Root to no
|
||||
* Switch debhelper compatibility to 12
|
||||
|
||||
-- Emmanuel Bouthenot <kolter@debian.org> Mon, 09 Mar 2020 14:59:31 +0000
|
||||
|
||||
weechat (2.6-2) unstable; urgency=medium
|
||||
|
||||
* Add a patch from upstream to support Guile 2.2 (Closes: #885235)
|
||||
|
||||
@@ -89,7 +89,7 @@ exec_search_by_id (const char *id)
|
||||
error = NULL;
|
||||
number = strtol (id, &error, 10);
|
||||
if (!error || error[0])
|
||||
return NULL;
|
||||
number = -1;
|
||||
|
||||
for (ptr_exec_cmd = exec_cmds; ptr_exec_cmd;
|
||||
ptr_exec_cmd = ptr_exec_cmd->next_cmd)
|
||||
|
||||
+11
-10
@@ -649,7 +649,7 @@ spell_skip_color_codes (char **string, char **result)
|
||||
{
|
||||
int color_code_size;
|
||||
|
||||
while (*string[0])
|
||||
while ((*string)[0])
|
||||
{
|
||||
color_code_size = weechat_string_color_code_size (*string);
|
||||
if (color_code_size > 0)
|
||||
@@ -658,9 +658,9 @@ spell_skip_color_codes (char **string, char **result)
|
||||
weechat_string_dyn_concat (result, *string, color_code_size);
|
||||
(*string) += color_code_size;
|
||||
}
|
||||
else if (*string[0] == '\x02' || *string[0] == '\x0F'
|
||||
|| *string[0] == '\x11' || *string[0] == '\x16'
|
||||
|| *string[0] == '\x1D' || *string[0] == '\x1F')
|
||||
else if ((*string)[0] == '\x02' || (*string)[0] == '\x0F'
|
||||
|| (*string)[0] == '\x11' || (*string)[0] == '\x16'
|
||||
|| (*string)[0] == '\x1D' || (*string)[0] == '\x1F')
|
||||
{
|
||||
/*
|
||||
* IRC attribute:
|
||||
@@ -674,28 +674,29 @@ spell_skip_color_codes (char **string, char **result)
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
}
|
||||
else if (*string[0] == '\x03')
|
||||
else if ((*string)[0] == '\x03')
|
||||
{
|
||||
/* IRC color code */
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
if (isdigit (*string[0]))
|
||||
if (isdigit ((unsigned char)((*string)[0])))
|
||||
{
|
||||
/* foreground */
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
if (isdigit (*string[0]))
|
||||
if (isdigit ((unsigned char)((*string)[0])))
|
||||
{
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
}
|
||||
}
|
||||
if ((*string[0] == ',') && (isdigit (*string[1])))
|
||||
if (((*string)[0] == ',')
|
||||
&& (isdigit ((unsigned char)((*string)[1]))))
|
||||
{
|
||||
/* background */
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
if (isdigit (*string[0]))
|
||||
if (isdigit ((unsigned char)((*string)[0])))
|
||||
{
|
||||
weechat_string_dyn_concat (result, *string, 1);
|
||||
(*string)++;
|
||||
@@ -801,7 +802,7 @@ spell_modifier_cb (const void *pointer, void *data,
|
||||
color_error = weechat_color (weechat_config_string (spell_config_color_misspelled));
|
||||
|
||||
length = strlen (string);
|
||||
result = weechat_string_dyn_alloc (length * 2);
|
||||
result = weechat_string_dyn_alloc ((length * 2) + 1);
|
||||
if (!result)
|
||||
return NULL;
|
||||
|
||||
|
||||
+3
-3
@@ -32,9 +32,9 @@
|
||||
# devel-patch the patch version of devel (e.g. 2 for version 1.4.2)
|
||||
#
|
||||
|
||||
WEECHAT_STABLE=2.9
|
||||
WEECHAT_DEVEL=3.0
|
||||
WEECHAT_DEVEL_FULL=3.0-rc1
|
||||
WEECHAT_STABLE=3.0.1
|
||||
WEECHAT_DEVEL=3.0.1
|
||||
WEECHAT_DEVEL_FULL=3.0.1
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo >&2 "Syntax: $0 stable|devel|devel-full|devel-major|devel-minor|devel-patch"
|
||||
|
||||
+5
-1
@@ -23,7 +23,7 @@
|
||||
#
|
||||
|
||||
%define name weechat
|
||||
%define version 2.9
|
||||
%define version 3.0.1
|
||||
%define release 1
|
||||
|
||||
Name: %{name}
|
||||
@@ -82,6 +82,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_prefix}/share/icons/hicolor/512x512/apps/weechat.png
|
||||
|
||||
%changelog
|
||||
* Sun Jan 31 2021 Sébastien Helleu <flashcode@flashtux.org> 3.0.1-1
|
||||
- Released version 3.0.1
|
||||
* Wed Nov 11 2020 Sébastien Helleu <flashcode@flashtux.org> 3.0-1
|
||||
- Released version 3.0
|
||||
* Sat Jul 18 2020 Sébastien Helleu <flashcode@flashtux.org> 2.9-1
|
||||
- Released version 2.9
|
||||
* Sun Mar 29 2020 Sébastien Helleu <flashcode@flashtux.org> 2.8-1
|
||||
|
||||
Reference in New Issue
Block a user