Mark McDowall
7fcb6b80b4
Fixed: Override and grab releases with Custom Formats
2 years ago
Mark McDowall
103ce3def4
New: Add result to commands to report commands that did not complete successfully
...
Closes #4759
2 years ago
Mark McDowall
07f0fbf9a5
Override release grab modal
...
New: Option to override release and grab
New: Option to select download client when multiple of the same type are configured
Closes #4526
Closes #4774
2 years ago
Mark McDowall
2020e074db
Language parsing improvements and more languages
...
Fixed: Parsing of multiple languages
New: Add Romanian, Latvian, Persian, Catalan, Croatian, Serbian, Bosnian, Estonian, Tamil, Indonesian, Macedonian, Slovenian languages
New: Handle some ISO 639-2/B language codes
Closes #5112
Closes #5440
Closes #5494
2 years ago
Mark McDowall
f4130d96e5
New: Add release info to webhook/custom script import events
...
Closes #5503
2 years ago
Qstick
f59276881a
Convert Notifiarr Payload to JSON, Standardize with Webhook
2 years ago
Stepan Goremykin
6ea3d8c127
Use MinBy and MaxBy instead of OrderBy + First
2 years ago
bpoxy
7fedfe7423
Fixed: Matching of custom formats during episode file import
2 years ago
Bakerboy448
a776b68574
Fixed: Parse 720p Remux as 720p BluRay
...
fix bad anime remux no source logic
Fixes #5517
2 years ago
Bakerboy448
9ae647d9d2
QualityParser - Simplify new expression (IDE0090)
2 years ago
Stepan Goremykin
2abbee1032
Update SixLabors.ImageSharp, MailKit, DryIoc libraries
2 years ago
Qstick
2c7eb05b52
Revert a few packages which result in build warnings and conflicts
2 years ago
Mark McDowall
42003ebd72
Reverted Microsoft package updates to 6.x
...
Closes #5511
2 years ago
Mark McDowall
6007e46746
Fixed: Removed hardcoded dot prefix from the transmission category in status
...
Closes #5510
2 years ago
Stevie Robinson
11905b99d3
New: Specials monitoring options
2 years ago
Mark McDowall
033936dce7
Fixed IsValidPath usages
2 years ago
Mark McDowall
13a0dfa4ae
Fixed: Slow renaming and deleting episodes
...
Closes #5499
2 years ago
Mark McDowall
5ea1fb9424
New: Parsing of multi-episode files in brackets
...
Closes #5501
2 years ago
bakerboy448
0f6f681438
New: Various HealthCheck Improvements
2 years ago
Mark McDowall
0321368cc3
New: Improve path validation when handling paths from different OSes
2 years ago
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