summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-26 03:04:51 -0500
committerJune McEnroe <june@causal.agency>2020-02-26 03:04:51 -0500
commit13c64586524324114e55ded3e408a53c168f8a04 (patch)
treee3837904d5f426a0533cbe2da951c2daa955de26
parentClean up intercept tag skip (diff)
downloadpounce-13c64586524324114e55ded3e408a53c168f8a04.tar.gz
pounce-13c64586524324114e55ded3e408a53c168f8a04.zip
Support account-tag
Diffstat (limited to '')
-rw-r--r--bounce.h3
-rw-r--r--pounce.13
2 files changed, 4 insertions, 2 deletions
diff --git a/bounce.h b/bounce.h
index 7f7c247..7813284 100644
--- a/bounce.h
+++ b/bounce.h
@@ -66,6 +66,7 @@ static inline struct Message parse(char *line) {
 
 #define ENUM_CAP \
 	X("account-notify", CapAccountNotify) \
+	X("account-tag", CapAccountTag) \
 	X("away-notify", CapAwayNotify) \
 	X("causal.agency/passive", CapPassive) \
 	X("chghost", CapChghost) \
@@ -82,7 +83,7 @@ enum Cap {
 #define X(name, id) BIT(id),
 	ENUM_CAP
 #undef X
-	TagCaps = CapMessageTags | CapServerTime,
+	TagCaps = CapAccountTag | CapMessageTags | CapServerTime,
 };
 
 static const char *CapNames[] = {
diff --git a/pounce.1 b/pounce.1
index a205857..be272b5 100644
--- a/pounce.1
+++ b/pounce.1
@@ -1,4 +1,4 @@
-.Dd February 25, 2020
+.Dd February 26, 2020
 .Dt POUNCE 1
 .Os
 .
@@ -338,6 +338,7 @@ and do not affect away status.
 Pass-through of the following IRCv3 capabilities
 is supported:
 .Sy account-notify ,
+.Sy account-tag ,
 .Sy away-notify ,
 .Sy chghost ,
 .Sy extended-join ,
tor out hashing functionJune McEnroe 2020-01-01Add option for custom where expression to scoopJune McEnroe 2020-01-01Document ENVIRONMENT in scoop(1)June McEnroe 2019-12-31Add before and after optionsJune McEnroe 2019-12-31Add scoop IRC output formatJune McEnroe 2019-12-31Add scoop output format optionJune McEnroe 2019-12-31Refactor scoop formatters and group colored outputJune McEnroe 2019-12-31Add strftime format string optionJune McEnroe 2019-12-31Refactor binding in scoopJune McEnroe 2019-12-31Add option to group events by contextJune McEnroe 2019-12-31Add missing includeJune McEnroe 2019-12-31Use standout mode for highlightingJune McEnroe 2019-12-31Rewrite scoop(1) argument descriptionsJune McEnroe 2019-12-31Color both nicks in a changeJune McEnroe 2019-12-31Implement nick-colored outputJune McEnroe 2019-12-31Only enable highlighting on terminal outputJune McEnroe 2019-12-31Set up pager pipeJune McEnroe 2019-12-30Normalize date inputJune McEnroe Mostly this just allows the use of 'now'. 2019-12-30Add initial rough version of scoopJune McEnroe 2019-12-30Join with USING wherever possibleJune McEnroe 2019-12-30Add -D flag to prospective scoop manualJune McEnroe 2019-12-30Order results by ID in outer query in litterboxJune McEnroe 2019-12-30Use X macro for Type enumJune McEnroe 2019-12-30Remove scoop -ABCJune McEnroe I can almost get these to work with an inner and outer SQL query, but when contexts starts overlapping it becomes a disaster, so I'm leavin it out at least for now. 2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe