Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed Jul 4, 2023
2 parents 0eabc04 + 2b4286c commit f0bdbe6
Show file tree
Hide file tree
Showing 22 changed files with 1,175 additions and 1,003 deletions.
15 changes: 14 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'application'

project.version = '5.3'
project.version = '5.3.1'
sourceCompatibility = '1.17'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

Expand Down Expand Up @@ -331,3 +331,16 @@ fileTree("$projectDir/private").include('*.gradle').each { file ->
test {
testLogging.showStandardStreams = true
}

// Utility task to print out head templates
task(printTemplates, dependsOn: 'classes', type: JavaExec) {
description = "Print out head templates with various sizes"
mainClass = "org.audiveris.omr.image.TemplateFactory"
classpath = sourceSets.main.runtimeClasspath

if (project.hasProperty("cmdLineArgs")) {
if (cmdLineArgs) {
args(cmdLineArgs.split())
}
}
}
5 changes: 1 addition & 4 deletions docs/_pages/advanced/samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ repository or to assign it a correct shape.

To work on the **GLOBAL** repository, we use the `Tools | Browse Global Repository...` pulldown menu.
It will work on the `samples.zip` and `images.zip` files if any are found in our own `config/train`
folder (see [Folders] section).
folder (see [Train folder](../folders/essential.md#train-folder) section).

To work on a **book** repository, we use the `Book | View Book Repository...` pulldown menu.
We will be able to pick and merge book repositories into the GLOBAL repository later on,
Expand Down Expand Up @@ -141,6 +141,3 @@ When we are satisfied with a book repository we can push its content to the glob

We do so from the book repository interface, by selecting the pulldown menu
`Repository | Push to Global`.


[Folders]: /folders/essential.md
Binary file added docs/_pages/assets/images/merged_grand_staff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/_pages/handbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,6 @@ Features only relevant for an advanced usage of Audiveris.

1. [References](./references.md):
Not meant to be read from A to Z, but when a specific item needs to be checked.

1. [Updates](./updates.md):
History of major software updates.
Loading

0 comments on commit f0bdbe6

Please sign in to comment.