[Pkg-mozext-commits] [nostalgy] 76/252: *** empty log message ***
David Prévot
taffit at moszumanska.debian.org
Tue Jun 14 15:24:43 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository nostalgy.
commit 32f68ae22f0a23048e5442af0dc2fe0bcf24ecbb
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date: Fri May 11 07:27:47 2007 +0000
*** empty log message ***
---
CHANGES | 4 ++++
content/nostalgy.js | 4 ++--
files | 15 +++++++--------
3 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/CHANGES b/CHANGES
index 0b95395..895f918 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+Since 0.2.9
+ - bug fix: custom shortcuts did not work in mode "restrict to current
+ server"
+
0.2.9
- the user can define custom shortcuts (Go/Save/Copy to some specific folder)
- new "shift-G" shortcut (Go as suggested)
diff --git a/content/nostalgy.js b/content/nostalgy.js
index b28b855..cea9f27 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -611,8 +611,8 @@ function onNostalgyKeyPress(ev) {
function ParseCommand(k) {
var spl = k.match(/(.*) -> (.*)/);
- var folder = NostalgyResolveFolder(spl[2]);
- if (!folder) { alert("Cannot find folder " + folder); return; }
+ var folder = FindFolderExact(spl[2]);
+ if (!folder) { alert("Cannot find folder " + spl[2]); return; }
switch (spl[1]) {
case "Go": ShowFolder(folder); break;
case "Save": MoveToFolder(folder); break;
diff --git a/files b/files
index 2bad5ea..d30c5b8 100644
--- a/files
+++ b/files
@@ -1,16 +1,15 @@
+content/about.xhtml
content/about.xul
-content/edit_prefs.xul
-content/thunderbirdOverlay.xul
content/composer.js
-content/messageOverlay.xul
-content/about.xhtml
-content/edit_rule.xul
-content/folders.js
-content/edit_rule.js
-content/completion_prefs.js
content/composerOverlay.xul
content/edit_prefs.js
+content/edit_prefs.xul
+content/edit_rule.js
+content/edit_rule.xul
+content/folders.js
+content/messageOverlay.xul
content/nostalgy.js
+content/thunderbirdOverlay.xul
locale/en-US/nostalgy.dtd
locale/en-US/nostalgy.properties
defaults/preferences/nostalgy.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/nostalgy.git
More information about the Pkg-mozext-commits
mailing list