Skip to content

Commit

Permalink
Version 1.1.2
Browse files Browse the repository at this point in the history
- Popup buttons are now not disabled when annoy mode is on (same behaviour as options page)
  • Loading branch information
eero-lehtinen committed Apr 22, 2019
1 parent e8d5ea1 commit 186be6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function selectSet(id) {
$("p.yt").first().show();
}

if (blocksetTimesElapsed[id] >= blocksetDatas[id].timeAllowed) {
if (blocksetTimesElapsed[id] >= blocksetDatas[id].timeAllowed && blocksetDatas[id].timeAllowed != 0 && !blocksetDatas[id].annoyMode) {
$("a[id^='wl']").attr("class", "disabled");
}
else {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Dawdle block",
"short_name": "Dawdle block",
"description": "Put time limits on unproductive sites.",
"version": "1.1.1",
"version": "1.1.2",

"options_ui": {
"page": "options.html",
Expand Down
3 changes: 3 additions & 0 deletions patchNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.1.2
- Popup buttons are now not disabled when annoy mode is on (same behaviour as options page)

Version 1.1.1
- Annoy mode banner font more reliably pretty
- Firefox specific css optimization
Expand Down

0 comments on commit 186be6b

Please sign in to comment.