Skip to content

Commit

Permalink
Merge pull request #95 from artem-solovev/bugfix/NOTASK-fixes-for-links
Browse files Browse the repository at this point in the history
Bugfix/notask fixes for links
  • Loading branch information
kas-elvirov authored Jun 7, 2020
2 parents 5a12445 + 47be814 commit 429456c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
APP_VERSION=8.2.9
APP_VERSION=8.2.12
PAYPAL_URL=https://www.paypal.me/ArtemSolovev
OPENCOLLECTIVE_URL=https://opencollective.com/artem-solovev
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ___

## History
### Version:
- current: 8.2.10 ( 2020, 6 june )
- current: 8.2.12 ( 2020, 7 june )
- initial: 2.0.1 ( 2017, 12 february )

I made this program in the Russian Army while I was on duty. I was coding as fast as i could )))
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"short_name": "__MSG_shortName__",
"author": "__MSG_author__",
"description": "__MSG_description__",
"version": "8.2.9",
"version": "8.2.12",
"browser_action": {
"default_icon": "img/icon128.png",
"default_popup": "index.html",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gloc",
"version": "8.2.10",
"version": "8.2.12",
"description": "Extension counts the number of lines of code in GitHub pages.",
"author": "Artem Solovev",
"license": "GPL-2.0",
Expand All @@ -25,7 +25,7 @@
"zip": "grunt",
"build:prod": "webpack --config webpack.config.prod && grunt",
"build:dev": "webpack --config webpack.config.dev && grunt",
"version:up": "npm version patch --no-git-tag-version --force && git add package.json package-lock.json && node ./scripts/upAppVersion.js"
"version:up": "npm version patch --no-git-tag-version --force && node ./scripts/upAppVersion.js && git add package.json package-lock.json .env manifest.json"
},
"husky": {
"hooks": {
Expand Down
3 changes: 3 additions & 0 deletions scripts/upAppVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const manifest = require('../manifest.json');
const sourcePath = '.env'
let parsedFile = envfile.parse(sourcePath);
parsedFile.APP_VERSION = package.version;
parsedFile.PAYPAL_URL = 'https://www.paypal.me/ArtemSolovev'; // TEMP
parsedFile.OPENCOLLECTIVE_URL = 'https://opencollective.com/artem-solovev'; // TEMP

fs.writeFileSync('./.env', envfile.stringify(parsedFile));

// update manifest
Expand Down

0 comments on commit 429456c

Please sign in to comment.