Skip to content

Commit

Permalink
Updated for release 4.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Jul 4, 2021
1 parent 5bd03b3 commit 4d85e6c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
5 changes: 5 additions & 0 deletions css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ input:focus {
border: 1px solid var(--themePrimary);
}

input:focus+label {
color: var(--themePrimary);
}

input:disabled {
background-color: var(--gray130);
}
Expand Down Expand Up @@ -317,6 +321,7 @@ button {

button:focus {
outline: none !important;
background: var(--themeDarkAlt);
}

button:hover {
Expand Down
5 changes: 5 additions & 0 deletions css/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ input:focus {
border: 1px solid var(--themePrimary);
}

input:focus+label {
color: var(--themePrimary);
}

input:disabled {
background-color: var(--gray90);
}
Expand Down Expand Up @@ -317,6 +321,7 @@ button {

button:focus {
outline: none !important;
background: var(--themeDarkAlt);
}

button:hover {
Expand Down
Binary file modified jars/openxliff.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.5.2",
"version": "4.5.3",
"description": "Swordfish Translation Editor",
"main": "js/App.js",
"scripts": {
Expand All @@ -21,8 +21,8 @@
},
"devDependencies": {
"@types/node-fetch": "^2.5.10",
"electron": "^13.1.2",
"typescript": "^4.3.4"
"electron": "^13.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.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.5.2";
public static final String BUILD = "20210620_1049";
public static final String VERSION = "4.5.3";
public static final String BUILD = "20210704_1004";

public static final String REASON = "reason";
public static final String STATUS = "status";
Expand Down
10 changes: 6 additions & 4 deletions ts/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2066,10 +2066,12 @@ class Swordfish {
}
}
}).catch((reason: any) => {
Swordfish.showMessage({
type: 'error',
message: JSON.stringify(reason)
});
if (!silent) {
Swordfish.showMessage({
type: 'error',
message: JSON.stringify(reason)
});
}
});
}

Expand Down

0 comments on commit 4d85e6c

Please sign in to comment.