Skip to content

Commit 4cf4641

Browse files
authored
Release version 0.0.23 (#56)
1 parent 4ad9345 commit 4cf4641

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
node_modules
22
/dist
3+
/dist.zip
34
.DS_Store
45
.vscode
56
.env
6-
src/constants.js
7+
src/constants.js

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@
1111
Built with ❤︎
1212
</div>
1313

14+
<p align="center">
15+
<img src="https://img.shields.io/github/commit-activity/m/gitxapp/gitx" alt="Commits-per-month">
16+
<a href="http://makeapullrequest.com"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PR-Welcome"></a>
17+
<img src="https://img.shields.io/github/license/gitxapp/gitx" alt="License">
18+
19+
</p>
20+
1421
## Getting started
1522

1623
#### Clone the project
@@ -88,6 +95,8 @@ yarn client
8895
# Click on "Load unpacked" button and upload the build folder
8996
```
9097

91-
## License
98+
## Feedback & Contributing
99+
100+
Feel free to send us feedback on [Twitter](https://twitter.com/GitXApp) or [file an issue](https://github.com/gitxapp/gitx/issues).
92101

93-
MIT
102+
_Gitxapp_ &copy; 2019-2020 - Released under the MIT License.

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "GitX- Private notes for GitHub",
33
"short_name": "GitX",
4-
"version": "0.0.24",
4+
"version": "0.0.23",
55
"manifest_version": 2,
66
"description": "Chrome extension for adding private notes in Github",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "GitX",
3-
"version": "0.0.3",
3+
"version": "0.0.23",
44
"license": "MIT",
55
"description": "Chrome extension for adding private comments in Github",
66
"main": "webpack.config.js",

src/background.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,13 @@ document.addEventListener("DOMContentLoaded", () => {
4343
});
4444
checkForAuth();
4545
});
46-
// window.chrome.runtime.setUninstallURL(UN_INSTALL_URL);
46+
window.chrome.runtime.setUninstallURL(UN_INSTALL_URL);
4747
window.chrome.runtime.onInstalled.addListener(details => {
4848
if (details.reason === "install") {
49-
// window.chrome.tabs.create({ url: INSTALL_URL });
49+
window.chrome.tabs.create({ url: INSTALL_URL });
5050
}
5151
});
5252

53-
54-
chrome.runtime.onMessage.addListener(
55-
function (request, sender, sendResponse) {
56-
if (request.logout) openGithubLogout()
57-
});
53+
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
54+
if (request.logout) openGithubLogout();
55+
});

0 commit comments

Comments
 (0)