diff --git a/CHANGELOG.md b/CHANGELOG.md index e60f9b87f8..6f3b95ef56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Under development, please stay tuned! -## [v1.12.0][1.12.0] - 2024-01-22 +## [v1.12.0][1.12.0] - 2024-04-05 ### Added * Search from download history @@ -19,6 +19,7 @@ Under development, please stay tuned! * Re-download unavailable videos * Download auto-translated subtitles * Remember subtitle selection for next downloads +* Remux videos into mkv container for better compatibility * Configuration for not using the download type in the last download * Improve UI/UX for download error handling * Add splash screen @@ -316,4 +317,6 @@ Under development, please stay tuned! [1.11.2]: https://github.com/JunkFood02/Seal/releases/tag/v1.11.2 -[1.11.3]: https://github.com/JunkFood02/Seal/releases/tag/v1.11.3 \ No newline at end of file +[1.11.3]: https://github.com/JunkFood02/Seal/releases/tag/v1.11.3 + +[1.12.0]: https://github.com/JunkFood02/Seal/releases/tag/v1.12.0 \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0eda1f3f08..d2de43d5ff 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -51,11 +51,10 @@ sealed class Version( } } -val currentVersion: Version = Version.ReleaseCandidate( +val currentVersion: Version = Version.Stable( versionMajor = 1, versionMinor = 12, versionPatch = 0, - versionBuild = 2 ) val keystorePropertiesFile: File = rootProject.file("keystore.properties")