Skip to content

Commit

Permalink
fix: Revert hard-coded versions in Utils.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
jmir1 committed Dec 9, 2024
1 parent c27fb9c commit 21a3e4a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/src/main/java/is/xyz/mpv/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,11 @@ object Utils {
val ffmpeg: String,
)

// Run buildscripts/scripts/write_versions.sh "<arch>" to update these
val VERSIONS = Versions(
mpv = "",
buildDate = "",
libPlacebo = "",
ffmpeg = "n7.1",
mpv = "%MPV_VERSION%",
buildDate = "%DATE%",
libPlacebo = "%LIBPLACEBO_VERSION%",
ffmpeg = "%FFMPEG_VERSION%",
)
}

0 comments on commit 21a3e4a

Please sign in to comment.