File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed
Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -9,26 +9,35 @@ It basically keeps track of any consecutive keystrokes within 500ms or since the
99Chrome Webstore Link:
1010https://chrome.google.com/webstore/detail/auto-text-expander-for-go/iibninhmiggehlcdolcilmhacighjamp?hl=en-US
1111
12- Known Issues:
12+ ## Known Issues
1313 - I can't get this to work in Google Docs due to how Docs is architected. T_T
1414 - Similarly, Facebook comments is unavailable due to ReactJS's system.
15- - Also, this doesn't work in Google Hangouts due to its security policies.
15+ - Also, this doesn't work in Google Hangouts due to cross-origin policies.
1616
17- Technologies Used:
17+ ## Technologies Used
1818 - jQuery
1919 - Moment.js
2020 - Chrome's Sync Storage (shortcuts are synced across browsers)
2121
22- Feature Requests:
22+ ## Feature Requests
2323 - Localizing the extension
2424 - Date Arithmetic
2525 - Opera extension version
2626
27+ ## Updating Instructions
28+ When releasing a new version, please update the following with the version number:
29+ - manifest.json [ for json key "version"]
30+ - constants.js [ for variable APP_VERSION]
31+ - background.js [ function processingVersionUpgrade()]
32+ - README.md [ version history section]
33+
34+
2735Hope this is useful to someone out there; would love any help optimizing and improving on it. Feel free to help contribute and expand on this project!
2836
2937
3038. Carlin
3139
40+
3241## Version History
3342v1.8.2
3443 - Fix for Salesforce support (was cutting short attaching listeners to new iframes).
Original file line number Diff line number Diff line change @@ -395,6 +395,8 @@ function processVersionUpgrade(oldVersion)
395395
396396 case '1.7.1' :
397397 case '1.8.0' :
398+ case '1.8.1' :
399+ case '1.8.2' :
398400 default :
399401 upgradeShortcutsToLatest ( ) ;
400402 }
You can’t perform that action at this time.
0 commit comments