-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c508283
commit 8db2c66
Showing
11 changed files
with
1,108 additions
and
1,012 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ QuickFolders.Util = { | |
_isCSSGradients: -1, | ||
_isCSSRadius: -1, | ||
_isCSSShadow: true, | ||
HARDCODED_CURRENTVERSION : "4.21.4", // will later be overriden call to AddonManager | ||
HARDCODED_CURRENTVERSION : "4.22", // will later be overriden call to AddonManager | ||
HARDCODED_EXTENSION_TOKEN : ".hc", | ||
ADDON_ID: "[email protected]", | ||
FolderFlags : { // nsMsgFolderFlags | ||
|
@@ -992,17 +992,17 @@ QuickFolders.Util = { | |
const util = QuickFolders.Util, | ||
FLAGS = util.FolderFlags; | ||
try { | ||
let ct = parseInt(new Date().getTime() / 1000); // current time in secs | ||
// special folders we do not want / need in recent history: | ||
if (folder.flags & | ||
(FLAGS.MSG_FOLDER_FLAG_TRASH | FLAGS.MSG_FOLDER_FLAG_SENTMAIL | FLAGS.MSG_FOLDER_FLAG_QUEUE | | ||
FLAGS.MSG_FOLDER_FLAG_JUNK | FLAGS.MSG_FOLDER_FLAG_ARCHIVES | FLAGS.MSG_FOLDER_FLAG_DRAFTS)) return; | ||
if (folder.SetMRUTime) | ||
folder.SetMRUTime(); | ||
else { | ||
let ct = parseInt(new Date().getTime() / 1000); // current time in secs | ||
folder.setStringProperty("MRUTime", ct); | ||
} | ||
let time = folder.getStringProperty("MRUTime"); | ||
let time = folder.getStringProperty("MRUTime"); // [issue 163] apparently something else may reset the string later? | ||
util.logDebug("util.touch(" + folder.prettyName + ")\n" + time + '\n' + util.getMruTime(folder)); | ||
} | ||
catch(ex) { | ||
|
@@ -1034,7 +1034,7 @@ QuickFolders.Util = { | |
} , | ||
|
||
getTabInfoByIndex: function getTabInfoByIndex(tabmail, idx) { | ||
this.logDebug("getTabInfoByIndex(tabmail, " + idx + ") tabInfo: " + tabmail.tabInfo); | ||
// this.logDebug("getTabInfoByIndex(tabmail, " + idx + ") tabInfo: ", tabmail.tabInfo); | ||
if (tabmail.tabInfo && tabmail.tabInfo.length) | ||
return tabmail.tabInfo[idx]; | ||
if (tabmail.tabOwners) | ||
|
@@ -1516,7 +1516,6 @@ QuickFolders.Util = { | |
|
||
// moved from options.js (then called | ||
openURL: function openURL(evt,URL) { // workaround for a bug in TB3 that causes href's not be followed anymore. | ||
let ioservice, iuri, eps; | ||
if (QuickFolders.Util.Application=='SeaMonkey' || QuickFolders.Util.Application=='Postbox') | ||
{ | ||
this.openLinkInBrowserForced(URL); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
Release 4.21.4 | ||
Release 4.22 | ||
|
||
This release backports some of the fixes that were also done in the new version for Thunderbird 78. If you want to get the latest features, I highly recommend updating Thunderbird to the current 78 release version. | ||
To support QuickFolders, <a href="http://sites.fastspring.com/quickfolders/product/quickfolders?referrer=atn-version-page">buy a license</a> or <a href="https://quickfolders.org/donate.html?referrer=atn-version-page">donate</a> to support the project. | ||
|
||
<b>Bug Fixes</b> | ||
<b>Improvements</b> | ||
<ul> | ||
<li> <a target="_blank" href="https://github.com/RealRaven2000/QuickFolders/issues/148">[issue 148]</a> quickMove: parent folder containing an underscore not suggested as parent if typed from fully. This is a regression caused by changes in <a target="_blank" href="https://github.com/RealRaven2000/QuickFolders/issues/135">[issue 135]</a> which allows for entering parent names by entering text within the string if that starts with an underscore or space - e.g. to find all child folders of "001_Test" you could just type "tes/". The regression caused it not to be suggested when typing "001_tes/" as it only would evaluate the substrings "001" and "Test" as possible parents. | ||
</li> | ||
<li> <a target="_blank" href="https://github.com/RealRaven2000/QuickFolders/issues/155">[issue 155]</a> Support entering multiple words in a search string to find longer folder names that are composited, such as "Fred.Flintstone" "Invoices June 2020" "Research+Development". These can now be found by entering the starting letters of the words within the folder name, in any order. e.g. "f f" "2020 inv" "Dev Res". The following characters are regarded as word boundaries and don't need to be typed: | ||
_ . - + & @ | ||
|
||
This can also be combined with the existing parent folder syntax by entering the parent folder start followed by a forward slash "/", e.g. enter "A/rev a" to match subfolders like "AMO » AMO-Reviews" "Addons » Accepted Revisions". | ||
|
||
Use the new character ">" to skip any folder within the path. | ||
|
||
Use the [?] symbol to the right of the search field to display a help panel.</li> | ||
<li> <a target="_blank" href="https://github.com/RealRaven2000/QuickFolders/issues/163">[issue 163]</a> quickMove: folder created while moving is not displayed on top of recent folders menu.</li> | ||
<li> | ||
I am working on making QuickFolders compatible with Thunderbird 91, which is planned for release in summer 2021. There is a lot of rewriting going on in the background in order to replace internal functionality with the new API model. If you still ust THunderbird 68 or older, consider at least switching to Thunderbird 78 to get the <a href="https://quickfolders.org/version.html#latest">latest version of QuickFolders</a>. | ||
</li> | ||
<li>The maximum number of search results in quickMove can now be larger than 25 by editing the following configuration setting: extensions.quickfolders.quickMove.maxResults </li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4 | ||
36 |