diff options
author | novel <novel@FreeBSD.org> | 2006-08-20 17:35:47 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-08-20 17:35:47 +0800 |
commit | 6da5f638a0308bd178a3ff8008737170bcab966c (patch) | |
tree | a1bc9ad1249765e835adabb4fbc9eb70a7e01ed1 /deskutils/logjam | |
parent | 9810667da029806eff8e0e70983412e9a061a0c0 (diff) | |
download | freebsd-ports-gnome-6da5f638a0308bd178a3ff8008737170bcab966c.tar.gz freebsd-ports-gnome-6da5f638a0308bd178a3ff8008737170bcab966c.tar.zst freebsd-ports-gnome-6da5f638a0308bd178a3ff8008737170bcab966c.zip |
Add two additional patches, one of them with backdated entries fix and
another provides a keyboard shortcut for insertion of images; and bump
PORTREVISION.
PR: 102237
Submitted by: danfe
Diffstat (limited to 'deskutils/logjam')
-rw-r--r-- | deskutils/logjam/Makefile | 1 | ||||
-rw-r--r-- | deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c | 15 | ||||
-rw-r--r-- | deskutils/logjam/files/patch-src-menu.c | 10 |
3 files changed, 26 insertions, 0 deletions
diff --git a/deskutils/logjam/Makefile b/deskutils/logjam/Makefile index 982b55c399ae..2c4ddfd9a765 100644 --- a/deskutils/logjam/Makefile +++ b/deskutils/logjam/Makefile @@ -7,6 +7,7 @@ PORTNAME= logjam PORTVERSION= 4.5.3 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= http://logjam.danga.com/download/ diff --git a/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c b/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c new file mode 100644 index 000000000000..c81d0ed04037 --- /dev/null +++ b/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c @@ -0,0 +1,15 @@ +--- protocol/liblivejournal/livejournal/entry.c.orig Thu Aug 17 01:40:10 2006 ++++ protocol/liblivejournal/livejournal/entry.c Thu Aug 17 01:45:24 2006 +@@ -610,6 +610,12 @@ + else if (g_ascii_strcasecmp(key, "time") == 0) { + if (entry) lj_ljdate_to_tm(val, &entry->time); + } ++ else if (g_ascii_strcasecmp(key, "backdated") == 0) { ++ if (entry && val[0]) { ++ if (g_ascii_strcasecmp(val, "yes") == 0) ++ entry->backdated = TRUE; ++ } ++ } + else return FALSE; + + return TRUE; diff --git a/deskutils/logjam/files/patch-src-menu.c b/deskutils/logjam/files/patch-src-menu.c new file mode 100644 index 000000000000..14f2e328fd50 --- /dev/null +++ b/deskutils/logjam/files/patch-src-menu.c @@ -0,0 +1,10 @@ +--- src/menu.c.orig Mon Oct 24 00:11:08 2005 ++++ src/menu.c Thu Aug 17 02:01:02 2006 +@@ -408,7 +408,7 @@ + 0, NULL }, + { "/Insert/---", NULL, NULL, 0, "<Separator>" }, + { N_("/Insert/_Link..."), "<ctl>L", menu_make_link }, +-{ N_("/Insert/_Image..."), NULL, menu_insert_image }, ++{ N_("/Insert/_Image..."), "<ctl><alt>P", menu_insert_image }, + { N_("/Insert/_Journal Link..."), "<ctl><alt>L", menu_make_journal_link }, + { N_("/Insert/lj-_cut..."), "<ctl><alt>X", menu_ljcut, 0, NULL }, |