Skip to content

Commit 324c84f

Browse files
committed
Updated for release 2.8.0
1 parent 420fb4f commit 324c84f

7 files changed

Lines changed: 249 additions & 86 deletions

File tree

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
44
<classpathentry kind="src" path="src"/>
55
<classpathentry kind="lib" path="jars/dtd.jar">
66
<attributes>

css/dark.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ a:hover {
6565
left: calc(40% - 100px);
6666
width: 200px;
6767
margin: auto;
68-
background-color: var(--themeDarker);
68+
background-color: var(--themePrimary);
6969
color: var(--white);
7070
padding: 20px;
71-
border: 1px solid var(--white);
71+
border-radius: 8px;
72+
box-shadow: 0px 4px 8px var(--gray190);
7273
}
7374

7475
/* tables */
@@ -308,7 +309,7 @@ button {
308309
color: var(--white);
309310
background: var(--themePrimary);
310311
border: 1px solid var(--themePrimary);
311-
border-radius: 2px;
312+
border-radius: 4px;
312313
font-size: 14px;
313314
text-align: center;
314315
margin: 4px;

css/light.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ a:hover {
6565
left: calc(40% - 100px);
6666
width: 200px;
6767
margin: auto;
68-
background-color: var(--themeDarker);
68+
background-color: var(--themePrimary);
6969
color: var(--white);
7070
padding: 20px;
71-
border: 1px solid var(--white);
71+
border-radius: 8px;
72+
box-shadow: 0px 4px 8px var(--gray110);
7273
}
7374

7475
/* tables */
@@ -308,7 +309,7 @@ button {
308309
color: var(--white);
309310
background: var(--themePrimary);
310311
border: 1px solid var(--themePrimary);
311-
border-radius: 2px;
312+
border-radius: 4px;
312313
font-size: 14px;
313314
text-align: center;
314315
margin: 4px;

jars/openxliff.jar

9.06 KB
Binary file not shown.

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tmxeditor",
33
"productName": "TMXEditor",
4-
"version": "2.7.0",
4+
"version": "2.8.0",
55
"description": "TMX Editor",
66
"main": "js/app.js",
77
"scripts": {
@@ -19,11 +19,7 @@
1919
"url": "https://github.com/rmraya/TMXEditor.git"
2020
},
2121
"devDependencies": {
22-
"@types/node-fetch": "^2.5.12",
23-
"electron": "^15.1.1",
24-
"typescript": "^4.4.3"
25-
},
26-
"dependencies": {
27-
"node-fetch": "^2.6.3"
22+
"electron": "^16.0.1",
23+
"typescript": "^4.5.2"
2824
}
2925
}

src/com/maxprograms/tmxserver/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ private Constants() {
1919
}
2020

2121
public static final String APPNAME = "TMXEditor";
22-
public static final String VERSION = "2.7.0";
23-
public static final String BUILD = "20211008_1306";
22+
public static final String VERSION = "2.8.0";
23+
public static final String BUILD = "20211122_1037";
2424

2525
public static final String REASON = "reason";
2626
public static final String STATUS = "status";

0 commit comments

Comments
 (0)