Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Sep 10, 2023
1 parent 8664b18 commit 525f8ae
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

<div>
<div class="line flex">
<h2>1.0.57</h2>
<h2>1.0.58</h2>
<ul>
<li>Improved shared settings</li>
<li>Made Watch Credits inverse of Skip Credits</li>
Expand Down Expand Up @@ -352,7 +352,7 @@ All notable changes to this project will be documented in this file.
</div>
</div>
<div class="line flex">
<h2>1.0.57</h2>
<h2>1.0.58</h2>
<ul>
<li>Fixed chrome pop-up wrong width</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.57",
"version": "1.0.58",

"homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip",
"icons": {
Expand Down
4 changes: 2 additions & 2 deletions chrome/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="font-size: 1em">v.1.0.57</p>
<p style="font-size: 1em">v.1.0.58</p>
</div>
</div>
<a
Expand Down Expand Up @@ -613,7 +613,7 @@ <h2 i18n>ImportSettings</h2>
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.57</h2>
<h2>1.0.58</h2>
<ul>
<li>Improved Freevee Ad skip</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion chrome/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let isHotstar = /hotstar/i.test(hostname);

let isEdge = /edg/i.test(ua);
let isFirefox = /firefox/i.test(ua);
const version = "1.0.57";
const version = "1.0.58";
if (isPrimeVideo || isNetflix || isDisney || isHotstar) {
// global variables in localStorage
const defaultSettings = {
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.57",
"version": "1.0.58",
"homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip",
"icons": {
"16": "icons/NetflixAmazon Auto-Skip.svg",
Expand Down
2 changes: 1 addition & 1 deletion firefox/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="color: grey; font-size: 1em">v.1.0.57</p>
<p style="color: grey; font-size: 1em">v.1.0.58</p>
</div>
</div>
<a target="_blank" class="flex-center flex-col" style="text-align: center; text-decoration: none" href="https://addons.mozilla.org/de/firefox/addon/netflix-prime-auto-skip/">
Expand Down
4 changes: 2 additions & 2 deletions firefox/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="font-size: 1em">v.1.0.57</p>
<p style="font-size: 1em">v.1.0.58</p>
</div>
</div>
<a target="_blank" class="flex-center flex-col" style="text-align: center; text-decoration: none" href="https://addons.mozilla.org/de/firefox/addon/netflix-prime-auto-skip/">
Expand Down Expand Up @@ -608,7 +608,7 @@ <h2 i18n>ImportSettings</h2>
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.57</h2>
<h2>1.0.58</h2>
<ul>
<li>Improved Freevee Ad skip</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion firefox/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let isHotstar = /hotstar/i.test(hostname);

let isEdge = /edg/i.test(ua);
let isFirefox = /firefox/i.test(ua);
const version = "1.0.57";
const version = "1.0.58";
if (isPrimeVideo || isNetflix || isDisney || isHotstar) {
// global variables in localStorage
const defaultSettings = {
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streaming-enhanced",
"version": "1.0.57",
"version": "1.0.58",
"description": "Automatically skip Ads, Intros, Recaps, Credits, etc. on Netflix, Prime video and Disney+ & Hotstar.",
"scripts": {
"start": "web-ext run --source-dir ./firefox/",
Expand Down

0 comments on commit 525f8ae

Please sign in to comment.