Skip to content

Commit

Permalink
Updated for release 4.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Sep 29, 2023
1 parent 16d38fe commit 277ece5
Show file tree
Hide file tree
Showing 17 changed files with 344 additions and 362 deletions.
1 change: 1 addition & 0 deletions html/preferencesDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
</div>

<script src="../js/tabs.js"></script>
<script src="../js/preferences.js"></script>
<script src="../js/keyboardHandler.js"></script>
<script src="../js/preferencesDialog.js"></script>
</body>
Expand Down
Binary file modified jars/openxliff.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.27.0",
"version": "4.28.0",
"description": "Swordfish Translation Editor",
"main": "js/Swordfish.js",
"scripts": {
Expand All @@ -20,7 +20,7 @@
"url": "https://github.com/rmraya/Swordfish.git"
},
"devDependencies": {
"electron": "^25.2.0",
"typescript": "^5.1.6"
"electron": "^26.2.4",
"typescript": "^5.2.2"
}
}
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.27.0";
public static final String BUILD = "20230706_1059";
public static final String VERSION = "4.28.0";
public static final String BUILD = "20230929_0809";

public static final String REASON = "reason";
public static final String STATUS = "status";
Expand Down
3 changes: 2 additions & 1 deletion src/com/maxprograms/swordfish/MemoriesHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,8 @@ private String highlight(String pureText, String searchStr, boolean regExp, bool
return text.toString();
}

public static List<Language> getLanguages(List<Element> matches) throws IOException {
public static List<Language> getLanguages(List<Element> matches)
throws IOException, SAXException, ParserConfigurationException {
Set<Language> set = new TreeSet<>();
Iterator<Element> it = matches.iterator();
while (it.hasNext()) {
Expand Down
Loading

0 comments on commit 277ece5

Please sign in to comment.