File tree 2 files changed +15
-4
lines changed
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
9
9
Chrome Webstore Link:
10
10
https://chrome.google.com/webstore/detail/auto-text-expander-for-go/iibninhmiggehlcdolcilmhacighjamp?hl=en-US
11
11
12
- Known Issues:
12
+ ## Known Issues
13
13
- I can't get this to work in Google Docs due to how Docs is architected. T_T
14
14
- 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.
16
16
17
- Technologies Used:
17
+ ## Technologies Used
18
18
- jQuery
19
19
- Moment.js
20
20
- Chrome's Sync Storage (shortcuts are synced across browsers)
21
21
22
- Feature Requests:
22
+ ## Feature Requests
23
23
- Localizing the extension
24
24
- Date Arithmetic
25
25
- Opera extension version
26
26
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
+
27
35
Hope 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!
28
36
29
37
30
38
. Carlin
31
39
40
+
32
41
## Version History
33
42
v1.8.2
34
43
- 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)
395
395
396
396
case '1.7.1' :
397
397
case '1.8.0' :
398
+ case '1.8.1' :
399
+ case '1.8.2' :
398
400
default :
399
401
upgradeShortcutsToLatest ( ) ;
400
402
}
You can’t perform that action at this time.
0 commit comments