Skip to content

Commit

Permalink
prepare new major release in version 8
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapisixtynine committed Jun 13, 2024
1 parent 495111a commit 8de7b9e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
## Change log
----------------------

Version 8-SNAPSHOT
Version 8
-------------

ADDED:

- new format of database file not compatible with version 7.x

CHANGED:

- update of gradle to new version 8.8

Version 7.3
-------------

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################
# project properties #
######################
projectVersion=8-SNAPSHOT
projectVersion=8
groupPackage=io.github.astrapi69
projectSourceCompatibility=17
projectInceptionYear=2015
Expand Down
4 changes: 2 additions & 2 deletions src/main/izpack/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
</variables>

<info>
<javaversion>1.8</javaversion>
<javaversion>17</javaversion>
<appname>mystic-crypt-ui</appname>
<appsubpath>app/mystic-crypt-ui</appsubpath>
<appversion>8-SNAPSHOT</appversion>
<appversion>8</appversion>
<authors>
<author name="Asterios Raptis" email="[email protected]" />
</authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@

import io.github.astrapi69.component.model.enumeration.visibility.RenderMode;
import io.github.astrapi69.swing.menu.model.KeyStrokeInfo;
import io.github.astrapi69.swing.menu.model.MenuInfo;
import io.github.astrapi69.swing.panel.info.InfoModelBean;
import lombok.NonNull;
import lombok.extern.java.Log;
Expand Down Expand Up @@ -329,7 +328,7 @@ protected InfoPanel newInfoPanel()
.labelCopyright(Messages.getString("InfoJPanel.copyright.key", "Copyright(C):"))
.copyright(Messages.getString("InfoJPanel.copyright.value", "2016 Asterios Raptis"))
.labelVersion(Messages.getString("InfoJPanel.version.key", "Version:"))
.version(Messages.getString("InfoJPanel.version.value", "8-SNAPSHOT"))
.version(Messages.getString("InfoJPanel.version.value", "8"))
.licence(Messages.getString("InfoJPanel.license.information.value", "This Software is licensed under the MIT License"))
.build();
return new InfoPanel()
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ui/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ helpframe.label.help=License:
InfoJPanel.application.name.key=Application name:
InfoJPanel.application.name.value=mystic-crypt-ui
InfoJPanel.version.key=Version:
InfoJPanel.version.value=8-SNAPSHOT
InfoJPanel.version.value=8
InfoJPanel.copyright.key=Copyright(C):
InfoJPanel.copyright.value=\ 2016 Asterios Raptis
InfoJPanel.license.information.value=This Software is licensed under the MIT License
Expand Down

0 comments on commit 8de7b9e

Please sign in to comment.