Mark McDowall
ed140dd396
Revert argument exception swallowing for Plex library update
2 years ago
Stepan Goremykin
c35308b32b
Update chrome driver and swagger
2 years ago
Stepan Goremykin
e4dde10a3f
Update Selenium.Support package
2 years ago
Stepan Goremykin
951a9ade00
Update FluentAssertions
2 years ago
Stepan Goremykin
fd5d279a9e
Update SharpZipLib
2 years ago
Stepan Goremykin
028c87d20c
Update test packages in build props instead of csproj
2 years ago
Stepan Goremykin
b303dc899a
Update Newtonsoft.Json
2 years ago
Stepan Goremykin
cf22208011
Update packages related to auto tests
2 years ago
Stepan Goremykin
3b6cadeb7e
Update packages from microsoft
2 years ago
Mark McDowall
0a13a433a9
New: Parsing of more German WEBDL releases
...
Closes #5507
2 years ago
Mark McDowall
ff2e8ffc37
Fixed: Permissions after installing on Windows and opening Firewall port
...
Closes #5509
2 years ago
Stepan Goremykin
11d91faaad
Use Array.Empty and fix a few multiple enumerations
2 years ago
Mark McDowall
c41aec5f77
Fixed: Pushed releases should be stored as pushed release
2 years ago
Mark McDowall
b8dcd75cf5
Fixed: Refreshing Plex library on a different OS
2 years ago
Mark McDowall
cef6d5a99a
Fixed: Imports when custom format is a downgrade, but file is an upgrade
2 years ago
lodu
5d09b84b05
New: Add indexer option for Discord on grab notifications
2 years ago
Mark McDowall
3d24e412a6
Better quality revision logging
2 years ago
Mark McDowall
4ff4d32936
New: Improve accepted and rejected release logging
...
Closes #4965
Closes #4646
2 years ago
Mark McDowall
98308737cf
New: Improved Plex library updating
2 years ago
Mark McDowall
bd228e88c3
New: Rescan series if destination file already exists during import
...
Closes #5401
2 years ago
Mark McDowall
978618f041
New: Don't import episodes that don't match grab history
...
Closes #5073
2 years ago
Mark McDowall
8d70def088
New: Include series year with custom scripts and webhooks
...
Closes #5439
2 years ago
Mark McDowall
c80c1db947
New: Parse HBOMaxHD as WEBDL
...
Closes #5489
2 years ago
Mark McDowall
cfcf1ad1ab
Fixed: Page Plex Watchlist results
...
Closes #5118
2 years ago
Mark McDowall
17b9e4722a
New: Parsing of poorly named absolute number-only files in batches
...
Closes #5488
2 years ago
Mark McDowall
f22998aef3
Use episode runtime for size limits when available
...
Closes #3482
2 years ago
Qstick
a42f97229a
Convert method to static that doesn't use instance data
2 years ago
Qstick
412a36226f
Add .globalconfig
2 years ago
Qstick
2b79fe833b
Use Contains(char) instead of Contains(string) for performance
2 years ago
Qstick
4db10e6283
Prefer AsSpan to Substring to avoid unnecessary allocation
2 years ago
Qstick
e8aff90582
Use span-based string.Concat to avoid unnecessary allocation
...
Calling Substring produces a copy of the extracted substring. By using AsSpan instead of Substring and calling the overload of string.Concat that accepts spans, you can eliminate the unnecessary string allocation.
2 years ago
Qstick
af28bbad52
Use Environment.CurrentManagedThreadId for efficiency
...
System.Environment.CurrentManagedThreadId is a compact and efficient replacement of the Thread.CurrentThread.ManagedThreadId pattern.
2 years ago
Qstick
f928ee7cad
Use Environment.ProcessPath instead of GetCurrentProcess().MainModule.FileName
...
GetCurrentProcess().MainModule.FileName is expensive, Environment.ProcessPath added in net6
2 years ago
Qstick
7521579bca
Use Apend(char) instead of Apend(string) for performance
...
When calling StringBuilder.Append with a unit length string, consider using a const char rather than a unit length const string to improve performance.
2 years ago
Qstick
e805f61450
Use Length/Count property instead of Count() method to prevent enumerating
2 years ago
Qstick
4fe9daec03
Use Any() in place of Count() to prevent enumerating
...
This rule flags the Count and LongCount LINQ method calls used to check if the collection has at least one element. These method calls require enumerating the entire collection to compute the count. The same check is faster with the Any method as it avoids enumerating the collection.
2 years ago
Qstick
738dc2c98c
Do not use Enumerable methods on indexable collections
...
This rule flags the Enumerable LINQ method calls on collections of types that have equivalent but more efficient properties to fetch the same data.
2 years ago
Qstick
0ed8ba828d
Avoid unnecessary zero-length array allocations
2 years ago
Qstick
b2c2c79a96
Don't compare strings to Empty using Equals
...
Comparing strings using the String.Length property or the String.IsNullOrEmpty method is faster than using Equals. This is because Equals executes significantly more MSIL instructions than either IsNullOrEmpty or the number of instructions executed to retrieve the Length property value and compare it to zero.
2 years ago
Qstick
08ee2f7e32
Remove unnecessary assignments to default type value
...
The .NET runtime initializes all fields of reference types to their default values before running the constructor. In most cases, explicitly initializing a field to its default value in a constructor is redundant, adding maintenance costs and potentially degrading performance
2 years ago
Qstick
42e45f93ac
Use const where appropriate
...
The value of a const field is computed at compile time and stored in the metadata, which improves run-time performance when it is compared to a static readonly field.
2 years ago
Qstick
b4d8f0c311
Enable all analyzers and enforce code style on build
2 years ago
Stevie Robinson
21045127cd
Fixed: Parsing of multi season packs with only space between the season numbers
2 years ago
Mark McDowall
d496733b31
Fixed: Don't import Custom Format downgrades
...
Closes #5475
2 years ago
Mark McDowall
b3d1e4f520
Fixed: Multiple Downloaded Episodes Scan commands should not run in parallel
2 years ago
Mark McDowall
cd67671bc1
Fixed: Slow loading of files in Manage Episodes modal
...
Closes #5449
2 years ago
Mark McDowall
ac806a2933
New: Show downloading status for series progress bar
...
Closes #5474
2 years ago
Mark McDowall
6d88a98282
New: Plex Watchlist RSS support
2 years ago
cicomalieran
9800bd6b43
Fixed: Processing very long ETA from Transmission
...
Closes #5444
2 years ago
Sergey M
255f947860
Fixed: Mapping of parsed titles when one doesn't have an alias
...
Co-authored-by: Sergey M <msergein>
2 years ago
bakerboy448
92ecb30fab
Fixed: Regression in error message logging
...
Closes #5461
2 years ago
bakerboy448
e968919e63
Fixed: Improve some request failure messaging
2 years ago
Mark McDowall
bd3816dac9
Handle null for parent name with clean path is empty
2 years ago
Mark McDowall
95a8f59a32
Fixed: Don't handle images in metadata folder as Roksbox images
2 years ago
Mark McDowall
890f107467
New: Support for .plexmatch series metadata files
...
Closes #4960
2 years ago
Mark McDowall
6740257135
New: Add Episode Guide option for Kodi MetadataFile
...
Closes #5415
2 years ago
Mark McDowall
bbd9b1657d
Fixed: Don't clean Kodi library if video is playing and Always Update is disabled
...
Closes #5387
2 years ago
Mark McDowall
cf00fecbe4
Fixed: Don't grab propers/repacks when item in queue meets cutoff and propers/repacks are not downloaded automatically
...
Closes #1208
2 years ago
Qstick
5a22afc42b
Fixed broken path tests
2 years ago
Mark McDowall
75378f7bde
Fixed: USB drives mounted to folders are treated as different mounts
...
Closes #4147
2 years ago
Mark McDowall
997aabbc3c
Improve CF calculation for files without scene name
...
Fixed: Use original filename instead of complete path when calculating CF for existing file without scene name
Closes #5365
2 years ago
Mark McDowall
2c65e4fa41
Fixed: Prevent getting disk space from returning no information when it partially fails
...
Closes #5247
2 years ago
Qstick
9c1fd7c73e
Bump MonoTorrent to 2.0.7
...
Pulls in fix for parsing torrents when certain values are an empty string
2 years ago
Mark McDowall
27cc551980
Updated API documents
2 years ago
Mark McDowall
d2cd3f7716
Rename LocalizationLanguageResource to avoid collision with LanguageResource
2 years ago
bakerboy448
ddb25b1095
New: Use better page size for Newznab/Torznab (up to 100) when supported by the indexer
...
Closes #5373
2 years ago
Mark McDowall
303fc5d786
New: Return static response to requests while app is starting
...
Closes #5402
2 years ago
Qstick
a379d0c403
Fixed: Settings fail to save for some auth setups
2 years ago
Mark McDowall
72b307f4ad
Fixed: Using absolute episode number in Standard Format for episode without while renaming
2 years ago
Mark McDowall
69f325b9dd
SeriesFolderFormat needs to be OS Agnostic
2 years ago
Mark McDowall
81d2b18ce1
New: Use Series Folder Format to improve unmapped folders within root folders
2 years ago
Mark McDowall
119addd75f
Fixed: Migrating case-sensitive Preferred Word REGEX to Custom Formats
...
Closes #5399
2 years ago
Xavier Xiong
0f111dd066
Fixed: Chinese Anime releases that include a season number
2 years ago
Stevie Robinson
e29470d8cb
Fixed: Enable parsing of repacks with revision
...
Closes #5383
2 years ago
bakerboy448
83f6359063
New: Improve Manual Import logging when not parsing files
2 years ago
Mark McDowall
ad42d4a14c
Fixed: Ping endpoint no longer requires authentication
...
Closes #5396
2 years ago
Qstick
faccfe17a2
Remove debug code in CleanupQualityProfileFormatItems
2 years ago
Qstick
f05e109b50
Fixed: Avoid Sqlite Error when all profiles have lowest quality cutoff
2 years ago
Stevie Robinson
3973571411
New: Added new series title rename tokens without year
...
Closes #5369
2 years ago
bakerboy448
863d24996c
New: Improve messaging when imports are left in queue
2 years ago
PearsonFlyer
1b599c7e76
Fix notifiation in Ntfy on test from Radarr to Sonarr
2 years ago
Mark McDowall
0fbf61199f
Fixed: Parsing of some files with series title aliases
2 years ago
Mark McDowall
b848100693
Fixed: Images for some series not downloading
...
Closes #5376
2 years ago
Qstick
c08b451564
Bump ImageSharp to 2.1.3
2 years ago
Mark McDowall
6dcfc661a1
New: Show updated Custom Format Score in history
2 years ago
Mark McDowall
68d026479f
New: Add custom format info to episode import notifications
2 years ago
Mark McDowall
899d6ddbab
Fixed: Store Custom Format score during import
...
Closes #5291
2 years ago
Mark McDowall
4ed4ca4804
New: Add bypass if above Custom Format Score to Delay Profile
...
Closes #5043
2 years ago
Mark McDowall
bc2942c28d
New: Don't block imports when release was matched by ID if they were grabbed via interactive search
...
Closes #5043
2 years ago
Mark McDowall
599ad86657
New: Use file's format title for quality if parsed
...
Closes #3930
2 years ago
Mark McDowall
3f598ffa6f
Fixed: UTC time sent to UI for already imported message
...
Closes #5366
2 years ago
Mark McDowall
67035b9266
Fixed: Monitoring episodes modal not closing after saving
2 years ago
Mark McDowall
4b4301a076
Fixed: Quality Profiles resetting Custom Format scores during housekeeping
...
Closes #5359
2 years ago
Mark McDowall
2c004e1f96
Fixed: Unable to load UI if Quality Profiles contain removed Custom Format items
2 years ago
Mark McDowall
ea612e8b78
Revert "Fixed: Unable to load UI if Quality Profiles contain removed Custom Format items"
...
This reverts commit facf775a43
.
2 years ago
Xavier Xiong
f742e1f174
Fixed: Chinese releases with season and absolute episode numbers
2 years ago
Mark McDowall
facf775a43
Fixed: Unable to load UI if Quality Profiles contain removed Custom Format items
...
Closes #5323
2 years ago
Qstick
4a740acb80
New: Simkl List Support ( #5313 )
...
* New: Simkl List Support
* fixup! smarter sync
* fixup! comments
* fixup! comments
2 years ago
Mark McDowall
1394122842
Fixed: Displaying audio and subtitle languages in UI
2 years ago
Mark McDowall
fe5c52602a
Fixed: Custom Formats upgrading even when profile doesn't allow upgrades
...
Closes #5330
2 years ago
Stevie Robinson
3316665e93
Fixed: Kodi Metadata Subtitle Language
2 years ago
Mark McDowall
61fa1e5e3f
New: Added health check warning if SABnzbd sorting is enabled
...
Closes #4985
2 years ago
Mark McDowall
48b4cc5f3f
New: Improved messaging when qBittorrent fails due to host header rejection
2 years ago
Mark McDowall
2fc76a9ac5
New: Use XEM season number for some releases when mapping episodes
...
Closes #5195
2 years ago
Mark McDowall
6ec7c3f7a9
Fixed: Parsing of anime that uses standard numbering and includes episode number at end
...
Closes #5331
2 years ago
Stevie Robinson
30cbaf06fa
Fix comment
2 years ago
Mark McDowall
738a7b38c9
New: Parsing of some Dutch/Flemish/Italian release titles
...
Closes #2762
2 years ago
Mark McDowall
f504dfcbab
New: Missing/Cutoff Unmet searches will search for episodes that haven't been searched recently first
...
Closes #3067
2 years ago
Mark McDowall
2491da0678
Fixed: Don't try to remove the same item from queue multiple times
2 years ago
Mark McDowall
1f8e1cf582
Fixed: Multiple pushed releases will be processed sequentially
...
Closes #2975
2 years ago
Mark McDowall
40ce54e165
Upgrade Newtonsoft.Json
2 years ago
Mark McDowall
e57e68c97a
New: Option to include series image for Gotify notifications
...
Closes #4882
2 years ago
Mark McDowall
ce0388ca99
Fixed: Only log /proc/mounts exception once per process
...
Closes #4929
2 years ago
Mark McDowall
17bfcdd325
New: Portuguese (Brazil) and Spanish (Latino) languages
...
Closes #5302
2 years ago
Qstick
a26163b646
Cleanup Trakt implementation
2 years ago
Qstick
62354dfac8
Fixed: Don't enforce minimum on single list fetch
2 years ago
Mark McDowall
b15b6a0798
Improve handling of releases without video files
...
New: Show warning in queue if download contains executable or archive file and no video file was detected
Closes #5101
2 years ago
Mark McDowall
4ce4031dd8
New: Reduce size of Custom Formats in responses for most endpoints
2 years ago
Mark McDowall
fc8e6d6f02
Fixed: Manual import when no reprocessing items after selecting series and season
2 years ago
Colin Gagnaire
fb76c237bf
New: Add support for native Freebox Download Client
...
Closes #5140
2 years ago
Mark McDowall
5ce8ea8985
New: Parse release group from VARYG releases with junk at the end
...
Closes #5308
2 years ago
Mark McDowall
ee1ee8f267
New: Rename Emby to Emby / Jellyfin
...
Closes #5301
2 years ago
Mark McDowall
6c53bf30d5
Fixed: Size on disk calculation including multi-episode files multiple times
...
Closes #5296
2 years ago
Mark McDowall
f15f08e51a
Revert "Fixed: Size on disk calculation including multi-episode files multiple times"
...
This reverts commit be98862ce0
.
2 years ago
Mark McDowall
be98862ce0
Fixed: Size on disk calculation including multi-episode files multiple times
...
Closes #5296
2 years ago
Mark McDowall
9a96dee49d
New: Parsing of releases extra slash in Chinese anime titles
...
Closes #5299
2 years ago
Mark McDowall
789a8f5301
Fixed: Queue not showing items with conflicting titles
2 years ago
Mark McDowall
530829f8ed
Don't copy/pasta kids
2 years ago
Mark McDowall
8bea8a10da
Fixed: Skip anime version upgrade check if Proper/Repacks are not preferred
...
Closes #4468
2 years ago
Mark McDowall
e42edf1d33
New: Add Thai Language
...
Closes #5170
2 years ago
Mark McDowall
7f5abfd87d
New: Parsing of Japanese variety shows
...
Closes #5279
2 years ago
Qstick
356771d139
New: Speed up mass deletes from Series Editor
...
* New: Speed up mass deletes from Series Editor
* fixup! Additional speed up using GetAllSeriesPaths vs GetAllSeries
* fixup! Tests
2 years ago
Mark McDowall
d08f33ae21
New: Quality Preferred Setting
...
Co-authored-by: Qstick <qstick@gmail.com>
Closes #724
2 years ago
Mark McDowall
60470b653a
Fixed: History Since API endpoint
2 years ago
Mark McDowall
d09e5d8eb4
Fixed: Trakt connection auth tokens not being refreshed
...
Closes #5285
2 years ago
Mark McDowall
be02d0ebf7
Fixed: Series/season history loading
...
Closes #5286
2 years ago
Mark McDowall
b3959e3162
Fixed broken pending release tests
2 years ago
Mark McDowall
e50eb5188e
Fixed: Unable to process downloads from client
...
Closes #5284
2 years ago
Qstick
779f348f7b
Add deprecated sort values to validation
...
Fixed #5282
2 years ago
Gabriel Patzleiner
b98881c576
Fixed: Absolute episodes followed by a year not getting parsed correctly
2 years ago
Mark McDowall
da4f6b7df9
New: Show Custom Formats on Manual Import / Manage Episodes
...
Closes #5241
2 years ago
Mark McDowall
6216a71f8c
Fixed: Parsing of releases with episode titles that contain languages
...
Closes #861
2 years ago
Qstick
16e2d130e6
Simplify X-Forwarded-For handling
...
This happens in asp.net middleware now
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
2 years ago
Qstick
fd98a179ab
New: Improve IPAddress.IsLocal method
...
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
2 years ago
Mark McDowall
87795708b5
New: Allow Season packs to be grabbed automatically if all episodes will have aired within 24 hours
...
Closes #5191
2 years ago
Mark McDowall
0450d0b2b6
Remove unused dependency in SeasonPackOnlySpecification
2 years ago
Qstick
e19071da0e
Fixed: Avoid path manipulation from receiving to sending for Kodi
...
Fixes #5260
2 years ago
Qstick
c522cd120d
New: Rework List sync interval logic
...
* New: Rework List sync interval logic
Fixes #5011
2 years ago
Mark McDowall
7675b4bc3b
Fixed: Queue failing to load if column was sorted by episode air date or title
...
#5257
2 years ago
Mark McDowall
1b90fbcf7d
New: IPv6 support for connections/indexers/download clients
...
Closes #4149
2 years ago
Mark McDowall
6bdeafcf8c
Fixed: Improve Bind Address validation and help text
...
Closes #622
2 years ago
Mark McDowall
9e6b32ca3e
New: Parsing of 4K GM-TEAM releases
2 years ago
Zak Saunders
4ca5a213fa
New: Auto theme option to match OS theme
...
Co-authored-by: Qstick <qstick@gmail.com>
2 years ago
Mark McDowall
335fc05dd1
New: Auto tagging of series
...
Closes #3870
2 years ago
penggongkui
8eb941d590
Fixed: Parsing of additional GM-Team formats
2 years ago
Mark McDowall
e77be24c7b
Fixed: Sending Webhook on upgrade if media info is unavailable
...
Closes #5272
2 years ago
Qstick
b98ce7fb17
New: Store Task StartTime, Show Duration in UI
...
Closes #5266
2 years ago
Qstick
11e6e12676
Fixed: Error on EpisodeFile summary modal if CF is null
...
Fixes #5268
2 years ago
Qstick
78af4823cf
Fixed: Imdb lists only return 1 result
2 years ago
Qstick
859e48ff5c
Update API Docs
2 years ago
Qstick
7e48ea0231
Fixed: Correct Attribute compare for Id validation
2 years ago
Mark McDowall
8105da33d8
Fixed broken pending release tests
2 years ago
Mark McDowall
0f2ceb85bd
New: Parse GM-Team's file names that are different from their release names
2 years ago
Mark McDowall
31198c627f
Fixed: Loading queue when there are pending items that were added before upgrading
...
Closes #5257
2 years ago
Mark McDowall
b76a7c2773
Fixed: Pending items in queue not showing Custom formats
...
Closes #5248
2 years ago
Qstick
3b10400948
New: FreeBSD Support
...
Co-authored-by: Mark McDowall <mark@mcdowall.ca>
2 years ago
Qstick
aaaf18aec3
Fixed: Add back LanguageProfiles endpoints and deprecate
...
* Fixed: Add back LanguageProfiles endpoints and deprecate
* fixup! Fixed: Add back LanguageProfiles endpoints and deprecate
2 years ago
Qstick
c9b483bdf7
Fixed: Use `develop` logo for Kodi notifications
...
Fixes #5256
2 years ago
Qstick
095dcac90b
Make CF insensitive help text more obvious
2 years ago
Qstick
becc567ff7
Fixed: Use route Id for PUT requests if not passed in body
2 years ago
Qstick
528feb14c9
Prevent NullRef on CustomFormat parse
2 years ago
Mark McDowall
f2b2eb69a3
Fixed: Handle Flood reporting errors for completed and stopped downloads
...
Closes #5224
2 years ago
Qstick
4c7df31070
New: Add support for Simplepush notifications
...
Fixes #5108
Co-Authored-By: Timm Schäuble <Timm.Schaeuble@gmail.com>
2 years ago
Qstick
89270ad7a1
Fixed: Original Language failures on Custom Format parsing
...
Fixes #5240
2 years ago
Qstick
651055820a
Fixed: Logging for Cutoff and UpgradeAllowed Specs
...
Fixes #5242
2 years ago
Qstick
3a2a030432
Really fix Original Language in MapSeries
...
Fixes #5246
2 years ago
Stevie Robinson
ca04c93666
Prevent false positives with HONE releases
2 years ago
Mark McDowall
ed9a47449b
Fixed broken tests after updating images
2 years ago
Bruno Garcia
de3cb07c57
Sentry SDK v3.23.1
...
Co-authored-by: Bruno Garcia <bruno@Brunos-MacBook-Pro.local>
2 years ago
yammes08
cb00ce7c0b
New: Add HONE to list of release group exceptions
...
Closes #5243
2 years ago
Qstick
f47abd0d99
Fix movie reference in PlexListRequestGenerator
2 years ago
Qstick
381834edce
New: IMDb List Support
2 years ago
Qstick
ea7af03d69
Fixed: Handle MapSeries when orig language is null
2 years ago
Mark McDowall
99e60196a4
Fixed: Parse year in title from square brackets
2 years ago
Mark McDowall
53a3fc31e2
Fixed: Saving Trakt Popular Import List without Genres
2 years ago
Qstick
08b677ca7d
Enforce comment spacing with Stylecop
2 years ago
Qstick
be0fa73129
New: Store and use original Series language
2 years ago
Mark McDowall
5400bce129
Publish ApplicationStartingEvent during startup
2 years ago
Qstick
237e7556c2
Bump Newtonsoft to 13.0.1
2 years ago
Qstick
173f456683
Remove Unity (No longer maintained)
2 years ago
Qstick
908d79f2f6
Revert FFMpegCore wrapper to 4.7 to avoid random failures
2 years ago
Mark McDowall
c8dbbe431a
Fixed broken NewznabRequestGenerator tests
2 years ago
Mark McDowall
a1e6a2c530
Fix overzealous regex
2 years ago
Mark McDowall
f9f08cfea2
New: Perform ID based searches for anime if the indexer supports ID searching
...
Closes #5090
2 years ago
Mark McDowall
ba9651b241
Use string interpolation for Newznab request generation
2 years ago
Mark McDowall
ae306274be
New: Improve logging when processing files for import
...
Closes #5226
2 years ago
Mark McDowall
8c1fb31b5d
Fixed: Searching for monitored episodes in series when all seasons are unmonitored
2 years ago
Mark McDowall
b3fc905481
Fixed: Parsing of some Anime releases with number at the end of the title
2 years ago
Mark McDowall
0e31281828
Fixed: Testing SABnzbd when no categories are configured
2 years ago
Qstick
5e57ffbcf9
New: Base API info endpoint
2 years ago