Accepting request 315050 from home:scarabeus_iv:branches:server:irc
- Version bump to 1.2: - add options to customize word chars (for detecting word boundaries) - add a welcome message on first WeeChat run - add options to customize quoted messages (in cursor mode) - add support of environment variables in evaluated expressions - add IRC SASL mechanism "ecdsa-nist256p-challenge" - add support of SHA-256 and SHA-512 algorithms in IRC server option "ssl_fingerprint" - add support of IRC capability "account-notify" - remove "freenode" server from default config - new script plugin for javascript - many bugs fixed. - Refreshed patch: * weechat-capath.patch OBS-URL: https://build.opensuse.org/request/show/315050 OBS-URL: https://build.opensuse.org/package/show/server:irc/weechat?expand=0&rev=64
This commit is contained in:
parent
c020fb7cb9
commit
1dcba33597
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:810bf0584fd5888246797fc7f1bbc4facb064a4d1c5d91627a9c8c01cbce97b5
|
|
||||||
size 2305377
|
|
3
weechat-1.2.tar.bz2
Normal file
3
weechat-1.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7c4501401f3794d551331b3cede354895962858acc50437567ffd40fa7af684d
|
||||||
|
size 2367277
|
@ -9,10 +9,10 @@ Subject: [PATCH] use system's default certificate store
|
|||||||
src/core/wee-network.c | 6 ++++++
|
src/core/wee-network.c | 6 ++++++
|
||||||
3 files changed, 12 insertions(+), 4 deletions(-)
|
3 files changed, 12 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
Index: weechat-1.0/src/core/wee-config.c
|
Index: weechat-1.2/src/core/wee-config.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- weechat-1.0.orig/src/core/wee-config.c
|
--- weechat-1.2.orig/src/core/wee-config.c
|
||||||
+++ weechat-1.0/src/core/wee-config.c
|
+++ weechat-1.2/src/core/wee-config.c
|
||||||
@@ -61,7 +61,6 @@
|
@@ -61,7 +61,6 @@
|
||||||
#include "../gui/gui-window.h"
|
#include "../gui/gui-window.h"
|
||||||
#include "../plugins/plugin.h"
|
#include "../plugins/plugin.h"
|
||||||
@ -21,7 +21,7 @@ Index: weechat-1.0/src/core/wee-config.c
|
|||||||
struct t_config_file *weechat_config_file = NULL;
|
struct t_config_file *weechat_config_file = NULL;
|
||||||
struct t_config_section *weechat_config_section_debug = NULL;
|
struct t_config_section *weechat_config_section_debug = NULL;
|
||||||
struct t_config_section *weechat_config_section_color = NULL;
|
struct t_config_section *weechat_config_section_color = NULL;
|
||||||
@@ -3306,7 +3305,7 @@ config_weechat_init_options ()
|
@@ -3520,7 +3519,7 @@ config_weechat_init_options ()
|
||||||
"gnutls_ca_file", "string",
|
"gnutls_ca_file", "string",
|
||||||
N_("file containing the certificate authorities (\"%h\" will be "
|
N_("file containing the certificate authorities (\"%h\" will be "
|
||||||
"replaced by WeeChat home, \"~/.weechat\" by default)"),
|
"replaced by WeeChat home, \"~/.weechat\" by default)"),
|
||||||
@ -30,11 +30,11 @@ Index: weechat-1.0/src/core/wee-config.c
|
|||||||
&config_change_network_gnutls_ca_file, NULL, NULL, NULL);
|
&config_change_network_gnutls_ca_file, NULL, NULL, NULL);
|
||||||
config_network_gnutls_handshake_timeout = config_file_new_option (
|
config_network_gnutls_handshake_timeout = config_file_new_option (
|
||||||
weechat_config_file, ptr_section,
|
weechat_config_file, ptr_section,
|
||||||
Index: weechat-1.0/src/core/wee-network.c
|
Index: weechat-1.2/src/core/wee-network.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- weechat-1.0.orig/src/core/wee-network.c
|
--- weechat-1.2.orig/src/core/wee-network.c
|
||||||
+++ weechat-1.0/src/core/wee-network.c
|
+++ weechat-1.2/src/core/wee-network.c
|
||||||
@@ -110,6 +110,12 @@ network_set_gnutls_ca_file ()
|
@@ -111,6 +111,12 @@ network_set_gnutls_ca_file ()
|
||||||
}
|
}
|
||||||
free (ca_path);
|
free (ca_path);
|
||||||
}
|
}
|
||||||
@ -44,6 +44,6 @@ Index: weechat-1.0/src/core/wee-network.c
|
|||||||
+ gnutls_certificate_set_x509_system_trust(gnutls_xcred);
|
+ gnutls_certificate_set_x509_system_trust(gnutls_xcred);
|
||||||
+ }
|
+ }
|
||||||
+#endif
|
+#endif
|
||||||
#endif
|
#endif /* HAVE_GNUTLS */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 4 12:47:38 UTC 2015 - tchvatal@suse.com
|
||||||
|
|
||||||
|
- Version bump to 1.2:
|
||||||
|
- add options to customize word chars (for detecting word boundaries)
|
||||||
|
- add a welcome message on first WeeChat run
|
||||||
|
- add options to customize quoted messages (in cursor mode)
|
||||||
|
- add support of environment variables in evaluated expressions
|
||||||
|
- add IRC SASL mechanism "ecdsa-nist256p-challenge"
|
||||||
|
- add support of SHA-256 and SHA-512 algorithms in IRC server option "ssl_fingerprint"
|
||||||
|
- add support of IRC capability "account-notify"
|
||||||
|
- remove "freenode" server from default config
|
||||||
|
- new script plugin for javascript
|
||||||
|
- many bugs fixed.
|
||||||
|
- Refreshed patch:
|
||||||
|
* weechat-capath.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 16 16:44:46 UTC 2015 - tchvatal@suse.com
|
Mon Feb 16 16:44:46 UTC 2015 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: weechat
|
Name: weechat
|
||||||
Version: 1.1.1
|
Version: 1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Portable, Fast, Light and Extensible Chat Client
|
Summary: Portable, Fast, Light and Extensible Chat Client
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
Loading…
Reference in New Issue
Block a user