summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-31 18:55:09 -0400
committerJune McEnroe <june@causal.agency>2020-03-31 18:55:09 -0400
commita1a944e22b6806cbba755176990d7f9d88c6cec4 (patch)
treec302bd8d9aa176cde2726d6ce9dda76290ed2ce4
parentFix writing verbose to stderr (diff)
downloadlitterbox-a1a944e22b6806cbba755176990d7f9d88c6cec4.tar.gz
litterbox-a1a944e22b6806cbba755176990d7f9d88c6cec4.zip
Update unscoop catgirl matchers
I'm not concerned about keeping the old matchers since I'm almost
entirely certain I was the only one who ever used the old version of
catgirl, and I already imported those logs.
Diffstat (limited to '')
-rw-r--r--unscoop.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/unscoop.c b/unscoop.c
index 04e0ca7..afc42b5 100644
--- a/unscoop.c
+++ b/unscoop.c
@@ -39,7 +39,6 @@ struct Matcher {
 #define P0_MODE "[!~&@%+ ]?"
 #define P1_TIME "^[[]([^]]+)[]][ \t]"
 
-#define P2_MESSAGE "(, \"([^\"]+)\")?"
 static const struct Matcher Catgirl[] = {
 	{
 		P1_TIME "<([^>]+)> (.+)",
@@ -54,23 +53,25 @@ static const struct Matcher Catgirl[] = {
 		P1_TIME "([^ ]+) arrives",
 		Join, { ":time", ":nick" },
 	}, {
-		P1_TIME "([^ ]+) leaves [^,]+" P2_MESSAGE,
+		P1_TIME "([^ ]+) leaves [^:]+(: (.+))?",
 		Part, { ":time", ":nick", NULL, ":message" },
 	}, {
-		P1_TIME "([^ ]+) kicks ([^ ]+) out of [^,]+" P2_MESSAGE,
+		P1_TIME "([^ ]+) kicks ([^ ]+) out of [^:]+(: (.+))?",
 		Kick, { ":time", ":nick", ":target", NULL, ":message" },
 	}, {
-		P1_TIME "([^ ]+) leaves" P2_MESSAGE,
+		P1_TIME "([^ ]+) leaves(: (.+))?",
 		Quit, { ":time", ":nick", NULL, ":message" },
 	}, {
 		P1_TIME "([^ ]+) is now known as ([^ ]+)",
 		Nick, { ":time", ":nick", ":target" },
 	}, {
-		P1_TIME "([^ ]+) places a new sign in [^,]+" P2_MESSAGE,
+		P1_TIME "([^ ]+) places a new sign in [^:]+: (.+)",
 		Topic, { ":time", ":nick", ":message" },
+	}, {
+		P1_TIME "([^ ]+) removes the sign in",
+		Topic, { ":time", ":nick" },
 	},
 };
-#undef P2_MESSAGE
 
 static const struct Matcher Generic[] = {
 	{
5130a85ee9abe70d2e2c8af4eb0be368f4294&follow=1'>Add photos from September 22June McEnroe 2024-09-25Add photos from September 15June McEnroe 2024-09-24Add photos from September 14June McEnroe 2024-09-24Add photos from September 12June McEnroe 2024-09-24Add photos from September 7June McEnroe 2024-09-24Allow not having descriptionsJune McEnroe 2024-09-23Automatically select the last used lens for a bodyJune McEnroe 2024-09-19Add photos from September 5June McEnroe 2024-09-15Add some more film stocks to the listJune McEnroe 2024-09-13Add photos from September 2June McEnroe 2024-09-13Add Fomapan 200 to films listJune McEnroe 2024-09-10Add August 29 picnic photosJune McEnroe 2024-09-08Apply some bold to trips renderingJune McEnroe 2024-09-08Render trips hopefully more efficientlyJune McEnroe 2024-09-08Allow removing bodies and lensesJune McEnroe 2024-09-08Limit body width so it looks less silly on desktopJune McEnroe 2024-09-07Handle no film being loadedJune McEnroe 2024-09-07Fancy up the text a littleJune McEnroe