1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-14 03:04:17 -04:00
Commit Graph

4394 Commits

Author SHA1 Message Date
Geert Hauwaerts
037fae0ed5 Syntax format changes for A-C commands
Updated the file format template for commands A through C.
2014-07-03 21:41:10 +02:00
Geert Hauwaerts
878411edc4 Syntax documentation rewrite for D-commands
Rewrote the syntax documentation for all commands starting with the
letter D.
2014-07-03 21:37:41 +02:00
Geert Hauwaerts
3f79c8553c Syntax documentation rewrite for C-commands
Rewrote the syntax documentation for all the commands starting with the
letter C.
2014-07-03 17:41:15 +02:00
Alexander Færøy
fd3676e407 Merge pull request #48 from ailin-nemui/256-colour-history
256 colour support for Irssi
2014-07-02 23:17:36 +02:00
Geert Hauwaerts
0a22174264 Syntax documentation rewrite for B-commands
Rewrote the syntax documentation for all the commands starting with B.
2014-07-02 22:35:17 +02:00
Geert Hauwaerts
712ef12542 Merge branch 'master' of https://github.com/irssi/irssi 2014-07-02 22:26:46 +02:00
Geert Hauwaerts
b2f265f44e Rewrote the syntax documentation for all the commands starting with A. 2014-07-02 22:25:33 +02:00
Alexander Færøy
aa7492d099 Merge pull request #70 from dgl/regexp-pattern-missing
Make it more obvious if -pattern wasn't provided to a regexp /ignore
2014-07-02 21:17:51 +02:00
Alexander Færøy
f779e04a9d Merge pull request #72 from dgl/regexp-error
Warn with error if regexp ignore fails to parse
2014-07-02 21:15:45 +02:00
Alexander Færøy
b9ba58d25f Merge pull request #74 from falconindy/master
Fix make dist
2014-07-02 21:12:38 +02:00
Geert Hauwaerts
f077280643 Added a default HIGHLIGHT and DEHIGHLIGHT alias 2014-07-01 21:27:59 +02:00
Geert Hauwaerts
ba4f6c4056 Aligned the /NETWORK documentation with docs/manual.txt 2014-06-30 22:27:22 +02:00
Geert Hauwaerts
9a9b77a6f5 Merge branch 'master' of https://github.com/irssi/irssi 2014-06-30 22:22:11 +02:00
Geert Hauwaerts
be3f303497 Removed docs/help from the .gitignore 2014-06-30 22:18:07 +02:00
Geert Hauwaerts
0d1758a2b5 Merge pull request #71 from dgl/nickserv-doc
Suggest using ^ so this doesn't pop-up a NickServ window
2014-06-30 21:47:50 +02:00
Geert Hauwaerts
735c621675 Merge pull request #73 from ailin-nemui/readme-other-modules
Point out more modules in README
2014-06-30 21:37:38 +02:00
Geert Hauwaerts
b68c168f94 Merge pull request #76 from ailin-nemui/improve-special-vars
Improve docs of special_vars wrt. to escaping rules in /alias
2014-06-30 21:21:22 +02:00
Jari Matilainen
70e49f673e Improve docs of special_vars wrt. to escaping rules in /alias 2014-06-30 21:03:50 +02:00
Dave Reisner
16088a7a46 Refer to correct name of README.md
fcb67831f2 renamed README -> README.md but didn't update
EXTRA_DIST, breaking 'make dist'.
2014-06-30 14:19:10 -04:00
Dave Reisner
a9d7171b7c propagate flags for automake initialization 2014-06-30 14:19:01 -04:00
Dave Reisner
2b7e460398 Remove superfluous entry from EXTRA_DIST
curses.m4 is already included by automake as it's an m4 depdendency.
2014-06-30 08:02:05 -04:00
Ailin Nemui
9fad15fa07 point out more modules in README 2014-06-30 13:18:18 +02:00
David Leadbeater
a9d9756d4d Make /ignore -replies work with NO_ACT 2014-06-30 09:35:31 +01:00
Ailin Nemui
96a292d40e Finish 256 colour support for Irssi
256 colour patch is cleaned up and the remaining cases are made work,
this includes especially Theme support, which was not implemented
before. Changes not related to colours were reverted again, making a
review of the two patches against master easier to follow.

As a byproduct of the Hex-colour code parser, the 24bit colours are
also implemented. Actually using them in the terminal is guarded by a
compile time switch (as well as a run time switch), as it breaks the
existing colour protocol and requires additional storage.

To make a seamless usage, down-conversion is provided for 8 and 16
colours.

Diverging from Tom's approach, the colour protocol is reverted back to
the original one. Unfortunately, the changes required in the Theme
engine will break the API.

For more details, please refer to the patch documentation at either
http://irssi-docs.wikispaces.com/Notes-256-Colour or
https://github.com/shabble/irssi-docs/wiki/Notes-256-Colour
2014-06-30 02:41:34 +02:00
David Leadbeater
3698ddfc3b Add NO_ACT checks for DCC messages 2014-06-30 00:32:21 +01:00
David Leadbeater
e8b0eb4986 Add NO_ACT checks for actions and notices 2014-06-30 00:32:17 +01:00
David Leadbeater
6bbb114046 Remove NO_ACT if we see a user specified hilight
In this path we can't look up ignores again because the print text signal
doesn't know the nick, etc. Instead just show it. The user can use -actcolor %n
or make the hilight more specific if desired.
2014-06-30 00:32:09 +01:00
David Leadbeater
d84811b192 Don't expand ALL when combined with NEVER/NO_ACT 2014-06-30 00:31:59 +01:00
David Leadbeater
819f9d16c9 Change NO_ACT so it can be used in addition to other ignores
This results in a more flexible system and is less surprising as it means levels
can be used in the way they normally can in an ignore.

