Skip to content

Commit

Permalink
version upgrade to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsoft committed Apr 1, 2019
1 parent e0ed04b commit a877928
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
* 1.5.0
* new features
* supports automatic plugin updates
* `Check for updates` context menu
* `Delete` context menu
* improvements
* multiple jar DnD experience
* native drag experience on Mac theme
* breaking changes
* pluginArchivesURI will respect server's update check response
* 1.4.3
* critical dependency patch
* 1.4.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Mac OS X:
<dependency>
<groupId>org.silentsoft</groupId>
<artifactId>actlist-plugin</artifactId>
<version>1.4.3</version>
<version>1.5.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions build/build-dmg.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<mkdir dir="externalLibs" />

<copy todir="externalLibs">
<fileset dir="${user.home}/.m2/repository/org/silentsoft/actlist-plugin/1.4.3">
<filename name="actlist-plugin-1.4.3.jar"/>
<fileset dir="${user.home}/.m2/repository/org/silentsoft/actlist-plugin/1.5.0">
<filename name="actlist-plugin-1.5.0.jar"/>
</fileset>
</copy>
<copy todir="externalLibs">
Expand Down Expand Up @@ -210,7 +210,7 @@
<!-- Copy project-libs references -->
<copy todir="build/libs">
<fileset dir="externalLibs">
<include name="actlist-plugin-1.4.3.jar"/>
<include name="actlist-plugin-1.5.0.jar"/>
<include name="silentsoft-core-1.1.1.jar"/>
<include name="silentsoft-io-1.1.1.jar"/>
<include name="silentsoft-ui-1.1.1.jar"/>
Expand Down
6 changes: 3 additions & 3 deletions build/build-exe.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<mkdir dir="externalLibs" />

<copy todir="externalLibs">
<fileset dir="${user.home}/.m2/repository/org/silentsoft/actlist-plugin/1.4.3">
<filename name="actlist-plugin-1.4.3.jar"/>
<fileset dir="${user.home}/.m2/repository/org/silentsoft/actlist-plugin/1.5.0">
<filename name="actlist-plugin-1.5.0.jar"/>
</fileset>
</copy>
<copy todir="externalLibs">
Expand Down Expand Up @@ -221,7 +221,7 @@
<!-- Copy project-libs references -->
<copy todir="build/libs">
<fileset dir="externalLibs">
<include name="actlist-plugin-1.4.3.jar"/>
<include name="actlist-plugin-1.5.0.jar"/>
<include name="silentsoft-core-1.1.1.jar"/>
<include name="silentsoft-io-1.1.1.jar"/>
<include name="silentsoft-ui-1.1.1.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion build/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.4.3
version=1.5.0
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.silentsoft</groupId>
<artifactId>actlist</artifactId>
<version>1.4.3</version>
<version>1.5.0</version>

<repositories>
<repository>
Expand Down Expand Up @@ -32,7 +32,7 @@
<silentsoft.net.version>1.1.1</silentsoft.net.version>

<!-- Actlist -->
<actlist.plugin.version>1.4.3</actlist.plugin.version>
<actlist.plugin.version>1.5.0</actlist.plugin.version>

<!-- Native -->
<jna.version>4.5.1</jna.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/* Automatically generated by ant. */
public class BuildVersion {
public static final String VERSION = "1.4.3";
public static final String BUILD_TIME = "20190128-224151";
public static final String VERSION = "1.5.0";
public static final String BUILD_TIME = "20190401-213806";
}

0 comments on commit a877928

Please sign in to comment.