Skip to content

Commit

Permalink
prepare new release in version 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapi69 committed Jul 22, 2023
1 parent 09150f9 commit 215bf08
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
## Change log
----------------------

Version 7.3-SNAPSHOT
Version 7.3
-------------

ADDED:

- new feature for an auto type from the mystic crypt entry
- new feature for save before close
- new feature for duplicate mystic crypt entry in table

CHANGED:

- update of gradle to new patch version 8.2.1
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################
# project properties #
######################
projectVersion=7.3-SNAPSHOT
projectVersion=7.3
groupPackage=io.github.astrapi69
projectSourceCompatibility=17
projectInceptionYear=2015
Expand Down Expand Up @@ -37,7 +37,7 @@ spotlessGradlePluginVersion=6.20.0
############################
# IzPackInstaller property #
############################
createIzPackInstaller=false
createIzPackInstaller=true
#########################
# dependencies versions #
#########################
Expand Down
5 changes: 3 additions & 2 deletions gradle/packaging.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ task withAllDependendiesJar(type: Jar) {
with jar
}

task createIzPackInstallerFromSignedJar(dependsOn: [clean, build, withAllDependendiesJar, izPackCreateInstaller]) {
task createIzPackInstallerFromSignedJar(dependsOn: [clean, build, withAllDependendiesJar, jar, izPackCreateInstaller]) {
withAllDependendiesJar.mustRunAfter(clean)
build.mustRunAfter(withAllDependendiesJar)
izPackCreateInstaller.mustRunAfter(build)
jar.mustRunAfter(build)
izPackCreateInstaller.mustRunAfter(jar)
}

2 changes: 1 addition & 1 deletion src/main/izpack/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<javaversion>1.8</javaversion>
<appname>mystic-crypt-ui</appname>
<appsubpath>app/mystic-crypt-ui</appsubpath>
<appversion>7.2</appversion>
<appversion>7.3</appversion>
<authors>
<author name="Asterios Raptis" email="[email protected]" />
</authors>
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=7.2
InfoJPanel.version.value=7.3
InfoJPanel.copyright.key=Copyright(C):
InfoJPanel.copyright.value=\ 2016 Asterios Raptis
InfoJPanel.warning=The Software is under the MIT Licence.
Expand Down

0 comments on commit 215bf08

Please sign in to comment.