Skip to content

Commit

Permalink
Updated for Swordfish 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Feb 24, 2024
1 parent 0c28634 commit 8e304ff
Show file tree
Hide file tree
Showing 39 changed files with 6,719 additions and 6,498 deletions.
8 changes: 6 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="jars/dtd.jar">
<attributes>
Expand Down Expand Up @@ -32,6 +31,11 @@
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/h2-1.4.200.jar"/>
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.43.0.0.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="out"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
.settings/
package-lock.json
/out/
/bin/
Expand Down
576 changes: 0 additions & 576 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

1 change: 1 addition & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<pathelement location="jars/openxliff.jar"/>
<pathelement location="jars/xmljava.jar"/>
<pathelement location="jars/h2-1.4.200.jar"/>
<pathelement location="jars/sqlite-jdbc-3.43.0.0.jar"/>
</path>
<condition property="isWindows">
<os family="windows"/>
Expand Down
6 changes: 5 additions & 1 deletion html/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</head>

<body onload="new Licenses();">
<table class="fill_width " style="height: 24em;">
<table class="fill_width " style="height: 28em;">
<tr class="noWrap">
<td>Swordfish</td>
<td><a id="Swordfish">Eclipse Public License 1.0</a></td>
Expand All @@ -33,6 +33,10 @@
<td>H2</td>
<td><a id="H2">Eclipse Public License 1.0</a></td>
</tr>
<tr class="noWrap">
<td>SQLite</td>
<td>Public Domain</td>
</tr>
<tr class="noWrap">
<td>JSON</td>
<td><a id="JSON">JSON.org</a></td>
Expand Down
Binary file modified jars/openxliff.jar
Binary file not shown.
Binary file added jars/sqlite-jdbc-3.43.0.0.jar
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": "4.30.0",
"version": "5.0.0",
"description": "Swordfish Translation Editor",
"main": "js/Swordfish.js",
"scripts": {
Expand All @@ -20,11 +20,11 @@
"url": "https://github.com/rmraya/Swordfish.git"
},
"devDependencies": {
"electron": "^28.2.0",
"electron": "^29.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"mtengines": "^1.3.0",
"mtengines": "^1.3.2",
"typesbcp47": "^1.2.0",
"typesxml": "^1.2.1"
}
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 = "4.30.0";
public static final String BUILD = "20240126_0948";
public static final String VERSION = "5.0.0";
public static final String BUILD = "20240224_1556";

public static final String REASON = "reason";
public static final String STATUS = "status";
Expand Down
Loading

0 comments on commit 8e304ff

Please sign in to comment.