diff --git a/app/build.gradle b/app/build.gradle index 143685c1..79902c28 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 = "" diff --git a/app/src/main/java/com/deniscerri/ytdl/work/TerminalDownloadWorker.kt b/app/src/main/java/com/deniscerri/ytdl/work/TerminalDownloadWorker.kt index 6779a3c0..28528e59 100644 --- a/app/src/main/java/com/deniscerri/ytdl/work/TerminalDownloadWorker.kt +++ b/app/src/main/java/com/deniscerri/ytdl/work/TerminalDownloadWorker.kt @@ -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) diff --git a/fastlane/metadata/android/en-US/changelogs/108020100.txt b/fastlane/metadata/android/en-US/changelogs/108020100.txt new file mode 100644 index 00000000..962e9c81 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/108020100.txt @@ -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! \ No newline at end of file