Merge pull request #197 from wakatime/3.0.12

bump version to 3.0.12
This commit is contained in:
Alan Hamlett
2023-04-27 16:47:33 +02:00
committed by GitHub
5 changed files with 3 additions and 14 deletions

View File

@@ -64,17 +64,6 @@ jsxhint --jsx-only .
There is a precommit hook that lints the code before commiting the changes.
### Load unpacked in Chrome (current in chrome store)
1. Clone repository to disk
2. Remove `browser_specific_settings` key from manifest.json (only necessary for firefox)
3. Go to `Settings``Extensions`
4. Enable `Developer mode`
5. Click `Load unpacked extension...`
6. Select repository directory
![load reportistory directory](./screenshots/load-repo-folder.png)
### Troubleshooting
Check for errors by inspecting the extension.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

View File

@@ -351,7 +351,7 @@ class WakaTimeCore {
getOperatingSystem(): Promise<string> {
return new Promise((resolve) => {
chrome.runtime.getPlatformInfo(function(info) {
chrome.runtime.getPlatformInfo(function (info) {
resolve(`${info.os}_${info.arch}`);
});
});

View File

@@ -33,5 +33,5 @@
"page": "options.html"
},
"permissions": ["alarms", "tabs", "storage", "idle"],
"version": "3.0.11"
"version": "3.0.12"
}

View File

@@ -46,5 +46,5 @@
"storage",
"idle"
],
"version": "3.0.11"
"version": "3.0.12"
}