Skip to content

Commit

Permalink
Updated for build 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Jun 15, 2021
1 parent c06de86 commit 08f89f6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 12 deletions.
17 changes: 11 additions & 6 deletions css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ th {
}

.machineContainer {
background-color: var(--od-row-background);
background-color: var(--gray190);
padding: 4px;
margin: 0;
width: 100%;
Expand All @@ -220,7 +220,7 @@ th {
}

.highlighted {
color: var(--highlight-color);
color: var(--gray40);
background-color: var(--themePrimary);
padding-left: 2px;
padding-right: 2px;
Expand Down Expand Up @@ -381,8 +381,6 @@ label {
stroke: var(--themePrimary);
padding: 2px 4px;
justify-content: flex-start;
border-top: 1px solid var(--gray190);
overflow: hidden;
}

.toolbar button {
Expand Down Expand Up @@ -423,12 +421,13 @@ label {
}

.toolbar a:hover {
background-color: var(--tab-hover);
background-color: var(--gray160);
text-decoration: none !important;
transition-property: all;
transition-duration: 0.5s;
transition-timing-function: cubic-bezier(0.14, 0.71, 0.38, 1);
transition-delay: 0s;
border-radius: 2px;
}

svg {
Expand All @@ -437,6 +436,12 @@ svg {
stroke-width: 0.1;
}

th svg {
margin-top: 4px;
fill: var(--gray10) !important;
stroke: var(--gray10) !important;
}

/* tabs */

.tabHolder {
Expand Down Expand Up @@ -564,7 +569,7 @@ svg {
}

.highlight {
color: var(--highlight-color);
color: var(--gray40);
}

.active svg {
Expand Down
12 changes: 9 additions & 3 deletions css/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ th {
}

.machineContainer {
background-color: var(--od-row-background);
background-color: var(--grey30);
padding: 4px;
margin: 0;
width: 100%;
Expand Down Expand Up @@ -380,7 +380,6 @@ label {
stroke: var(--themePrimary);
padding: 2px 4px;
justify-content: flex-start;
overflow: hidden;
}

.toolbar button {
Expand Down Expand Up @@ -421,12 +420,13 @@ label {
}

.toolbar a:hover {
background-color: var(--tab-hover);
background-color: var(--gray20);
text-decoration: none !important;
transition-property: all;
transition-duration: 0.5s;
transition-timing-function: cubic-bezier(0.14, 0.71, 0.38, 1);
transition-delay: 0s;
border-radius: 2px;
}

svg {
Expand All @@ -435,6 +435,12 @@ svg {
stroke-width: 0.1;
}

th svg {
margin-top: 4px;
fill: var(--gray10) !important;
stroke: var(--gray10) !important;
}

/* tabs */

.tabHolder {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tmxeditor",
"productName": "TMXEditor",
"version": "2.5.0",
"version": "2.5.1",
"description": "TMX Editor",
"main": "js/app.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/com/maxprograms/tmxserver/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 = "TMXEditor";
public static final String VERSION = "2.5.0";
public static final String BUILD = "20210607_1015";
public static final String VERSION = "2.5.1";
public static final String BUILD = "20210615_0900";

public static final String REASON = "reason";
public static final String STATUS = "status";
Expand Down
3 changes: 3 additions & 0 deletions ts/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,9 @@ class App {
}

static loadSegments(): void {
if (App.currentFile === '') {
return;
}
var json: any = {
command: 'getSegments'
}
Expand Down

0 comments on commit 08f89f6

Please sign in to comment.