ChangeLog: https://github.com/Lidarr/Lidarr/releases/tag/v1.3.5.3530
* Fix tests for ImportListSyncService
* Use All() for import lists in ImportListSyncService
* New: Less logging when no import lists are enabled
* Automated API Docs update
* Add info box to Remote Path Mappings Settings
* Fixed: Allow decimals for Custom Format size
* New: Success check mark on blue buttons is now white instead of green
* Fixed: Ignore IOException deleting download folder after import
* New: Status message when downloading metadata in qBittorrent
* Fix flaky automation tests
PR: 273448
Reported by: michiel@vanbaak.eu (maintainer)
ChangeLog: https://github.com/Radarr/Radarr/releases/tag/v4.7.5.7809
* New: Add options to show ratings in movie poster info
* Add one minute back-off level for all providers
* Update FluentAssertions
* Automated API Docs update
* New: Show Custom Format Score for movies in Files tab
* New: Async HttpClient
* New: Use HTTP/2 in HttpClient
* Align DownloadService with upstream
* Multiple Translations updated by Weblate
* bump Npgsql to 7.0.4
* Adds Pipeline testing for Postgres15 Databases
* New: Add additional logging when renaming extra files
* New: Show successful grabs in Interactive Search with green icon
* Fixed: Ensure failing providers are marked as failed when testing all
* Fix FileList test
* Fixed: (FileList) Switch to Basic Auth
* Multiple Translations updated by Weblate
* Fixed: Allow Original Language in Custom Format
* Fixed border for actions in health status
* Fixed: Detect Docker when using control group v2
* Fixed: Allow Unknown Language in Custom Format
* New: Performance tweaks to MovieLookup endpoint
* Fixed: Error trying to notify user when process not UserInteractive
* Cleanup MovieService
* Fixed: Add translations for import list movies in Discover
PR: 273446
Reported by: michiel@vanbaak.eu (maintainer)
Thursday, 24 August 2023
We create software for people, and the KDE Gear releases are the result
of that. Every four months we publish new updates of a large number of
KDE apps and software libraries. We create new programs to meet more of
your needs, implement more features so you can adapt to an ever-changing
digital world, and make our software faster, more efficient, more
reliable. We also port it to more platforms so you can run it on more
devices: your laptop, your game console, your phone, anywhere.
Read on to find out what's new in KDE Gear 23.08
https://kde.org/announcements/gear/23.08.0
ChangeLog: https://github.com/Jackett/Jackett/releases
* yggtorrent: make strip season optional.
* kamept: switch to cookie method.
* gktorrent: new domain
* core: add cookie for one request to flaresolverr
PR: 273127
Reported by: tremere@cainites.net (maintainer)
ChangeLog: https://github.com/Readarr/Readarr/releases/tag/v0.3.0.2091
* Fixed: (UI) Ensure root folders are populated in Author Editor
* Fixed: Correctly calculate books count on Author page
* Automated API Docs update
* New: Add result to commands to report commands that did not complete successfully
* Log Goodreads connection failures with more info.
* Ensure original data is shown when no matches are made
* Fix book tests
* Extend InlineMarkdown to handle code blocks in backticks
* Fix AuthorLookupFixture
* More test fixes
PR: 272874
Reported by: michiel@vanbaak.eu (maintainer)
As like as HEAD(14.0-RELEASE) llvm16 was merged in base for 13.2-STABLE
with the OSVERSION 1302507.
- Utilize USE_CXXSTD=c++14 or similar solution where applicable
- Update conditionals to addtionally check for OSVERSION greater than
1302507 and less than 1400000
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
ChangeLog: https://github.com/Readarr/Readarr/releases/tag/v0.2.4.1999
* New: Log when testing for matching Remote Path Mapping
* Fix chunk IDs and source map file names
* Multiple Translations updated by Weblate
* Fixed: Error when selecting different Quality Profile
* Use 2 spaces indentation for ts/tsx files
* Fixed: (ImportLists) Removed minimum refresh interval for FetchSingleList
* Automated API Docs update
* New: Show tooltips with Custom Formats in History and Queue
* Multiple Translations updated by Weblate
* Automated API Docs update
PR: 272691
Reported by: michiel@vanbaak.eu (maintainer)
Since arm64 uses two's complement (char)0xff is the same as -1.
Changing to use the latter should silence this compiler error:
ccan/ccan/base64/base64.c:34:10: error: result of comparison of constant 255 with expression of type 'int8_t' (aka 'signed char') is always false [-Werror,-Wtautological-constant-out-of-range-compare]
if (ret == (char)0xff) {
~~~ ^ ~~~~~~~~~~