Skip to content

Commit

Permalink
5.15.1 - Release - fixed #333
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRaven2000 committed Dec 22, 2022
1 parent a8d4fdb commit d410a78
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
5 changes: 3 additions & 2 deletions chrome/content/quickfolders-interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -6320,8 +6320,9 @@ QuickFolders.Interface = {
// =============
// MENU FONT SIZE
// [issue 329] inconsistent menu font size
styleEngine.setElementStyle(ss, "#QuickFolders-FoldersBox .QuickFolders-folder-popup * > label", "font-size", prefs.ButtonFontSize + "px");
styleEngine.setElementStyle(ss, "#QuickFolders-Category-Box popupset * > label", "font-size", prefs.ButtonFontSize + "px");
let newFontSize = prefs.ButtonFontSize || 12; // default value, 0!
styleEngine.setElementStyle(ss, "#QuickFolders-FoldersBox .QuickFolders-folder-popup * > label", "font-size", newFontSize + "px");
styleEngine.setElementStyle(ss, "#QuickFolders-Category-Box popupset * > label", "font-size", newFontSize + "px");


// =================
Expand Down
5 changes: 4 additions & 1 deletion chrome/content/quickfolders.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,14 @@ END LICENSE BLOCK */
## [issue 322] Tabs for Unified folders can falsely be reported as invalid
## Added message for Russian users to get in touch to receive a license.
5.15 QuickFolders Pro - WIP
5.15 QuickFolders Pro - 22/12/2022
## [issue 328] quickMove: Moving emails from different source folders doesn't remove them from the queue
## [issue 315] Remove the term 'Orphaned Tabs' in all User Interface texts
## Modifications to code for triggering filter assistant to avoid "monkey patching"
## (overwriting) Thunderbird internal functions.
5.15.1 QuickFolders Pro - 22/12/2022
## [issue 333] (regression from #328) All Text in popup menus (subfolders / commands) is missing
Future Work
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"gecko" : {
"id" : "[email protected]",
"strict_min_version" : "91.0",
"strict_max_version" : "107.0"
"strict_max_version" : "108.0"
}
},
"author": "Axel Grude, Klaus Buecher/opto",
"name" : "QuickFolders",
"description" : "__MSG_extensionDescription__",
"version" : "5.15",
"version" : "5.15.1",
"default_locale": "en",
"developer" : {
"name" : "Axel Grude",
Expand Down
6 changes: 4 additions & 2 deletions release-notes.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<b>Release 5.15</b>
Please note that <b>QuickFolders is compatible with the latest version of Thunderbird (102.6.0)</b> - if you get a message that says otherwise after updating from earlier versions (e.g. Tb91) or <b>if QuickFolders cannot be enabled</b> with the blue slider, simply remove it and reinstall it via "Find more Add-ons" search box on the Extensions tab of Add-ons Manager.
<b>Release 5.15.1</b>
Please note that <b>QuickFolders is compatible with the latest version of Thunderbird (102.6.1)</b> - if you get a message that says otherwise after updating from earlier versions (e.g. Tb91) or <b>if QuickFolders cannot be enabled</b> with the blue slider, simply remove it and reinstall it via "Find more Add-ons" search box on the Extensions tab of Add-ons Manager.


To support QuickFolders, please <a href="http://sites.fastspring.com/quickfolders/product/quickfolders?referrer=atn-version-page">buy a QuickFolders Pro license</a> here.
Expand All @@ -14,11 +14,13 @@
<ul>
<li> <a href="https://github.com/RealRaven2000/QuickFolders/issues/315">[issue 315]</a> Remove the term 'Orphaned Tabs' in all User Interface texts</li>
<li> Modifications to internal code for triggering the quickFilters filter assistant to avoid "monkey patching" (overwriting) Thunderbird internal functions. These changes are needed from the next version of quickFilters (5.7 and higher) onwards to avoid duplicate prompts for filter creation. </li>
<li> Set max version to Thunderbird 108 for users of beta version. </b>
</ul>

<b>Bugs Fixed</b>
<ul>
<li> <a href="https://github.com/RealRaven2000/QuickFolders/issues/328">[issue 328]</a> Fixed: Using quickMove to move emails from different source folders didn't remove them from the menu </li>
<li> <a href="https://github.com/RealRaven2000/QuickFolders/issues/333">[issue 333]</a> 5.15.1 A regression caused all text in popup menus (subfolders / commands) to appear missing for most users. This was because of the default size of 0 being falsely applied as a literal value. </li>
</ul>


0 comments on commit d410a78

Please sign in to comment.