Skip to content

Commit

Permalink
Bump version to 1.3.0 after adding feature to preserve two lines
Browse files Browse the repository at this point in the history
Change default value of preserve two lines to be backward compatible.
  • Loading branch information
danielkihlgren committed Oct 8, 2016
1 parent 49715e0 commit d4f5e2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OUTPUT_WIDTH_PERCENTAGE = 90
TEXT_TRANSLATOR_ACTIVE = true

# If two lines should be transformed into two lines instead of one
# default = true
# default = false
PRESERVE_TWO_LINES = true


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>se.pingstteknik</groupId>
<artifactId>propresenter.stagedisplayviewer</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* @author Daniel Kihlgren
* @version 1.2.0
* @version 1.3.0
* @since 1.0.0
*/
public enum Property {
Expand All @@ -26,7 +26,7 @@ public enum Property {
RESPONSE_TIME_MILLIS("50"),
OUTPUT_WIDTH_PERCENTAGE("90"),
TEXT_TRANSLATOR_ACTIVE("true"),
PRESERVE_TWO_LINES("true"),
PRESERVE_TWO_LINES("false"),
MIDI("false"),
REMOVE_LINES_AFTER_EMPTY_LINE("false");

Expand Down

0 comments on commit d4f5e2c

Please sign in to comment.