As an example the current approach to NO_ACT provides no way to let HILIGHTS
be shown, with this change /set activity_hide_targets can be recreated with:
  /ignore #channel NO_ACT
  /ignore #channel -except -regexp -pattern . NO_ACT HILIGHTS
(but obviously this can be configured in many more ways if desired).
2014-06-30 00:31:53 +01:00
David Leadbeater
d823823c43 Suggest using ^ so this doesn't pop-up a NickServ window 2014-06-30 00:24:48 +01:00
David Leadbeater
0086211236 Warn with error if regexp ignore fails to parse 2014-06-30 00:23:42 +01:00
David Leadbeater
96701b6c68 Make it more obvious if -pattern wasn't provided to a regexp /ignore 2014-06-30 00:19:27 +01:00
Tom Feist
2d4edc5187 Initial implementation of 256 colour support for Irssi
This patch implements some 256 colour support for Irssi up from the
previous 16 colours. Initial parsing of the %x/%X format codes is
implemented and the parser accounts in advances the char* for
that.

The colour attributes are widened from 4 to 8 bit. The colour protocol
is changed to a new format. Some pointers to remaining work are
written in the comment in textbuffer.h.

Note that Irssi already does support requesting 256 colours from the
terminal in the original source code, so this part did not have to be
touched.
2014-06-30 00:54:16 +02:00
Alexander Færøy
2e6f16c0fa Merge pull request #11 from ailin-nemui/print_text_after_time-api
add print_text_after_time to specify time stamp for lines
2014-06-30 00:07:14 +02:00
Alexander Færøy
588597744e Merge pull request #69 from dgl/crash.txt
Update crash.txt to point at github
2014-06-29 17:16:40 +02:00
David Leadbeater
fa70021ac8 Update crash.txt to point at github 2014-06-29 15:09:32 +01:00
Alexander Færøy
2b6bba3fd2 Merge pull request #62 from dgl/prefix-nick-flags
Use PREFIX from 005 to decide if a nick flag is of op level
2014-06-29 14:32:15 +02:00
Alexander Færøy
aaa0cb6e03 Merge pull request #52 from dgl/stack-cleanup
Correct use of perl stack macros
2014-06-29 14:27:12 +02:00
Alexander Færøy
cce0ff80a2 Merge pull request #49 from dgl/stackem
Move PUTBACK to within the scope which uses the stack
2014-06-29 14:24:20 +02:00
Alexander Færøy
17b9bb12bf Merge pull request #68 from falconindy/master
Autotools cleanup
2014-06-29 14:21:00 +02:00
Ailin Nemui
e71c9f1b06 add print_text_after_time to specify time stamp for lines
add signal for line removal from textbuffer
2014-06-27 15:50:36 +02:00
David Leadbeater
6accf50991 Use PREFIX from 005 to decide if a nick flag is of op level
Fixes #61.
2014-06-27 14:13:55 +01:00
Dave Reisner
f0925de16b s/INCLUDES/AM_CPPFLAGS/g
Silences warnings on recent automake such as:

src/core/Makefile.am:3: warning: 'INCLUDES' is the old name for
'AM_CPPFLAGS' (or '*_CPPFLAGS')
2014-06-27 09:06:21 -04:00
Dave Reisner
13ea2cb622 add AC_CONFIG_MACRO_DIR([m4]), move *.m4 files to m4/
Silences notice on newer autoconf:

libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.

This helps keep the top-level build directory clean, too
2014-06-27 09:06:21 -04:00
Dave Reisner
c52bb433f0 rename configure.in -> configure.ac
Silences warning on newer autoconf:

aclocal: warning: autoconf input should be named 'configure.ac', not
'configure.in'
2014-06-27 09:06:21 -04:00
Alexander Færøy
113f1724d7 Merge pull request #44 from dajohi/g_basename
Replace deprecated g_basename with g_path_get_basename.
2014-06-27 14:41:54 +02:00
Alexander Færøy
b8c2915d79 Merge pull request #59 from ailin-nemui/perl-pl-na
get rid of PL_na
2014-06-27 14:31:04 +02:00
Alexander Færøy
e4051eb42e Merge pull request #60 from dgl/perl-no-get-context
Define PERL_NO_GET_CONTEXT in all perl source files
2014-06-27 14:25:52 +02:00
Alexander Færøy
da3f426edb Merge pull request #63 from dgl/cleanups
Clean-up some compiler warnings
2014-06-27 14:24:06 +02:00
David Leadbeater
c5d81c598d Correct use of perl stack macros
Further to pull #49 this is the result of an audit of the use of perl
stack macros. There were several cases where PUTBACK was being called
where the stack pointer could be out-of-date.

Also some misc. cleanup where the macros were used needlessly.
2014-06-27 11:20:48 +01:00