Skip to content

Commit

Permalink
Prepare v4.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
vannaka committed Jan 22, 2019
1 parent 1ce80c5 commit fcc1242
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.0.1] - 2019-1-22
### Changed
- Fix bug where the x-axis was labeled incorrectly on the position graph when the units were changed.

## [4.0.0] - 2019-1-2
### Added
- Waypoints can now be repositioned by clicking and dragging.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {


mainClassName = 'com.mammen.main.Main'
version = "4.0.0"
version = "4.0.1"

project.sourceCompatibility = 11.0
project.targetCompatibility = 11.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Insets right="10.0" />
</FlowPane.margin>
</Label>
<Label fx:id="lblVersion" alignment="CENTER" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" text="v4.0.0" textAlignment="CENTER" />
<Label fx:id="lblVersion" alignment="CENTER" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" text="v4.0.1" textAlignment="CENTER" />
</children>
<padding>
<Insets left="30.0" right="30.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class AboutDialogController {
@FXML
private void initialize() {
Manifest manifest = ResourceLoader.getManifest();
String versionNum = "4.0.0";
String versionNum = "4.0.1";

if (manifest != null) {
Attributes mfAttr = manifest.getMainAttributes();
Expand Down

0 comments on commit fcc1242

Please sign in to comment.