Skip to content

Commit

Permalink
v2.5 final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanb10 committed Oct 17, 2021
1 parent d8de537 commit 7123d03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#
shitfiles = shutil.ignore_patterns('.DS_Store', '.git', '.Trashes', '.Spotlight-V100', '.github')
shutil.copytree('html', FOLDER + '/html', ignore = shitfiles)
shutil.copytree('scripts', FOLDER + '/scripts', ignore = shitfiles)
shutil.copytree('icons', FOLDER + '/icons', dirs_exist_ok=True, ignore = shitfiles)
with open(FOLDER + '/manifest.json', 'w+') as m:
m.write(json.dumps(data, indent=4))
Expand Down Expand Up @@ -68,7 +69,7 @@ def replaceInHTMLFiles(original, replacement):
file.write(data)
file.close()

minifyFilesInDirectory('scripts', '.js', 'https://www.toptal.com/developers/javascript-minifier/raw')
# minifyFilesInDirectory('scripts', '.js', 'https://www.toptal.com/developers/javascript-minifier/raw')
minifyFilesInDirectory('styles', '.css', 'https://cssminifier.com/raw')

#
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
PRs and other ideas are welcome.

## Changes ##
**August 2021**
#### 2.5.0
**October 2021**
#### 2.5
- Recurring Snooze Times!
- Duplicate Sleeping Tabs
- Selected Tabs grouped together
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Snoozz - Snooze Tabs & Windows for later",
"short_name": "Snoozz",
"description": "Declutter your browser by snoozing tabs and windows until you actually need them.",
"version": "2.5.0",
"version": "2.5",

"icons": {
"128": "icons/ext-icon-128.png",
Expand Down

0 comments on commit 7123d03

Please sign in to comment.