Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dguo committed Aug 11, 2017
1 parent 1f51877 commit 287ef01
Show file tree
Hide file tree
Showing 21 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.3.0] - 2017-08-10
### Added
- Firefox support

Expand Down Expand Up @@ -35,6 +37,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
### Added
- Initial implementation

[Unreleased]: https://github.com/dguo/pawblock/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/dguo/pawblock/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/dguo/pawblock/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/dguo/pawblock/compare/v0.1.0...v0.2.0
[landing page]: https://dannyguo.com/pawblock
7 changes: 4 additions & 3 deletions dev
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ def release(args, remaining):
exit(1)
if raw_input('Did you update the changelog [y/n]? ').lower() != 'y':
exit(1)
with zipfile.ZipFile('pawblock-chrome.zip', 'w',
with zipfile.ZipFile('pawblock.zip', 'w',
zipfile.ZIP_DEFLATED) as handle:
os.chdir('chrome')
os.chdir('extension')
for root, dirs, files in os.walk('.'):
for file in files:
handle.write(os.path.join(root, file))
if file != '.DS_Store':
handle.write(os.path.join(root, file))
print('Upload the new zip file in the Chrome Web Store developer dashboard')
print('https://chrome.google.com/webstore/developer/edit/jngmmiaolbliepfphdnelgfcclpnkoja')
parser_release = subparsers.add_parser('release', help='Help release an update')
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions chrome/manifest.json → extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"manifest_version": 2,
"name": "PawBlock",
"version": "0.2.0",
"version": "0.3.0",
"description": "Block websites to prevent procrastination and execessive web surfing.",
"applications": {
"gecko": {
"id": "pawblock@dannyguo.com"
"id": "@pawblock"
}
},
"icons": {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 287ef01

Please sign in to comment.