Skip to content

Commit

Permalink
fix: remove version check for cookie config option (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
sereneblue committed Jun 29, 2022
1 parent e268af6 commit 6029758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"browser_specific_settings": {
"gecko": {
"id": "{3579f63b-d8ee-424f-bbb6-6d0ce3285e6a}",
"strict_min_version": "59.0a1",
"strict_min_version": "68.0a1",
"update_url": "https://raw.githubusercontent.com/sereneblue/chameleon/develop/.github/workflows/dev/updates.json"
}
},
Expand Down
4 changes: 1 addition & 3 deletions src/popup/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@
<option value="allow_visited" v-t="'popup-options-cookiePolicy-allowVisited.message'"></option>
<option value="reject_all" v-t="'popup-options-cookiePolicy-rejectAll.message'"></option>
<option value="reject_third_party" v-t="'popup-options-cookiePolicy-rejectThirdParty.message'"></option>
<option value="reject_trackers" v-show="tmp.store.version >= 64" v-t="'popup-options-cookiePolicy-rejectTrackers.message'"></option>
<option value="reject_trackers" v-t="'popup-options-cookiePolicy-rejectTrackers.message'"></option>
<option
value="reject_trackers_and_partition_foreign"
v-show="tmp.store.version >= 78"
Expand Down Expand Up @@ -829,7 +829,6 @@ export default class App extends Vue {
},
profile: '',
screenSize: '',
version: '',
},
};
Expand Down Expand Up @@ -1035,7 +1034,6 @@ export default class App extends Vue {
this.tmp.intervalMin = this.settings.profile.interval.min;
this.tmp.rangeFrom = this.settings.headers.spoofIP.rangeFrom;
this.tmp.rangeTo = this.settings.headers.spoofIP.rangeTo;
this.tmp.store.version = parseInt(this.tmp.store.version) as any;
}
async getCurrentPage() {
Expand Down

0 comments on commit 6029758

Please sign in to comment.