This commit is contained in:
deniscerri 2025-02-23 14:33:50 +01:00
parent f4ebd90641
commit ae5270b440
No known key found for this signature in database
GPG key ID: 95C43D517D830350
3 changed files with 11 additions and 2 deletions

View file

@ -12,7 +12,7 @@ def properties = new Properties()
def versionMajor = 1
def versionMinor = 8
def versionPatch = 2
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
def versionBuild = 1 // bump for dogfood builds, public betas, etc.
def isBeta = false
def versionExt = ""

View file

@ -152,7 +152,7 @@ class TerminalDownloadWorker(
}
}
}
if (logDownloads) logRepo.update(initialLogDetails + "\n" + it.out, logItem.id, true)
if (logDownloads) logRepo.update(initialLogDetails + it.out, logItem.id, true)
dao.updateLog(it.out, itemId.toLong())
notificationUtil.cancelDownloadNotification(itemId)
delay(1000)

View file

@ -0,0 +1,9 @@
# What's Changed
- Fixed downloads crashing on items with titles that have quotes in them
- Removed custom format sorting by default to avoid common issues with format selection, and moved the preferences to advanced settings. Most of users don't need to customize sorting formats anyway :)
- Fixed app sometimes building -f as bv/bv+ba/b instead of bv+ba/bv/b
- Update WorkManager library, hopefully fixing #720
- Other small things
Hopefully this build is stable for the time being!