Skip to content

Commit 2a1f8bb

Browse files
committed
1.17.4 - Update omgwtfnzbs tld
1 parent a85942b commit 2a1f8bb

5 files changed

Lines changed: 20 additions & 15 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The toolbar popup shows statistics and controls for the currently active profile
7474

7575
## 1-Click Site Downloads
7676

77-
The following sites are currently supported for 1-click downloads: dognzb.cr, nzbgeek.info, and omgwtfnzbs.me. An icon identical to the toolbar icon will be shown next to any NZB that can be downloaded. More sites are currently planned, but please put in a feature request if your favorite site is not supported (or even better, build an adapter and submit it as a pull-request).
77+
For sites which have 1-click download enabled, a green NZB icon will be shown next to any NZB that can be downloaded. No more custom sites are currently planned, but please put in a feature request if your favorite site is not supported (or even better, build an adapter and submit it as a pull-request).
7878

7979
## Building
8080

package-lock.json

Lines changed: 12 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nzbunity",
3-
"version": "1.17.3",
3+
"version": "1.17.4",
44
"license": "MPL-2.0",
55
"description": "Send and control NZB files directly with SABnzbd or NZBGet download clients.",
66
"author": "tumblfeed@gmail.com",
@@ -12,10 +12,11 @@
1212
"url": "https://github.com/tumblfeed/nzbunity"
1313
},
1414
"scripts": {
15-
"gulp": "gulp",
15+
"start": "gulp watch",
1616
"build": "gulp build",
1717
"dist": "gulp dist",
18-
"watch": "gulp watch"
18+
"watch": "gulp watch",
19+
"gulp": "gulp"
1920
},
2021
"browserslist": [
2122
"last 2 versions",

src/content/sites/omgwtfnzbs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class NZBUnityOmgwtfnzbs {
1414
if (enabled) {
1515
console.info(`[NZB Unity] Initializing 1-click functionality...`);
1616

17-
this.apiurl = `${window.location.protocol}//api.omgwtfnzbs.me/nzb/`;
17+
this.apiurl = `${window.location.protocol}//api.omgwtfnzbs.org/nzb/`;
1818
this.username = this.getUsername();
1919
this.apikey = this.getApiKey();
2020

src/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "NZB Unity",
4-
"version": "1.17.3",
4+
"version": "1.17.4",
55
"author": "tumblfeed@gmail.com",
66
"description": "Send and control NZB files directly with SABnzbd or NZBGet download clients.",
77
"background": {
@@ -123,7 +123,7 @@
123123
"js": ["content/sites/nzbsu.js"]
124124
},
125125
{
126-
"matches": ["*://*.omgwtfnzbs.me/*"],
126+
"matches": ["*://*.omgwtfnzbs.org/*", "*://*.omgwtfnzbs.me/*"],
127127
"js": ["content/sites/omgwtfnzbs.js"]
128128
},
129129
{

0 commit comments

Comments
 (0)