Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Bump to version 1.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
mebeim committed Sep 19, 2018
1 parent 4170c8c commit fb52e12
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ Stream Locker Changelog
Versions
--------

### [1.0.2][v1.0.2] — 2018-09-19

Small improvements and fiexes.

- Global "Extension enabled" option now fully disables the extension if set to "OFF".
- Sites can now either be "enabled" or "disabled", no more "default" for this value.
- Made input fields in the options page easier to use.
- The extension now correctly recognizes newly added and removed sites which already loaded without having to reload their tabs.
- Extension's description has been updated.
- Minor style and bug fixes in the options page.

Developer notes:

Looks like FireFox doesn't support `word-break: break-word`. Also, there may be a bug with the way `contenteditable` elements are handled, the caret is sometimes placed in a strange position.

### [1.0.1][v1.0.1] — 2018-07-13

Bug fixes.
Expand Down Expand Up @@ -95,6 +110,7 @@ First public release.
------------------------------------------------------------------------------------------
*Copyright © 2017 Marco Bonelli. Licensed under the GNU General Public License v3.0.*

[v1.0.2]: https://github.com/mebeim/stream-locker/releases/tag/v1.0.2
[v1.0.1]: https://github.com/mebeim/stream-locker/releases/tag/v1.0.1
[v1.0.0]: https://github.com/mebeim/stream-locker/releases/tag/v1.0.0
[v0.1.1-beta]: https://github.com/mebeim/stream-locker/releases/tag/v0.1.1-beta
Expand Down
16 changes: 8 additions & 8 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,16 +355,16 @@ def deploy(tag_name, target, build_dir, prerelease):
}

if __name__ == '__main__':
ENV_GH_TOKEN = os.getenv('GH_OAUTH_TOKEN')
ENV_GH_RELEASE_BASENAME = os.getenv('GH_RELEASE_BASENAME')
ENV_GH_RELEASE_BRANCH = os.getenv('GH_RELEASE_BRANCH')
ENV_GH_TOKEN = os.getenv('GH_OAUTH_TOKEN')
ENV_GH_RELEASE_BASENAME = os.getenv('GH_RELEASE_BASENAME')
ENV_GH_RELEASE_BRANCH = os.getenv('GH_RELEASE_BRANCH')

ENV_AMO_JWT_ISSUER = os.getenv('AMO_JWT_ISSUER')
ENV_AMO_JWT_SECRET = os.getenv('AMO_JWT_SECRET')
ENV_AMO_JWT_ISSUER = os.getenv('AMO_JWT_ISSUER')
ENV_AMO_JWT_SECRET = os.getenv('AMO_JWT_SECRET')

ENV_TRAVIS_BRANCH = os.getenv('TRAVIS_BRANCH')
ENV_TRAVIS_PR = os.getenv('TRAVIS_PULL_REQUEST')
ENV_TRAVIS_REPO_SLUG = os.getenv('TRAVIS_REPO_SLUG')
ENV_TRAVIS_BRANCH = os.getenv('TRAVIS_BRANCH')
ENV_TRAVIS_PR = os.getenv('TRAVIS_PULL_REQUEST')
ENV_TRAVIS_REPO_SLUG = os.getenv('TRAVIS_REPO_SLUG')

args = get_args()
git_repo = git.Repo()
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Stream Locker",
"description": "Block annoying popups and load streaming sites videos in the lightweight native HTML5 player.",
"homepage_url": "https://github.com/mebeim/stream-locker",
"version": "1.0.1",
"version": "1.0.2",
"author": "Marco Bonelli",

"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
Expand Down

0 comments on commit fb52e12

Please sign in to comment.