-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
newznab Usenet Searching Web API | ||
|
||
v0.6-NNTmux | ||
2017-01-17 | ||
v1.0-NNTmux | ||
2018-10-31 | ||
|
||
Authors: | ||
ensi [email protected] | ||
|
@@ -612,6 +612,7 @@ newznab-tmux https://github.com/NNTmux/newznab-tmux | |
2060 Movies/BluRay Full BR movies | ||
2070 Movies/DVD Full DVD movies | ||
2080 Movies/WEBDL WEB-DL movies | ||
2090 Movies/X265 x265 encoded movies | ||
3000 Audio All of audio | ||
3010 Audio/MP3 Mp3 music | ||
3020 Audio/Video Music videos | ||
|
@@ -636,6 +637,7 @@ newznab-tmux https://github.com/NNTmux/newznab-tmux | |
5060 TV/Sport Sports | ||
5070 TV/Anime Anime | ||
5080 TV/Documentary Documentaries | ||
5090 TV/X265 x265 encoded TV | ||
6000 XXX All of XXX | ||
6010 XXX/DVD Full DVD's | ||
6020 XXX/WMV WMV rips | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Add new x265 categories into movies and tv | ||
INSERT IGNORE INTO categories (id, title, parentid) VALUES (2090, 'X265', 2000); | ||
INSERT IGNORE INTO categories (id, title, parentid) VALUES (5090, 'X265', 5000); |