1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Sébastien Helleu 78e5b399b2 ruby: add detection of Ruby 2.2
(cherry picked from commit 515e8b7b1a)
2015-06-10 23:20:46 +02:00
793 changed files with 7499 additions and 16572 deletions
+4 -7
View File
@@ -1,9 +1,6 @@
# files/directories excluded from tarballs # files/directories excluded from tarballs
.git* export-ignore .git* export-ignore
debian-devel export-ignore debian export-ignore
debian-stable export-ignore weechat.spec export-ignore
weechat.spec export-ignore .mailmap export-ignore
.mailmap export-ignore
tests/ubuntu/ export-ignore
tools/build-debian.sh export-ignore
+1 -5
View File
@@ -28,11 +28,7 @@ config.rpath
config.status config.status
config.sub config.sub
configure configure
debian debian/*.log
!tools/debian
debian-devel/changelog
debian-devel/*.log
debian-stable/*.log
depcomp depcomp
insert-header.sin insert-header.sin
install-sh install-sh
+4 -8
View File
@@ -4,9 +4,6 @@ compiler:
- gcc - gcc
- clang - clang
sudo: required
dist: trusty
env: env:
- BUILDTOOL="cmake" BUILDARGS="" - BUILDTOOL="cmake" BUILDARGS=""
- BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON3=ON" - BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON3=ON"
@@ -16,17 +13,16 @@ env:
- BUILDTOOL="autotools" BUILDARGS="--disable-gnutls" - BUILDTOOL="autotools" BUILDARGS="--disable-gnutls"
before_script: before_script:
# Workaround travis-ci/travis-ci#5326
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
- echo 'APT::Install-Recommends "false";' | sudo tee -a /etc/apt/apt.conf - echo 'APT::Install-Recommends "false";' | sudo tee -a /etc/apt/apt.conf
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get -y install devscripts equivs python-pip libenchant-dev autopoint asciidoc source-highlight xsltproc docbook-xsl docbook-xml cmake pkg-config libncursesw5-dev gem2deb libperl-dev python-dev python3-dev libaspell-dev liblua5.1-0-dev tcl8.5-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt11-dev libgnutls-dev zlib1g-dev curl libcpputest-dev - sudo apt-get -y install devscripts equivs python-pip libenchant-dev autopoint asciidoc source-highlight xsltproc docbook-xsl docbook-xml cmake pkg-config libncursesw5-dev gem2deb libperl-dev python-dev python3-dev libaspell-dev liblua5.1-0-dev tcl8.5-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt11-dev libgnutls-dev zlib1g-dev curl
- curl -OL https://weechat.org/files/tests/ubuntu/precise/amd64/libcpputest-dev_3.4-3_amd64.deb
- sudo dpkg -i libcpputest-dev_3.4-3_amd64.deb
- sudo pip install msgcheck pylint - sudo pip install msgcheck pylint
script: script:
- ./tools/build-test.sh - ./scripts/build.sh
- msgcheck po/*.po - msgcheck po/*.po
- pylint --version
- pylint doc/docgen.py - pylint doc/docgen.py
after_success: after_success:
-2
View File
@@ -60,12 +60,10 @@ Alphabetically:
* Matt Robinson * Matt Robinson
* Max Anton Teufel * Max Anton Teufel
* Murilo Opsfelder Araujo * Murilo Opsfelder Araujo
* Nick (SolitaryCipher)
* Nicolas Cavigneaux * Nicolas Cavigneaux
* Nils Görs (nils_2) * Nils Görs (nils_2)
* nyuszika7h * nyuszika7h
* Odin * Odin
* Ondřej Súkup
* Patrick Steinhardt * Patrick Steinhardt
* Paul Komkoff * Paul Komkoff
* Pavel Shevchuk (Stalwart) * Pavel Shevchuk (Stalwart)
+9 -10
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2007-2008 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2007-2008 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2008-2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2008-2009 Emmanuel Bouthenot <kolter@openics.org>
# #
@@ -29,14 +29,14 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
set(CMAKE_SKIP_RPATH ON) set(CMAKE_SKIP_RPATH ON)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration")
set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration")
if(PREFIX)
set(CMAKE_INSTALL_PREFIX ${PREFIX} CACHE PATH "Install path prefix" FORCE)
endif()
# version # version
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/version.sh devel-major OUTPUT_VARIABLE VERSION_MAJOR) set(VERSION_MAJOR "1")
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/version.sh devel-minor OUTPUT_VARIABLE VERSION_MINOR) set(VERSION_MINOR "2")
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/version.sh devel-patch OUTPUT_VARIABLE VERSION_PATCH) set(VERSION_PATCH "")
string(REGEX REPLACE "\n" "" VERSION_MAJOR "${VERSION_MAJOR}")
string(REGEX REPLACE "\n" "" VERSION_MINOR "${VERSION_MINOR}")
string(REGEX REPLACE "\n" "" VERSION_PATCH "${VERSION_PATCH}")
if(VERSION_PATCH STREQUAL "") if(VERSION_PATCH STREQUAL "")
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
else() else()
@@ -215,8 +215,7 @@ endif()
add_subdirectory(src) add_subdirectory(src)
add_subdirectory(doc) add_subdirectory(doc)
find_package(CppUTest) if(ENABLE_TESTS)
if(ENABLE_TESTS AND CPPUTEST_FOUND)
enable_testing() enable_testing()
add_subdirectory(tests) add_subdirectory(tests)
endif() endif()
@@ -225,7 +224,7 @@ configure_file(config.h.cmake config.h @ONLY)
# set the git version in "config-git.h" # set the git version in "config-git.h"
add_custom_target(version_git ALL add_custom_target(version_git ALL
COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/tools/git-version.sh" "${CMAKE_CURRENT_SOURCE_DIR}" "${VERSION}" "config-git.h" COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/scripts/git-version.sh" "${CMAKE_CURRENT_SOURCE_DIR}" "${VERSION}" "config-git.h"
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
configure_file( configure_file(
+118 -400
View File
File diff suppressed because it is too large Load Diff
-2
View File
@@ -9,8 +9,6 @@
First, some basic things: First, some basic things:
* Use only English to communicate with developers. * Use only English to communicate with developers.
* Search in issues if the same problem or feature request has already been
reported (a duplicate is waste of time for you and the developers!).
* If you can, please check if the problem has been fixed in development version * If you can, please check if the problem has been fixed in development version
(if you are using a stable release or old version). (if you are using a stable release or old version).
* Report only one bug or feature request per issue. * Report only one bug or feature request per issue.
+4 -5
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2006-2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2006-2009 Emmanuel Bouthenot <kolter@openics.org>
# #
@@ -23,7 +23,7 @@
# (if needed, and only for a devel/rc version). # (if needed, and only for a devel/rc version).
BUILT_SOURCES = build-config-git.h BUILT_SOURCES = build-config-git.h
build-config-git.h: build-config-git.h:
-$(abs_top_srcdir)/tools/git-version.sh "$(abs_top_srcdir)" "$(VERSION)" config-git.h -$(abs_top_srcdir)/scripts/git-version.sh "$(abs_top_srcdir)" "$(VERSION)" config-git.h
if TESTS if TESTS
tests_dir = tests tests_dir = tests
@@ -64,9 +64,8 @@ EXTRA_DIST = AUTHORS.asciidoc \
cmake/cmake_uninstall.cmake.in \ cmake/cmake_uninstall.cmake.in \
po/CMakeLists.txt \ po/CMakeLists.txt \
po/srcfiles.cmake \ po/srcfiles.cmake \
tools/build-test.sh \ scripts/build.sh \
tools/git-version.sh \ scripts/git-version.sh \
version.sh \
weechat.png \ weechat.png \
weechat.pc.in \ weechat.pc.in \
weechat.cygport.in weechat.cygport.in
+7 -12
View File
@@ -4,19 +4,14 @@
:lang: en :lang: en
image:https://travis-ci.org/weechat/weechat.svg?branch=master["Build Status", link="https://travis-ci.org/weechat/weechat"]
image:https://img.shields.io/badge/diaspora*-follow-blue.svg["Diaspora*", link="https://diasp.eu/u/weechat"]
image:https://img.shields.io/badge/google%2B-follow-blue.svg["Google+", link="https://plus.google.com/+WeeChat"]
image:https://img.shields.io/badge/devel%20blog-follow-blue.svg["Devel blog", link="http://dev.weechat.org/"]
image:https://img.shields.io/badge/slant-recommend-28acad.svg["Slant", link="http://www.slant.co/topics/1323/~irc-clients-for-linux"]
image:https://img.shields.io/badge/paypal-donate%20%E2%9D%A4-yellow.svg["Paypal", link="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4LSMSNLUAJWNS"]
WeeChat (Wee Enhanced Environment for Chat) is a free chat client, fast and WeeChat (Wee Enhanced Environment for Chat) is a free chat client, fast and
light, designed for many operating systems. light, designed for many operating systems.
It is highly customizable and extensible with scripts. It is highly customizable and extensible with scripts.
Homepage: https://weechat.org/ Homepage: https://weechat.org/
image:https://travis-ci.org/weechat/weechat.svg?branch=master["Build Status", link="https://travis-ci.org/weechat/weechat"]
== Features == Features
* Modular chat client with a lightweight core and optional plugins. * Modular chat client with a lightweight core and optional plugins.
@@ -62,14 +57,14 @@ https://weechat.org/files/doc/devel/weechat_user.en.html#dependencies[user's gui
WeeChat can be built with http://cmake.org/[CMake] (recommended) or autotools. WeeChat can be built with http://cmake.org/[CMake] (recommended) or autotools.
[NOTE] [NOTE]
Only CMake is officially supported to build WeeChat. You should only use Only CMake is officially supported to build WeeChat. You should use autotools
autotools if you are not able to use CMake. + only if you are not able to use CMake. +
Building with autotools requires more dependencies and is slower than with CMake. Build with autotools requires more dependencies and is slower than with CMake.
---- ----
$ mkdir build $ mkdir build
$ cd build $ cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory $ cmake .. -DPREFIX=/path/to/directory
$ make $ make
$ make install (as root for installation in system directories) $ make install (as root for installation in system directories)
---- ----
@@ -79,7 +74,7 @@ https://weechat.org/files/doc/devel/weechat_user.en.html#compile_with_autotools[
== Copyright == Copyright
Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
This file is part of WeeChat, the extensible chat client. This file is part of WeeChat, the extensible chat client.
-194
View File
@@ -17,78 +17,6 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
(file 'ChangeLog.asciidoc' in sources). (file 'ChangeLog.asciidoc' in sources).
[[1.4]]
== Version 1.4 (2016-01-10)
[[1.4_irc_alternate_nicks]]
=== IRC alternate nicks
The option 'irc.network.alternate_nick' has been moved into servers
('irc.server_default.nicks_alternate' and 'irc.server.xxx.nicks_alternate').
If you disabled this option, you must switch it off again, globally or by
server.
Globally (default value for all servers):
----
/set irc.server_default.nicks_alternate off
----
For a specific server:
----
/set irc.server.freenode.nicks_alternate off
----
[[1.3]]
== Version 1.3 (2015-08-16)
[[1.3_irc_channels_encoding]]
=== IRC channels encoding
If you are using exotic charsets in your channel names (anything different from
UTF-8, like ISO charset), you should turn on a new option:
----
/set irc.network.channel_encode on
----
This will force WeeChat to decode/encode the channel name
(like WeeChat 1.2 or older did).
See these issues for more information: issue #482, issue #218.
[NOTE]
It is *highly recommended* to use only UTF-8 in WeeChat (wherever you can),
because everything is stored as UTF-8 internally.
[[1.3_alias_command]]
=== Alias command
The command `/alias` has been updated to list, add and remove aliases.
Therefore the command `/unalias` has been removed.
To add an alias, the argument `add` must be used in command `/alias` before the
name, for example:
----
/alias add split /window splith
----
And the alias is removed with this command:
----
/alias del split
----
[[1.3_script_path]]
=== Script path
The option 'script.scripts.dir' has been renamed to 'script.scripts.path'
(and the content is now evaluated, see `/help eval`).
[[1.2]]
== Version 1.2 (2015-05-10) == Version 1.2 (2015-05-10)
The word chars are now customizable with two options: The word chars are now customizable with two options:
@@ -106,15 +34,12 @@ command:
/set weechat.look.word_chars_input "!\u00A0,!\x20,*" /set weechat.look.word_chars_input "!\u00A0,!\x20,*"
---- ----
[[1.1.1]]
== Version 1.1.1 (2015-01-25) == Version 1.1.1 (2015-01-25)
Bug fix and maintenance release. Bug fix and maintenance release.
[[1.1]]
== Version 1.1 (2015-01-11) == Version 1.1 (2015-01-11)
[[1.1_triggers_regex_format]]
=== New format for regex replacement in triggers === New format for regex replacement in triggers
A new format is used in regex replacement to use regex groups, this format A new format is used in regex replacement to use regex groups, this format
@@ -143,7 +68,6 @@ You can restore them with the following command:
If you added triggers with the old regex replacement format, you must update If you added triggers with the old regex replacement format, you must update
them manually. them manually.
[[1.1_trigger_beep]]
=== Default "beep" trigger === Default "beep" trigger
The command of "beep" trigger is now executed only if the message is displayed The command of "beep" trigger is now executed only if the message is displayed
@@ -155,7 +79,6 @@ You can restore the default "beep" trigger with the following command:
/trigger restore beep /trigger restore beep
---- ----
[[1.1_commands_return_code]]
=== Return code of commands === Return code of commands
The API function 'weechat_command' now sends the value returned return by The API function 'weechat_command' now sends the value returned return by
@@ -168,7 +91,6 @@ explicit error message before returning 'WEECHAT_RC_ERROR'.
For C plugins, two macros have been added in weechat-plugin.h: For C plugins, two macros have been added in weechat-plugin.h:
'WEECHAT_COMMAND_MIN_ARGS' and 'WEECHAT_COMMAND_ERROR'. 'WEECHAT_COMMAND_MIN_ARGS' and 'WEECHAT_COMMAND_ERROR'.
[[1.1_inline_commands_completion]]
=== Completion of inline commands === Completion of inline commands
WeeChat now completes by default inline commands (not only at beginning of WeeChat now completes by default inline commands (not only at beginning of
@@ -184,7 +106,6 @@ To restore the old behavior (no completion of inline commands):
/set weechat.completion.command_inline off /set weechat.completion.command_inline off
---- ----
[[1.1_relay_irc_backlog_tags]]
=== Relay option relay.irc.backlog_tags === Relay option relay.irc.backlog_tags
The option 'relay.irc.backlog_tags' is now a list separated by commas The option 'relay.irc.backlog_tags' is now a list separated by commas
@@ -193,7 +114,6 @@ The option 'relay.irc.backlog_tags' is now a list separated by commas
If you are using a list of tags in this option, you must adjust the value If you are using a list of tags in this option, you must adjust the value
manually. manually.
[[1.1_relay_ipv6_ipv4]]
=== IPv4-mapped IPv6 client address in relay === IPv4-mapped IPv6 client address in relay
The string "::ffff:" has been removed from IPv4-mapped IPv6 client address The string "::ffff:" has been removed from IPv4-mapped IPv6 client address
@@ -202,7 +122,6 @@ in relay plugin.
If you are using "::ffff:" in option 'relay.network.allowed_ips', you can If you are using "::ffff:" in option 'relay.network.allowed_ips', you can
remove it. remove it.
[[1.1_irc_temporary_servers]]
=== Temporary servers disabled by default with /connect === Temporary servers disabled by default with /connect
Creating a temporary server with command `/connect <address>` or Creating a temporary server with command `/connect <address>` or
@@ -215,7 +134,6 @@ the old behavior in command `/connect`:
/set irc.look.temporary_servers on /set irc.look.temporary_servers on
---- ----
[[1.1_timeval_microseconds]]
=== Microseconds in API timeval functions === Microseconds in API timeval functions
The API functions using timeval are now using or returning microseconds, The API functions using timeval are now using or returning microseconds,
@@ -225,15 +143,12 @@ instead of milliseconds:
* function 'util_timeval_add': the argument 'interval' is now expressed in * function 'util_timeval_add': the argument 'interval' is now expressed in
microseconds. microseconds.
[[1.0.1]]
== Version 1.0.1 (2014-09-28) == Version 1.0.1 (2014-09-28)
Bug fix and maintenance release. Bug fix and maintenance release.
[[1.0]]
== Version 1.0 (2014-08-15) == Version 1.0 (2014-08-15)
[[1.0_irc_channel_type]]
=== Channel type not added by default on /join === Channel type not added by default on /join
The channel type is not any more automatically added to a channel name on join The channel type is not any more automatically added to a channel name on join
@@ -246,7 +161,6 @@ the new option:
/set irc.look.join_auto_add_chantype on /set irc.look.join_auto_add_chantype on
---- ----
[[1.0_irc_channel_modes_arguments]]
=== Hide IRC channel modes arguments === Hide IRC channel modes arguments
The option 'irc.look.item_channel_modes_hide_key' has been renamed to The option 'irc.look.item_channel_modes_hide_key' has been renamed to
@@ -260,7 +174,6 @@ behavior (never hide arguments, even with a channel key), you can do:
/set irc.look.item_channel_modes_hide_args "" /set irc.look.item_channel_modes_hide_args ""
---- ----
[[1.0_jump_first_last_buffer]]
=== Jump to first/last buffer === Jump to first/last buffer
The command `/input jump_last_buffer` has been replaced by `/buffer +`. The command `/input jump_last_buffer` has been replaced by `/buffer +`.
@@ -281,7 +194,6 @@ You can add it with following command:
/key missing /key missing
---- ----
[[1.0_hotlist_conditions]]
=== Hotlist conditions === Hotlist conditions
A new option 'weechat.look.hotlist_add_conditions' has been added. This option A new option 'weechat.look.hotlist_add_conditions' has been added. This option
@@ -300,7 +212,6 @@ default conditions with the following command:
/set weechat.look.hotlist_add_conditions "${buffer.num_displayed} == 0" /set weechat.look.hotlist_add_conditions "${buffer.num_displayed} == 0"
---- ----
[[1.0_trigger_plugin]]
=== Rmodifier replaced by Trigger plugin === Rmodifier replaced by Trigger plugin
The trigger plugin replaces the rmodifier plugin, which has been removed The trigger plugin replaces the rmodifier plugin, which has been removed
@@ -317,7 +228,6 @@ If on startup you have an error about API mismatch in plugin 'rmodifier.so',
you can manually remove the file (the command `make install` does not remove you can manually remove the file (the command `make install` does not remove
obsolete plugins). obsolete plugins).
[[1.0_bare_display]]
=== Bare display === Bare display
A bare display mode has been added (for easy text selection and click on URLs), A bare display mode has been added (for easy text selection and click on URLs),
@@ -326,10 +236,8 @@ the new default key is key[alt-l].
Use command `/key missing` to add the key or `/key listdiff` to see differences Use command `/key missing` to add the key or `/key listdiff` to see differences
between your current keys and WeeChat default keys. between your current keys and WeeChat default keys.
[[0.4.3]]
== Version 0.4.3 (2014-02-09) == Version 0.4.3 (2014-02-09)
[[0.4.3_colors_messages]]
=== Colors in messages === Colors in messages
The color code for "reverse video" in IRC message has been fixed: now WeeChat The color code for "reverse video" in IRC message has been fixed: now WeeChat
@@ -353,7 +261,6 @@ You can remove the old keys and add the new ones with these commands:
/key missing /key missing
---- ----
[[0.4.3_terminal_title]]
=== Terminal title === Terminal title
The boolean option 'weechat.look.set_title' has been renamed to The boolean option 'weechat.look.set_title' has been renamed to
@@ -365,7 +272,6 @@ The content is evaluated and the default value is `WeeChat ${info:version}`.
Only static content should be used in this option, because the title is Only static content should be used in this option, because the title is
refreshed only when the option is changed. refreshed only when the option is changed.
[[0.4.3_bar_item_buffer_last_number]]
=== New bar item buffer_last_number === New bar item buffer_last_number
The bar item 'buffer_count' now displays the number of opened buffers (each The bar item 'buffer_count' now displays the number of opened buffers (each
@@ -377,7 +283,6 @@ currently used.
If you want to display last number in the status bar, replace 'buffer_count' If you want to display last number in the status bar, replace 'buffer_count'
by 'buffer_last_number' in your option 'weechat.bar.status.items'. by 'buffer_last_number' in your option 'weechat.bar.status.items'.
[[0.4.3_bar_item_buffer_zoom]]
=== New bar item buffer_zoom === New bar item buffer_zoom
A new bar item has been added: 'buffer_zoom'. A new bar item has been added: 'buffer_zoom'.
@@ -387,7 +292,6 @@ The default value for status bar items becomes:
/set weechat.bar.status.items "[time],[buffer_count],[buffer_plugin],buffer_number+:+buffer_name+(buffer_modes)+{buffer_nicklist_count}+buffer_zoom+buffer_filter,[lag],[hotlist],completion,scroll" /set weechat.bar.status.items "[time],[buffer_count],[buffer_plugin],buffer_number+:+buffer_name+(buffer_modes)+{buffer_nicklist_count}+buffer_zoom+buffer_filter,[lag],[hotlist],completion,scroll"
---- ----
[[0.4.3_irc_messages_channel_join]]
=== IRC messages on channel join === IRC messages on channel join
The names are not displayed any more by default on channel join (they are in The names are not displayed any more by default on channel join (they are in
@@ -403,7 +307,6 @@ If you want to display all messages on join (including names), you can do:
/set irc.look.display_join_message "329,332,333,353,366" /set irc.look.display_join_message "329,332,333,353,366"
---- ----
[[0.4.3_irc_maximum_lag]]
=== Maximum lag in IRC === Maximum lag in IRC
Option 'irc.network.lag_max' has been added. Option 'irc.network.lag_max' has been added.
@@ -414,10 +317,8 @@ never occur.
You should check the value of both options and fix them if needed. You should check the value of both options and fix them if needed.
[[0.4.2]]
== Version 0.4.2 (2013-10-06) == Version 0.4.2 (2013-10-06)
[[0.4.2_day_change_message]]
=== Day change message === Day change message
The day change message is now dynamically displayed, and therefore is not stored The day change message is now dynamically displayed, and therefore is not stored
@@ -433,7 +334,6 @@ After `/upgrade` from an old version, you will see two messages for each day
change. This is a normal behavior and will not happen again with the next day change. This is a normal behavior and will not happen again with the next day
changes. changes.
[[0.4.2_buffer_regex_search]]
=== Regex search in buffer === Regex search in buffer
Search with regular expression has been added, and therefore some keys in search Search with regular expression has been added, and therefore some keys in search
@@ -464,13 +364,11 @@ To view keys in search context:
For more information, see the chapter about keys in the 'WeeChat User's guide'. For more information, see the chapter about keys in the 'WeeChat User's guide'.
[[0.4.2_rmodifier]]
=== New rmodifier === New rmodifier
A new rmodifier "secure" has been added to hide passphrase and passwords A new rmodifier "secure" has been added to hide passphrase and passwords
displayed by command "/secure". Use command `/rmodifier missing` to add it. displayed by command "/secure". Use command `/rmodifier missing` to add it.
[[0.4.2_color_codes_options]]
=== Color codes in options === Color codes in options
The format for color codes in some options has changed. The options are The format for color codes in some options has changed. The options are
@@ -496,7 +394,6 @@ Example:
/set weechat.look.buffer_time_format "${color:251}%H${color:243}%M${color:238}%S" /set weechat.look.buffer_time_format "${color:251}%H${color:243}%M${color:238}%S"
---- ----
[[0.4.2_binary_man_page]]
=== Binary and man page === Binary and man page
WeeChat binary and man page have been renamed from `weechat-curses` to WeeChat binary and man page have been renamed from `weechat-curses` to
@@ -514,7 +411,6 @@ For packagers: you should create the link `weechat-curses` -> `weechat` if it's
not automatically created in the package (both cmake and configure are creating not automatically created in the package (both cmake and configure are creating
this link on make install). this link on make install).
[[0.4.2_man_page_documentation]]
=== Man page / documentation === Man page / documentation
Documentation is not built by default any more, you have to use option Documentation is not built by default any more, you have to use option
@@ -524,15 +420,12 @@ The man page is now built with asciidoc and translated in several
languages. A new cmake option `ENABLE_MAN` has been added to compile man page languages. A new cmake option `ENABLE_MAN` has been added to compile man page
(`OFF` by default). (`OFF` by default).
[[0.4.2_aspell_colors]]
=== Aspell colors === Aspell colors
Option 'aspell.look.color' has been renamed to 'aspell.color.misspelled'. Option 'aspell.look.color' has been renamed to 'aspell.color.misspelled'.
[[0.4.1]]
== Version 0.4.1 (2013-05-20) == Version 0.4.1 (2013-05-20)
[[0.4.1_relay_nicklist_diff]]
=== Nicklist diff in relay === Nicklist diff in relay
A new message with identifier "_nicklist_diff" has been added in relay (WeeChat A new message with identifier "_nicklist_diff" has been added in relay (WeeChat
@@ -543,7 +436,6 @@ Clients using nicklist must implement it.
For more info about content of message, see document 'WeeChat Relay Protocol'. For more info about content of message, see document 'WeeChat Relay Protocol'.
[[0.4.1_dynamic_nick_prefix_suffix]]
=== Dynamic nick prefix/suffix === Dynamic nick prefix/suffix
The nick prefix/suffix (for example: "<" and ">") are now dynamic and used on The nick prefix/suffix (for example: "<" and ">") are now dynamic and used on
@@ -605,14 +497,12 @@ New options in logger plugin (logger.conf):
* 'logger.file.nick_suffix': suffix for nicks in log files (default: empty * 'logger.file.nick_suffix': suffix for nicks in log files (default: empty
string) string)
[[0.4.1_irc_reconnection_lag]]
=== IRC reconnection on important lag === IRC reconnection on important lag
Option 'irc.network.lag_disconnect' has been renamed to Option 'irc.network.lag_disconnect' has been renamed to
'irc.network.lag_reconnect' and value is now a number of seconds (instead of 'irc.network.lag_reconnect' and value is now a number of seconds (instead of
minutes). minutes).
[[0.4.1_irc_passwords_hidden]]
=== IRC passwords hidden === IRC passwords hidden
IRC plugin is now using modifiers "irc_command_auth" and "irc_message_auth" to IRC plugin is now using modifiers "irc_command_auth" and "irc_message_auth" to
@@ -640,7 +530,6 @@ If you added/changed some rmodifiers, do it manually with these commands:
/rmodifier add message_auth irc_message_auth 1,3* ^(.*(id|identify|register|ghost \S+|release \S+) +)(.*) /rmodifier add message_auth irc_message_auth 1,3* ^(.*(id|identify|register|ghost \S+|release \S+) +)(.*)
---- ----
[[0.4.1_lua_constants]]
=== Lua constants === Lua constants
For consistency with other supported languages, the API constants in Lua have For consistency with other supported languages, the API constants in Lua have
@@ -663,7 +552,6 @@ The new syntax is:
return weechat.WEECHAT_RC_OK return weechat.WEECHAT_RC_OK
---- ----
[[0.4.1_guile_callbacks]]
=== Guile callbacks === Guile callbacks
The way to give arguments for guile callbacks has been fixed: now arguments are The way to give arguments for guile callbacks has been fixed: now arguments are
@@ -672,10 +560,8 @@ sent individually (instead of a list with all arguments inside).
Therefore, existing guile scripts must be modified accordingly. Moreover, Therefore, existing guile scripts must be modified accordingly. Moreover,
WeeChat now requires Guile ≥ 2.0 to compile. WeeChat now requires Guile ≥ 2.0 to compile.
[[0.4.0]]
== Version 0.4.0 (2013-01-20) == Version 0.4.0 (2013-01-20)
[[0.4.0_bars_conditions]]
=== Conditions in bars === Conditions in bars
Conditions in bars have changed, and now an expression is evaluated. Conditions in bars have changed, and now an expression is evaluated.
@@ -684,7 +570,6 @@ If you have a value with many conditions in a bar, like: `nicklist,active`, you
must now use an expression like: `${nicklist} && ${active}` (see the chapter must now use an expression like: `${nicklist} && ${active}` (see the chapter
about bars in the 'WeeChat User's guide'). about bars in the 'WeeChat User's guide').
[[0.4.0_ipv6_default]]
=== IPv6 by default === IPv6 by default
==== IRC ==== IRC
@@ -706,21 +591,17 @@ disable IPv6 in relay if you don't plan to use it at all:
/set relay.network.ipv6 off /set relay.network.ipv6 off
---- ----
[[0.3.9.2]]
== Version 0.3.9.2 (2012-11-18) == Version 0.3.9.2 (2012-11-18)
This version fixes a security vulnerability when a plugin/script gives untrusted This version fixes a security vulnerability when a plugin/script gives untrusted
command to API function "hook_process". command to API function "hook_process".
[[0.3.9.1]]
== Version 0.3.9.1 (2012-11-09) == Version 0.3.9.1 (2012-11-09)
This version fixes crash when decoding IRC colors in strings. This version fixes crash when decoding IRC colors in strings.
[[0.3.9]]
== Version 0.3.9 (2012-09-29) == Version 0.3.9 (2012-09-29)
[[0.3.9_options_moved]]
=== Options moved === Options moved
Options moved from core (weechat.conf) to irc plugin (irc.conf): Options moved from core (weechat.conf) to irc plugin (irc.conf):
@@ -729,7 +610,6 @@ Options moved from core (weechat.conf) to irc plugin (irc.conf):
with values: none/prefix/action/both) with values: none/prefix/action/both)
* 'weechat.look.nickmode_empty' moved to 'irc.look.nick_mode_empty' * 'weechat.look.nickmode_empty' moved to 'irc.look.nick_mode_empty'
[[0.3.9_bar_item_buffer_modes]]
=== New bar item buffer_modes === New bar item buffer_modes
A new bar item has been added: 'buffer_modes' and irc option A new bar item has been added: 'buffer_modes' and irc option
@@ -742,7 +622,6 @@ for status bar items becomes:
/set weechat.bar.status.items "[time],[buffer_count],[buffer_plugin],buffer_number+:+buffer_name+(buffer_modes)+{buffer_nicklist_count}+buffer_filter,[lag],[hotlist],completion,scroll" /set weechat.bar.status.items "[time],[buffer_count],[buffer_plugin],buffer_number+:+buffer_name+(buffer_modes)+{buffer_nicklist_count}+buffer_filter,[lag],[hotlist],completion,scroll"
---- ----
[[0.3.9_command_aspell]]
=== Command /aspell === Command /aspell
New options in command `/aspell`: New options in command `/aspell`:
@@ -757,7 +636,6 @@ Options renamed in command `/aspell`:
* `disable` renamed to `deldict` (delete dictionary used on current buffer) * `disable` renamed to `deldict` (delete dictionary used on current buffer)
* `dictlist` renamed to `listdict` (show installed dictionaries) * `dictlist` renamed to `listdict` (show installed dictionaries)
[[0.3.9_horizontal_separator]]
=== Horizontal separator === Horizontal separator
An horizontal separator has been added between split windows, and two options An horizontal separator has been added between split windows, and two options
@@ -766,16 +644,13 @@ have been added to toggle separators (both are enabled by default):
* 'weechat.look.window_separator_horizontal' * 'weechat.look.window_separator_horizontal'
* 'weechat.look.window_separator_vertical' * 'weechat.look.window_separator_vertical'
[[0.3.9_new_keys]]
=== New keys === New keys
New keys were added, use command `/key missing` to add them or `/key listdiff` New keys were added, use command `/key missing` to add them or `/key listdiff`
to see differences between your current keys and WeeChat default keys. to see differences between your current keys and WeeChat default keys.
[[0.3.8]]
== Version 0.3.8 (2012-06-03) == Version 0.3.8 (2012-06-03)
[[0.3.8_options]]
=== Options === Options
Options 'weechat.look.prefix_align_more' and Options 'weechat.look.prefix_align_more' and
@@ -786,7 +661,6 @@ string:
char char
* if the value was off, you have to set " " (string with one space) * if the value was off, you have to set " " (string with one space)
[[0.3.8_paste_detection]]
=== Paste detection === Paste detection
Option 'weechat.look.paste_max_lines' can now be used with value 0 to detect Option 'weechat.look.paste_max_lines' can now be used with value 0 to detect
@@ -798,7 +672,6 @@ disable paste detection: if your value was 0, you should set it to -1
/set weechat.look.paste_max_lines -1 /set weechat.look.paste_max_lines -1
---- ----
[[0.3.8_rmodifier]]
=== Rmodifier === Rmodifier
Rmodifier "nickserv" has a new default regex which includes option "release" for Rmodifier "nickserv" has a new default regex which includes option "release" for
@@ -817,10 +690,8 @@ If you added/changed some rmodifiers, do it manually with these commands:
/rmodifier add nickserv history_add,input_text_display 1,4* ^(/(msg|quote) +nickserv +(id|identify|ghost \S+|release \S+) +)(.*) /rmodifier add nickserv history_add,input_text_display 1,4* ^(/(msg|quote) +nickserv +(id|identify|ghost \S+|release \S+) +)(.*)
---- ----
[[0.3.7]]
== Version 0.3.7 (2012-02-26) == Version 0.3.7 (2012-02-26)
[[0.3.7_options]]
=== Options === Options
Option `scroll_unread` has been moved from command `/input` to `/window`, Option `scroll_unread` has been moved from command `/input` to `/window`,
@@ -838,7 +709,6 @@ Option 'weechat.plugin.extension' now supports list of extensions, and new
default value is ".so,.dll" (with this value, weechat.conf is compatible with default value is ".so,.dll" (with this value, weechat.conf is compatible with
Cygwin). Cygwin).
[[0.3.7_extended_regex]]
=== Extended regex === Extended regex
Extended regex is used in filters and irc ignore, so some chars that needed Extended regex is used in filters and irc ignore, so some chars that needed
@@ -849,26 +719,21 @@ Option 'weechat.look.highlight_regex' becomes case insensitive by default, to
make it case sensitive, use "(?-i)" at beginning of string, for example: make it case sensitive, use "(?-i)" at beginning of string, for example:
"(?-i)FlashCode|flashy". "(?-i)FlashCode|flashy".
[[0.3.6]]
== Version 0.3.6 (2011-10-22) == Version 0.3.6 (2011-10-22)
[[0.3.6_options]]
=== Options === Options
Option 'weechat.look.hline_char' has been renamed to Option 'weechat.look.hline_char' has been renamed to
'weechat.look.separator_horizontal'. 'weechat.look.separator_horizontal'.
[[0.3.6_colors_bold]]
=== Bold in colors === Bold in colors
Bold is not used any more for basic colors (used only if terminal has less than Bold is not used any more for basic colors (used only if terminal has less than
16 colors), a new option has been added to force bold if needed: 16 colors), a new option has been added to force bold if needed:
'weechat.look.color_basic_force_bold'. 'weechat.look.color_basic_force_bold'.
[[0.3.5]]
== Version 0.3.5 (2011-05-15) == Version 0.3.5 (2011-05-15)
[[0.3.5_colors]]
=== Colors === Colors
If you have some colors defined in section "palette" with version 0.3.4, you If you have some colors defined in section "palette" with version 0.3.4, you
@@ -880,10 +745,8 @@ Colors for nick prefixes (char for op, voice, ..) are defined in a single option
'irc.color.nick_prefix_op', 'irc.color.nick_prefix_halfop', 'irc.color.nick_prefix_op', 'irc.color.nick_prefix_halfop',
'irc.color.nick_prefix_voice', 'irc.color.nick_prefix_user'. 'irc.color.nick_prefix_voice', 'irc.color.nick_prefix_user'.
[[0.3.5_hotlist]]
=== Hotlist === Hotlist
[[0.3.5_hotlist_counters]]
==== Counters ==== Counters
Count of messages have been added to hotlist by default, if you want to come Count of messages have been added to hotlist by default, if you want to come
@@ -894,7 +757,6 @@ back to old behavior, do that:
/set weechat.look.hotlist_buffer_separator "," /set weechat.look.hotlist_buffer_separator ","
---- ----
[[0.3.5_hotlist_away_current_buffer]]
==== Away and current buffer ==== Away and current buffer
When you are away, all buffers are now added to hotlist by default (even if they When you are away, all buffers are now added to hotlist by default (even if they
@@ -904,16 +766,13 @@ are displayed in a window), if you want to come back to old behavior, do that:
/set weechat.look.hotlist_add_buffer_if_away off /set weechat.look.hotlist_add_buffer_if_away off
---- ----
[[0.3.5_new_keys]]
=== New keys === New keys
New keys were added, use command `/key missing` to add them or `/key listdiff` New keys were added, use command `/key missing` to add them or `/key listdiff`
to see differences between your current keys and WeeChat default keys. to see differences between your current keys and WeeChat default keys.
[[0.3.4]]
== Version 0.3.4 (2011-01-16) == Version 0.3.4 (2011-01-16)
[[0.3.4_after_upgrade]]
=== After /upgrade === After /upgrade
If you are using `/upgrade` from a previous release: If you are using `/upgrade` from a previous release:
@@ -925,7 +784,6 @@ If you are using `/upgrade` from a previous release:
* nick colors in messages displayed will be wrong if you changed some nick * nick colors in messages displayed will be wrong if you changed some nick
colors (old default colors will be used) colors (old default colors will be used)
[[0.3.4_options]]
=== Options === Options
Some IRC options have been renamed, before upgrading to this version, note Some IRC options have been renamed, before upgrading to this version, note
@@ -950,16 +808,13 @@ value for old options, and set them again with new name:
** 'irc.look.open_pv_near_server' moved to 'irc.look.new_pv_position' ** 'irc.look.open_pv_near_server' moved to 'irc.look.new_pv_position'
(old option was boolean, new is integer with value as string) (old option was boolean, new is integer with value as string)
[[0.3.3]]
== Version 0.3.3 (2010-08-07) == Version 0.3.3 (2010-08-07)
[[0.3.3_after_upgrade]]
=== After /upgrade === After /upgrade
If you are using `/upgrade` from a previous release, then you must reconnect to If you are using `/upgrade` from a previous release, then you must reconnect to
IRC servers in order to use new command /wallchops. IRC servers in order to use new command /wallchops.
[[0.3.3_options]]
=== Options === Options
Option 'irc.look.show_away_once' has been renamed to Option 'irc.look.show_away_once' has been renamed to
@@ -968,10 +823,8 @@ Option 'irc.look.show_away_once' has been renamed to
Option 'irc.network.lag_min_show' is now in milliseconds, you should set new Option 'irc.network.lag_min_show' is now in milliseconds, you should set new
value: your current value multiplied by 1000 (new default value is 500). value: your current value multiplied by 1000 (new default value is 500).
[[0.3.2]]
== Version 0.3.2 (2010-04-18) == Version 0.3.2 (2010-04-18)
[[0.3.2_after_upgrade]]
=== After /upgrade === After /upgrade
If you are using `/upgrade` from a previous release, then you must execute this If you are using `/upgrade` from a previous release, then you must execute this
@@ -982,17 +835,14 @@ needed on WeeChat core buffer or buffers from other plugins/scripts):
/buffer set highlight_words $nick /buffer set highlight_words $nick
---- ----
[[0.3.1.1]]
== Version 0.3.1.1 (2010-01-31) == Version 0.3.1.1 (2010-01-31)
This version fixes crashes with SSL connection and purge of old DCC chats. This version fixes crashes with SSL connection and purge of old DCC chats.
All users of version 0.3.1 should upgrade to this version. All users of version 0.3.1 should upgrade to this version.
[[0.3.1]]
== Version 0.3.1 (2010-01-23) == Version 0.3.1 (2010-01-23)
[[0.3.1_aliases]]
=== Aliases === Aliases
IRC commands /ame and /amsg are now aliases, if you are upgrading from version IRC commands /ame and /amsg are now aliases, if you are upgrading from version
@@ -1005,7 +855,6 @@ IRC commands /ame and /amsg are now aliases, if you are upgrading from version
/alias anick allserv /nick /alias anick allserv /nick
---- ----
[[0.3.0]]
== Version 0.3.0 (2009-09-06) == Version 0.3.0 (2009-09-06)
This version brings *MAJOR* changes, especially for configuration files and This version brings *MAJOR* changes, especially for configuration files and
@@ -1028,47 +877,38 @@ More information about new API is available on wiki:
http://wiki.flashtux.org/wiki/WeeChat_0.3.0 http://wiki.flashtux.org/wiki/WeeChat_0.3.0
and http://wiki.flashtux.org/wiki/WeeChat_0.3.0_API and http://wiki.flashtux.org/wiki/WeeChat_0.3.0_API
[[0.2.6.3]]
== Version 0.2.6.3 (2009-06-13) == Version 0.2.6.3 (2009-06-13)
This version fixes gnutls detection. This version fixes gnutls detection.
[[0.2.6.2]]
== Version 0.2.6.2 (2009-04-18) == Version 0.2.6.2 (2009-04-18)
This version fixes a bug with charset decoding (like 'iso2022jp'). This version fixes a bug with charset decoding (like 'iso2022jp').
[[0.2.6.1]]
== Version 0.2.6.1 (2009-03-14) == Version 0.2.6.1 (2009-03-14)
This version fixes a major bug: crash with some special chars in IRC messages. This version fixes a major bug: crash with some special chars in IRC messages.
[[0.2.6]]
== Version 0.2.6 (2007-09-06) == Version 0.2.6 (2007-09-06)
No release note. No release note.
[[0.2.5]]
== Version 0.2.5 (2007-06-07) == Version 0.2.5 (2007-06-07)
No release note. No release note.
[[0.2.4]]
== Version 0.2.4 (2007-03-29) == Version 0.2.4 (2007-03-29)
No release note. No release note.
[[0.2.3]]
== Version 0.2.3 (2007-01-10) == Version 0.2.3 (2007-01-10)
This version fixes several major bugs of version 0.2.2. This version fixes several major bugs of version 0.2.2.
All users of version 0.2.2 should upgrade to this version. All users of version 0.2.2 should upgrade to this version.
[[0.2.2]]
== Version 0.2.2 (2007-01-06) == Version 0.2.2 (2007-01-06)
[[0.2.2_charset_plugin]]
=== Charset plugin === Charset plugin
For users of any previous version, all your charset settings in weechat.rc will For users of any previous version, all your charset settings in weechat.rc will
@@ -1094,7 +934,6 @@ For server encode (on server buffer):
/charset encode ISO-8859-1 /charset encode ISO-8859-1
---- ----
[[0.2.2_new_keys]]
=== New keys === New keys
New keys for topic scroll: key[F9]/key[F10]. New keys for topic scroll: key[F9]/key[F10].
@@ -1112,21 +951,17 @@ Which gives something like:
/key meta2-21~ scroll_topic_right /key meta2-21~ scroll_topic_right
---- ----
[[0.2.1]]
== Version 0.2.1 (2006-10-01) == Version 0.2.1 (2006-10-01)
No release note. No release note.
[[0.2.0]]
== Version 0.2.0 (2006-08-19) == Version 0.2.0 (2006-08-19)
[[0.2.0_after_upgrade]]
=== After /upgrade === After /upgrade
If you upgraded with `/upgrade` in WeeChat, you should `/disconnect` and then If you upgraded with `/upgrade` in WeeChat, you should `/disconnect` and then
`/reconnect` on each server, to display properly channel/user modes. `/reconnect` on each server, to display properly channel/user modes.
[[0.2.0_plugins]]
=== Plugins === Plugins
If you're using plugins, you should remove some old plugins libraries in WeeChat If you're using plugins, you should remove some old plugins libraries in WeeChat
@@ -1134,26 +969,21 @@ system library directory (commonly '/usr/local/lib/weechat/plugins'): remove
`lib*` files (like `libperl.*`, `libpython.*`, ..) and keep only new libraries `lib*` files (like `libperl.*`, `libpython.*`, ..) and keep only new libraries
(`perl.*`, `python.*`, ..). (`perl.*`, `python.*`, ..).
[[0.1.9]]
== Version 0.1.9 (2006-05-25) == Version 0.1.9 (2006-05-25)
[[0.1.9_dcc_chat]]
=== DCC chat === DCC chat
Please close all DCC chat buffers before using /upgrade command, otherwise you Please close all DCC chat buffers before using /upgrade command, otherwise you
may experience problems with DCC chats. may experience problems with DCC chats.
[[0.1.9_script_api]]
=== Script API === Script API
Some changes in script API: now timer handlers functions takes exactly 0 (zero) Some changes in script API: now timer handlers functions takes exactly 0 (zero)
argument (in version 0.1.8, two arguments were mandatory but not used: server argument (in version 0.1.8, two arguments were mandatory but not used: server
and arguments). and arguments).
[[0.1.8]]
== Version 0.1.8 (2006-03-18) == Version 0.1.8 (2006-03-18)
[[0.1.8_after_upgrade]]
=== After /upgrade === After /upgrade
After installing 0.1.8 (or with `/upgrade`), issue both commands (if you didn't After installing 0.1.8 (or with `/upgrade`), issue both commands (if you didn't
@@ -1166,7 +996,6 @@ redefine these keys (key[alt-]key[Home]/key[End]):
Then launch again WeeChat (or issue `/upgrade`). Then launch again WeeChat (or issue `/upgrade`).
[[0.1.8_configuration_files]]
=== Configuration files === Configuration files
It is recommended for users of version 0.1.7 (or any older), to replace values It is recommended for users of version 0.1.7 (or any older), to replace values
@@ -1178,22 +1007,18 @@ in setup file ('~/.weechat/weechat.rc'):
The string '%h' is replaced by WeeChat home (default: '~/.weechat', may be The string '%h' is replaced by WeeChat home (default: '~/.weechat', may be
overridden by new command line argument `--dir`). overridden by new command line argument `--dir`).
[[0.1.8_keys]]
=== Keys === Keys
Keys key[alt-]key[Home]/key[End] were used for nicklist scroll, they're now Keys key[alt-]key[Home]/key[End] were used for nicklist scroll, they're now
replaced by key[alt-]key[F11]/key[F12]. replaced by key[alt-]key[F11]/key[F12].
[[0.1.7]]
== Version 0.1.7 (2006-01-14) == Version 0.1.7 (2006-01-14)
[[0.1.7_ruby]]
=== Ruby === Ruby
Ruby script plugin has been added but is experimental in this release. You're Ruby script plugin has been added but is experimental in this release. You're
warned! warned!
[[0.1.7_command_away]]
=== Command /away === Command /away
Command `/away` was changed to be RFC 2812 compliant. Now argument is required Command `/away` was changed to be RFC 2812 compliant. Now argument is required
@@ -1201,23 +1026,19 @@ to set away, and no argument means remove away ("back").
Option 'irc_default_msg_away' has been removed. Option 'irc_default_msg_away' has been removed.
[[0.1.6]]
== Version 0.1.6 (2005-11-11) == Version 0.1.6 (2005-11-11)
[[0.1.6_script_api]]
=== Script API === Script API
Incompatibility with some old scripts: now all handlers have to return a code Incompatibility with some old scripts: now all handlers have to return a code
for completion, and to do some actions about message to ignore (please look at for completion, and to do some actions about message to ignore (please look at
documentation for detail). documentation for detail).
[[0.1.6_openbsd]]
=== OpenBSD === OpenBSD
On OpenBSD, the new option 'plugins_extension' should be set to '.so.0.0' since On OpenBSD, the new option 'plugins_extension' should be set to '.so.0.0' since
the plugins names are ending by '.so.0.0' and not '.so'. the plugins names are ending by '.so.0.0' and not '.so'.
[[0.1.6_utf8]]
=== UTF-8 === UTF-8
With new and full UTF-8 support, the option 'look_charset_internal' should be With new and full UTF-8 support, the option 'look_charset_internal' should be
@@ -1225,77 +1046,62 @@ set to blank for most cases. Forces it only if your locale is not properly
detected by WeeChat (you can set 'UTF-8' or 'ISO-8859-15' for example, depending detected by WeeChat (you can set 'UTF-8' or 'ISO-8859-15' for example, depending
on your locale). WeeChat is looking for 'UTF-8' in your locale name at startup. on your locale). WeeChat is looking for 'UTF-8' in your locale name at startup.
[[0.1.5]]
== Version 0.1.5 (2005-09-24) == Version 0.1.5 (2005-09-24)
No release note. No release note.
[[0.1.4]]
== Version 0.1.4 (2005-07-30) == Version 0.1.4 (2005-07-30)
No release note. No release note.
[[0.1.3]]
== Version 0.1.3 (2005-07-02) == Version 0.1.3 (2005-07-02)
No release note. No release note.
[[0.1.2]]
== Version 0.1.2 (2005-05-21) == Version 0.1.2 (2005-05-21)
No release note. No release note.
[[0.1.1]]
== Version 0.1.1 (2005-03-20) == Version 0.1.1 (2005-03-20)
No release note. No release note.
[[0.1.0]]
== Version 0.1.0 (2005-02-12) == Version 0.1.0 (2005-02-12)
No release note. No release note.
[[0.0.9]]
== Version 0.0.9 (2005-01-01) == Version 0.0.9 (2005-01-01)
No release note. No release note.
[[0.0.8]]
== Version 0.0.8 (2004-10-30) == Version 0.0.8 (2004-10-30)
No release note. No release note.
[[0.0.7]]
== Version 0.0.7 (2004-08-08) == Version 0.0.7 (2004-08-08)
No release note. No release note.
[[0.0.6]]
== Version 0.0.6 (2004-06-05) == Version 0.0.6 (2004-06-05)
No release note. No release note.
[[0.0.5]]
== Version 0.0.5 (2004-02-07) == Version 0.0.5 (2004-02-07)
No release note. No release note.
[[0.0.4]]
== Version 0.0.4 (2004-01-01) == Version 0.0.4 (2004-01-01)
No release note. No release note.
[[0.0.3]]
== Version 0.0.3 (2003-11-03) == Version 0.0.3 (2003-11-03)
No release note. No release note.
[[0.0.2]]
== Version 0.0.2 (2003-10-05) == Version 0.0.2 (2003-10-05)
No release note. No release note.
[[0.0.1]]
== Version 0.0.1 (2003-09-27) == Version 0.0.1 (2003-09-27)
No release note. No release note.
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org>
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+5 -5
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2014-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2014-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
@@ -18,9 +18,9 @@
# #
# - Find CppUTest # - Find CppUTest
# This module finds if CppUTest is installed and determines where the include # This module finds if Guile is installed and determines where the include files
# files and libraries are. It also determines what the name of the library is. # and libraries are. It also determines what the name of the library is. This
# This code sets the following variables: # code sets the following variables:
# #
# CPPUTEST_FOUND = CppUTest is installed # CPPUTEST_FOUND = CppUTest is installed
# CPPUTEST_INCLUDE_DIRS = CppUTest include directory # CPPUTEST_INCLUDE_DIRS = CppUTest include directory
@@ -33,5 +33,5 @@ endif()
find_package(PkgConfig) find_package(PkgConfig)
if(PKG_CONFIG_FOUND) if(PKG_CONFIG_FOUND)
pkg_search_module(CPPUTEST cpputest) pkg_search_module(CPPUTEST REQUIRED cpputest)
endif() endif()
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2007 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2007 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2011-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2011-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+2 -2
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
@@ -35,5 +35,5 @@ endif()
find_package(PkgConfig) find_package(PkgConfig)
if(PKG_CONFIG_FOUND) if(PKG_CONFIG_FOUND)
pkg_search_module(LUA lua5.3 lua-5.3 lua53 lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua51 lua-5.0 lua5.0 lua50 lua) pkg_search_module(LUA lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua51 lua-5.0 lua5.0 lua50 lua)
endif() endif()
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2009 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2009 Julien Louis <ptitlouis@sysif.net>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
+2 -2
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
@@ -41,7 +41,7 @@ if(RUBY_FOUND)
mark_as_advanced(RUBY_LIB) mark_as_advanced(RUBY_LIB)
else() else()
find_program(RUBY_EXECUTABLE find_program(RUBY_EXECUTABLE
NAMES ruby2.2.3 ruby223 ruby2.2.2 ruby222 ruby2.2.1 ruby221 ruby2.2.0 ruby220 ruby2.2 ruby22 ruby2.1.7 ruby217 ruby2.1.6 ruby216 ruby2.1.5 ruby215 ruby2.1.4 ruby214 ruby2.1.3 ruby213 ruby2.1.2 ruby212 ruby2.1.1 ruby211 ruby2.1.0 ruby210 ruby2.1 ruby21 ruby2.0 ruby20 ruby1.9.3 ruby193 ruby1.9.2 ruby192 ruby1.9.1 ruby191 ruby1.9 ruby19 ruby1.8 ruby18 ruby NAMES ruby1.9.3 ruby193 ruby1.9.2 ruby192 ruby1.9.1 ruby191 ruby1.9 ruby19 ruby1.8 ruby18 ruby
PATHS /usr/bin /usr/local/bin /usr/pkg/bin PATHS /usr/bin /usr/local/bin /usr/pkg/bin
) )
if(RUBY_EXECUTABLE) if(RUBY_EXECUTABLE)
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
+1 -1
View File
@@ -1,6 +1,6 @@
# #
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2008-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2008-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+3 -3
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2015-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
@@ -17,8 +17,8 @@
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
# #
# - Find V8 (Google's Javascript engine) # - Find Aspell
# This module finds if libv8 is installed and determines where # This module finds if libaspell is installed and determines where
# the include files and libraries are. # the include files and libraries are.
# #
# This code sets the following variables: # This code sets the following variables:
+1 -1
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# #
# This file is part of WeeChat, the extensible chat client. # This file is part of WeeChat, the extensible chat client.
# #
+2 -3
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> # Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr> # Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr>
# Copyright (C) 2005-2006 Julien Louis <ptitlouis@sysif.net> # Copyright (C) 2005-2006 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2005-2009 Emmanuel Bouthenot <kolter@openics.org> # Copyright (C) 2005-2009 Emmanuel Bouthenot <kolter@openics.org>
@@ -24,7 +24,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56) AC_PREREQ(2.56)
AC_INIT(WeeChat, m4_esyscmd([./version.sh devel-full | tr -d '\n']), flashcode@flashtux.org) AC_INIT(WeeChat, 1.2, flashcode@flashtux.org)
AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_SRCDIR([configure.ac])
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([foreign]) AM_INIT_AUTOMAKE([foreign])
@@ -1291,7 +1291,6 @@ AC_OUTPUT([Makefile
doc/es/Makefile doc/es/Makefile
doc/ru/Makefile doc/ru/Makefile
doc/ja/Makefile doc/ja/Makefile
doc/cs/Makefile
src/Makefile src/Makefile
src/core/Makefile src/core/Makefile
src/plugins/Makefile src/plugins/Makefile
-134
View File
@@ -1,134 +0,0 @@
Source: weechat-devel
Section: net
Priority: optional
Maintainer: Sébastien Helleu <flashcode@flashtux.org>
Build-Depends:
asciidoc (>= 8.5),
source-highlight,
xsltproc,
docbook-xsl,
docbook-xml,
debhelper (>= 9),
dh-exec,
cmake, pkg-config,
libncursesw5-dev,
gem2deb,
libperl-dev,
python-dev,
libaspell-dev,
liblua5.1-0-dev,
tcl8.5-dev,
guile-2.0-dev,
libv8-dev [amd64 armel armhf hurd-i386 i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel],
libcurl4-gnutls-dev,
libgcrypt20-dev,
libgnutls28-dev,
zlib1g-dev
Standards-Version: 3.9.6
Homepage: https://weechat.org/
Vcs-Git: https://github.com/weechat/weechat.git
Vcs-Browser: https://github.com/weechat/weechat
Package: weechat-devel
Architecture: all
Depends: ${misc:Depends}, weechat-devel-curses (>= ${source:Version})
Conflicts: weechat
Description: Fast, light and extensible chat client
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
It is customizable and extensible with plugins/scripts, and includes:
- support of IRC protocol (native)
- support of XMPP/Jabber protocol (with additional script)
- nicklist
- smart hotlist
- horizontal and vertical split
- double charset support (decode/encode)
- FIFO pipe for remote control
- 256 colors support
- incremental text search
- dynamic filtering of buffer content
- Perl, Python, Ruby, Lua, Tcl, Scheme and Javascript scripting
- scripts manager
- spell checking
- highly customizable and extensible
- and much more!
Package: weechat-devel-curses
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, weechat-devel-core (= ${binary:Version})
Conflicts: weechat-curses
Recommends: weechat-devel-plugins (= ${binary:Version})
Description: Fast, light and extensible chat client - console client
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
It is customizable and extensible with plugins/scripts, and includes:
- support of IRC protocol (native)
- support of XMPP/Jabber protocol (with additional script)
- nicklist
- smart hotlist
- horizontal and vertical split
- double charset support (decode/encode)
- FIFO pipe for remote control
- 256 colors support
- incremental text search
- dynamic filtering of buffer content
- Perl, Python, Ruby, Lua, Tcl, Scheme and Javascript scripting
- scripts manager
- spell checking
- highly customizable and extensible
- and much more!
.
This package provides the console client (ncurses).
Package: weechat-devel-core
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Conflicts: weechat-core
Description: Fast, light and extensible chat client - core files
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
.
This package provides core plugins and locales files for WeeChat. It
currently ships the following plugins: alias, xfer, irc, charset and
logger. It is useless without weechat-curses.
Package: weechat-devel-plugins
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, weechat-devel-curses (= ${binary:Version})
Conflicts: weechat-plugins
Description: Fast, light and extensible chat client - plugins
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
.
This package provides some plugins to enhance WeeChat. It currently
ships the following plugins:
- Perl, Python, Ruby, Lua, Tcl, Scheme and Javascript scripting
- scripts manager
- Spell checking (thanks to aspell)
- FIFO pipe for remote control
- IRC proxy
- Trigger
Package: weechat-devel-dev
Section: devel
Architecture: all
Depends: ${misc:Depends}
Conflicts: weechat-dev
Description: Fast, light and extensible chat client - development headers
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
.
This package contains the headers needed to build plugins.
Package: weechat-devel-dbg
Section: debug
Priority: extra
Architecture: any
Depends: ${misc:Depends}, weechat-devel-curses (= ${binary:Version}) |
weechat-devel-core (= ${binary:Version}), weechat-devel-plugins (= ${binary:Version})
Conflicts: weechat-dbg
Description: Fast, light and extensible chat client - debugging symbols
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
for many operating systems. Everything can be done with a keyboard.
.
This package contains gdb debugging symbols for the WeeChat packages.
-1
View File
@@ -1 +0,0 @@
../debian-stable/copyright
-1
View File
@@ -1 +0,0 @@
../debian-stable/gbp.conf
-33
View File
@@ -1,33 +0,0 @@
#!/usr/bin/make -f
BUILDDIR = builddir
$(BUILDDIR)/Makefile:
mkdir -p $(BUILDDIR)
cd $(BUILDDIR) && \
cmake .. \
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
-DENABLE_DOC:BOOL=OFF \
-DENABLE_MAN:BOOL=ON \
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
-DCMAKE_SKIP_RPATH:BOOL=ON \
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
override_dh_auto_build: $(BUILDDIR)/Makefile
dh_auto_build
override_dh_auto_configure:
# the package also has autotools buildsys and
# debhelper try to use it but that's not needed
echo
override_dh_installchangelogs:
dh_installchangelogs ChangeLog.asciidoc
override_dh_strip:
dh_strip --dbg-package=weechat-devel-dbg
%:
dh $@ --parallel --builddirectory=$(BUILDDIR)
-1
View File
@@ -1 +0,0 @@
../debian-stable/watch
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-core.docs
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-core.install
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-curses.dirs
@@ -1 +0,0 @@
../debian-stable/weechat-curses.install
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-curses.links
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-curses.menu
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-dev.dirs
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-dev.install
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat-plugins.dirs
@@ -1 +0,0 @@
../debian-stable/weechat-plugins.install
-1
View File
@@ -1 +0,0 @@
../debian-stable/weechat.xpm
-1
View File
@@ -1 +0,0 @@
9
-2
View File
@@ -1,2 +0,0 @@
[DEFAULT]
debian-branch = unstable
-9
View File
@@ -1,12 +1,3 @@
weechat (1.1.1-1) unstable; urgency=medium
Since version 1.1, there is a new format for regexp replacement in
triggers. This format is incompatible with version 1.0. The existing
triggers will not be automatically updated.
See http://www.weechat.org/files/releasenotes/ReleaseNotes-1.1.html
-- Emmanuel Bouthenot <kolter@debian.org> Sun, 25 Jan 2015 20:41:50 +0100
weechat (0.3.1-1) unstable; urgency=low weechat (0.3.1-1) unstable; urgency=low
This release introduces important changes with the usage of SSL. There This release introduces important changes with the usage of SSL. There
-36
View File
@@ -1,39 +1,3 @@
weechat (1.3-1) unstable; urgency=medium
* New upstream release
- Remove backported patch to fix FTBFS with ruby 2.2
* Use dh-exec to build javascript plugin only on architectures which v8
engine supports. Thanks to Mateusz Łukasik for the patch
(Closes: #794584)
-- Emmanuel Bouthenot <kolter@debian.org> Wed, 19 Aug 2015 18:34:17 +0200
weechat (1.2-2) unstable; urgency=medium
* Add patch (backported from upstream) to fix a FTBFS while building
against ruby 2.2 (Closes: #791836)
-- Emmanuel Bouthenot <kolter@debian.org> Thu, 16 Jul 2015 18:23:55 +0200
weechat (1.2-1) unstable; urgency=medium
* New upstream release
- Enable build of javascript plugin (using v8 engine)
-- Emmanuel Bouthenot <kolter@debian.org> Mon, 11 May 2015 18:00:01 +0200
weechat (1.1.1-1) unstable; urgency=medium
* New upstream release (Closes: #776105)
- Add a new entry in News.Debian about new format for regex replacement
in triggers
* Update debian/{control,copyright,watch} to use https links with the
upstream project resources
* Bump Standards-Version to 3.9.6
* Update year in debian/copyright
-- Emmanuel Bouthenot <kolter@debian.org> Sun, 25 Jan 2015 20:27:04 +0100
weechat (1.0.1-1) unstable; urgency=medium weechat (1.0.1-1) unstable; urgency=medium
* New upstream release * New upstream release
View File
+2 -3
View File
@@ -9,7 +9,6 @@ Build-Depends:
docbook-xsl, docbook-xsl,
docbook-xml, docbook-xml,
debhelper (>= 9), debhelper (>= 9),
dh-exec,
cmake, pkg-config, cmake, pkg-config,
libncursesw5-dev, libncursesw5-dev,
gem2deb, gem2deb,
@@ -19,12 +18,12 @@ Build-Depends:
liblua5.1-0-dev, liblua5.1-0-dev,
tcl8.5-dev, tcl8.5-dev,
guile-2.0-dev, guile-2.0-dev,
libv8-dev [amd64 armel armhf hurd-i386 i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel], libv8-dev,
libcurl4-gnutls-dev, libcurl4-gnutls-dev,
libgcrypt20-dev, libgcrypt20-dev,
libgnutls28-dev, libgnutls28-dev,
zlib1g-dev zlib1g-dev
Standards-Version: 3.9.6 Standards-Version: 3.9.5
Homepage: https://weechat.org/ Homepage: https://weechat.org/
Vcs-Git: git://anonscm.debian.org/users/kolter/weechat.git Vcs-Git: git://anonscm.debian.org/users/kolter/weechat.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=users/kolter/weechat.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=users/kolter/weechat.git
+1 -1
View File
@@ -4,7 +4,7 @@ Upstream-Contact: Sébastien Helleu <flashcode@flashtux.org>
Source: https://weechat.org/ Source: https://weechat.org/
Files: * Files: *
Copyright: 2003-2016, Sébastien Helleu <flashcode@flashtux.org> Copyright: 2003-2015, Sébastien Helleu <flashcode@flashtux.org>
2005-2009, Emmanuel Bouthenot <kolter@openics.org> 2005-2009, Emmanuel Bouthenot <kolter@openics.org>
2008-2009, Dmitry Kobylin <fnfal@academ.tsc.ru> 2008-2009, Dmitry Kobylin <fnfal@academ.tsc.ru>
License: GPL-3+ License: GPL-3+
+5
View File
@@ -0,0 +1,5 @@
[DEFAULT]
upstream-branch = upstream
debian-branch = unstable
upstream-tag = v%(version)s
compression = xz
View File
View File

Some files were not shown because too many files have changed in this diff Show More