Skip to content

Commit

Permalink
Version and tag set to 5.4-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed Jan 12, 2025
1 parent 669e893 commit 86610c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ java {
sourceCompatibility = JavaLanguageVersion.of(theMinJavaVersion)
}

project.version = '5.4-alpha'
// Central location for application version and (flatpak) tag
project.version = '5.4-beta'
ext.tag = '5.4-beta'
println "version: ${project.version}"
println "tag: ${project.ext.tag}"

// Central location for the specific versions of tesseract dependencies
ext.jcppVersion = '1.5.9'
Expand Down
8 changes: 4 additions & 4 deletions flatpak/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ task genDependencies {
inputs.files(sharedFiles)

doLast {
println "Copying dependencies.json"
println "flatpak. Copying dependencies.json"
copy {
from('../app/build/dependencies.json')
into(flathubDir)
Expand All @@ -71,15 +71,15 @@ task genManifest {
description("Generate manifest from template")

doLast {
println "Generating Flatpak manifest"
println "flatpak. Generating manifest"
copy {
from('dev/org.audiveris.audiveris.template.yml') {
def binding = [:]
binding.OPEN_JDK = "openjdk$theMinJavaVersion"
binding.GRADLE_URL = "$gradleUrl"
binding.GRADLE_NAME = "$gradleName"
binding.GRADLE_SHA256 = wrapperProps.getProperty("distributionSha256Sum")
binding.TAG = '5.4-alpha-hb1'
binding.TAG = "$app.ext.tag"
expand(binding)
}
into(flathubDir)
Expand All @@ -95,7 +95,7 @@ task initFlathub {
dependsOn('genManifest')

doLast {
println "Copying resources to flathub"
println "flatpak. Copying resources to flathub"
copy {
from('res')
into(flathubDir)
Expand Down

0 comments on commit 86610c7

Please sign in to comment.