for apps that use Jackett as a proxy, and rely ion the existence of category, size, etc, I've populated the returned results with the missing anime category, and default values for seeders, leechers, size, downloadvolumefactor, and uploadvolumefactor.
Last commit of nordicbits.cs only supported the 'old' v2 theme.
With this new update, I have added support for the v3 theme but continue to keep the old support for v2 by looking after the .css file loaded and return the proper _fDom in FindTorrentRows...
I have also added a extended error msg, when torrents can't be found that it could be because of an unsupported theme.
* Updated categories
A lot of categories got dropped, also there are some new categories.
Additionally I updated the namings.
* Fix TV series category names
* Make ReleaseInflo class derivation friendly
* Improve releaseinfo inheritance
Ensure provider order is respected
Some season numbers were not parsed in rss mode
Remove s00e00 from movies results
* Create Nordicbits.cs
Add support for Nordicbits / DK Private Tracker
* Create ConfigurationDataNordicbits.cs
Create Nordicbits.cs
Add support for Nordicbits / DK Private Tracker
* Update README.md
Added a new tracker Nordicbits
* Update Nordicbits.cs
The self-tester didn't work, because of the trackers use of 'Today' and 'Yesterday' in releases. Where other releases are "MMM dd yyyy".
This is fixed now.
* Update Nordicbits.cs
Search string wasn't build proberly, due to the catagory of nordicbits.
The images, which we use to determin which catagory the release is from goes like this -
cat=5
But when we need to search under that catagory and have more than one, it should go like this -
cats2[]=5
Changed the categorieslist, by using replace and changed the query string to match the original search string.
* Update Nordicbits.cs
Should solve the bug - The string was not recognized as a valid DateTime. There is an unknown word starting at index 0.
* Update Nordicbits.cs
Tracker don't support imdb, therefore problems with handling of couchpotato, radarr or similar.
Fixed by setting imdb to false;
* feat(newpct): rename title to make them more standarized
* fix: add site link configurable
* feat: add tests if news are not available
Sometimes the web has no news, and even if the tv show searcher is
working it throws an error. This way it will check news, and, if not
available, will check some series to check aliveness.
* fix: remove apostrophes from search
closes#3315
* fix: initialize search term if it's null
* fix: add multiepisode parsing and minor improvements
Now a quality it's ensured
Now quality it's cleaned from brackets
Add dash as multiepisode separator
* refactor: move tv search to function and change site link
Sitelink is now a property class
* refactor: extract function to get series uris
* refactor: extract function to get releases from one uri
* feat: add fallback to shows starting with "the"
Whenever a shows doesn't return results and doesn't start with "the"
search one more time prepending "the".
The motivation of this is because of Sonarr sanitizes queries before
sending them to Jackett. This indexer needs the article but Sonarr
removes it before.
* fix(newpct): add missing guid based on link
That was causing missing files on applications consuming the newpct
indexer.
* feat(mejortorrent): add movie search
closes: #3310
* feat(mejortorrent): add parse and filter by year
* feat(mejortorrent): change movie search algorithm
Now movie search is based on longest word, then results are filtered
ignoring special characters.
* fix(mejortorrent): restore query so jackett log it correctly
* fix: add small year correction
Some movies are tagged with the year before or after, I think it's safe to
fix years with exactly the same name and only a year of difference.
* refactor: move tv search to function and change site link
Sitelink is now a property class
* refactor: extract function to get series uris
* refactor: extract function to get releases from one uri
* feat: add fallback to shows starting with "the"
Whenever a shows doesn't return results and doesn't start with "the"
search one more time prepending "the".
The motivation of this is because of Sonarr sanitizes queries before
sending them to Jackett. This indexer needs the article but Sonarr
removes it before.