Skip to content

Commit

Permalink
Updated for release 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Mar 26, 2024
1 parent c04addb commit 3126397
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 456 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.45.1.0.jar">
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.45.2.0.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.settings/
.vscode
package-lock.json
/out/
/bin/
Expand Down
4 changes: 1 addition & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<pathelement location="jars/xmljava.jar" />
<pathelement location="jars/slf4j-api-2.0.9.jar" />
<pathelement location="jars/slf4j-nop-2.0.9.jar" />
<pathelement location="jars/sqlite-jdbc-3.45.1.0.jar" />
<pathelement location="jars/sqlite-jdbc-3.45.2.0.jar" />
</path>
<condition property="isWindows">
<os family="windows"/>
Expand Down Expand Up @@ -71,7 +71,6 @@
<move file="dist\release" todir="."/>
<delete dir="dist" failonerror="false"/>
<delete file=".\jars\swordfish.jar" />
<copy file=".\jars\h2-1.4.200.jar" todir="lib"/>
</target>
<target name="copyUnix" unless="isWindows">
<description>Move java binaries to work folder</description>
Expand All @@ -93,7 +92,6 @@
<move file="dist/release" todir="."/>
<delete dir="dist" failonerror="false"/>
<delete file="jars/swordfish.jar" />
<copy file="jars/h2-1.4.200.jar" todir="lib"/>
</target>
<target name="dist" depends="link,copyWindows,copyUnix">
<description>Prepare distribution</description>
Expand Down
4 changes: 2 additions & 2 deletions html/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<td><a id="XMLJava">Eclipse Public License 1.0</a></td>
</tr>
<tr class="noWrap">
<td>H2</td>
<td><a id="H2">Eclipse Public License 1.0</a></td>
<td>BCP47J</td>
<td><a id="BCP47J">Eclipse Public License 1.0</a></td>
</tr>
<tr class="noWrap">
<td>SQLite</td>
Expand Down
Binary file removed jars/h2-1.4.200.jar
Binary file not shown.
Binary file not shown.
Binary file modified jars/xmljava.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "swordfish",
"productName": "Swordfish",
"version": "5.1.0",
"version": "5.2.0",
"description": "Swordfish Translation Editor",
"main": "js/Swordfish.js",
"scripts": {
Expand All @@ -20,8 +20,8 @@
"url": "https://github.com/rmraya/Swordfish.git"
},
"devDependencies": {
"electron": "^29.1.4",
"typescript": "^5.4.2"
"electron": "^29.1.5",
"typescript": "^5.4.3"
},
"dependencies": {
"mtengines": "^1.3.3",
Expand Down
4 changes: 2 additions & 2 deletions src/com/maxprograms/swordfish/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ private Constants() {
}

public static final String APPNAME = "Swordfish";
public static final String VERSION = "5.1.0";
public static final String BUILD = "20240318_1046";
public static final String VERSION = "5.2.0";
public static final String BUILD = "20240325_1937";

public static final String REASON = "reason";
public static final String STATUS = "status";
Expand Down
312 changes: 0 additions & 312 deletions src/com/maxprograms/swordfish/DbUpgrade.java

This file was deleted.

Loading

0 comments on commit 3126397

Please sign in to comment.