-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.12.32: Update version info. core: add unicodeToUtf8() and utf8ToUnicode() core: organize sbCommonUtils methods capture: fix wrong charset for frames prefs: tab icons now use individual images prefs: remove unused prefs prefs: fix a potential error for getPref lang: replace &#...; and &#x...; entities with normal chars. core: centralize and optimize formatFileSize() core: simplify unneeded get core: separate console to console.jsm core: separate lang to lang.jsm core: separate Shortcut to shortcut.jsm core: improve the structure of core classes
- Loading branch information
Showing
21 changed files
with
663 additions
and
559 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
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,2 +1,13 @@ | ||
Components.utils.import("resource://scrapbook-modules/common.jsm"); | ||
Components.utils.import("resource://scrapbook-modules/datasource.jsm"); | ||
/******************************************************************** | ||
* | ||
* Shared classes for most scripts. | ||
* | ||
* @public {class} sbCommonUtils | ||
* @public {class} sbDataSource | ||
* @public {class} Shortcut | ||
* | ||
*******************************************************************/ | ||
|
||
const { sbCommonUtils } = Components.utils.import("resource://scrapbook-modules/common.jsm", {}); | ||
const { sbDataSource } = Components.utils.import("resource://scrapbook-modules/datasource.jsm", {}); | ||
const { Shortcut } = Components.utils.import("resource://scrapbook-modules/shortcut.jsm", {}); |
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,6 +1,6 @@ | ||
<!ENTITY sb.thelp.dir "ltr"> | ||
<!ENTITY sb.thelp.title "Dosszié sablon HTML súgó"> | ||
<!ENTITY sb.thelp.tags "Két speciális kódelem"> | ||
<!ENTITY sb.thelp.tag1 "A jegyzet címe (első sora)"> | ||
<!ENTITY sb.thelp.tag2 "A jegyzet tartalma (a második vagy későbbi sor)"> | ||
<!ENTITY sb.thelp.preset "Előre beállított sablon"> | ||
<!ENTITY sb.thelp.title "Dosszié sablon HTML súgó"> | ||
<!ENTITY sb.thelp.tags "Két speciális kódelem"> | ||
<!ENTITY sb.thelp.tag1 "A jegyzet címe (első sora)"> | ||
<!ENTITY sb.thelp.tag2 "A jegyzet tartalma (a második vagy későbbi sor)"> | ||
<!ENTITY sb.thelp.preset "Előre beállított sablon"> |
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
<Description about="urn:mozilla:install-manifest"> | ||
<em:id>[email protected]</em:id> | ||
<em:type>2</em:type> | ||
<em:version>1.12.31</em:version> | ||
<em:version>1.12.32</em:version> | ||
<em:unpack>false</em:unpack> | ||
<em:bootstrap>false</em:bootstrap> | ||
<em:multiprocessCompatible>false</em:multiprocessCompatible> | ||
|
Oops, something went wrong.