Skip to content

Commit 5cca3ed

Browse files
committed
Updated for release 3.7.0
1 parent c088ba8 commit 5cca3ed

236 files changed

Lines changed: 1922 additions & 2050 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,15 @@ Technical Support | Peer support at [Groups.io](https://groups.io/g/maxprogram
4747
- [XMLJava](https://github.com/rmraya/XMLJava)
4848
- [BCP47J](https://github.com/rmraya/BCP47J)
4949
- [TMXValidator](https://github.com/rmraya/TMXValidator)
50+
- [TypesXML](https://github.com/rmraya/TypesXML)
51+
- [TypesBCP47](https://github.com/rmraya/TypesBCP47)
52+
- [sdltm](https://github.com/rmraya/sdltm)
5053

5154
## Requirements
5255

5356
- JDK 21 or newer is required for compiling and building. Get it from [Adoptium](https://adoptium.net/).
54-
- Gradle 9.0 or newer. Get it from [https://gradle.org/](https://gradle.org/)
55-
- Node.js 22.13.0 LTS or newer. Get it from [https://nodejs.org/](https://nodejs.org/)
56-
- TypeScript 5.9.2 or newer, get it from [https://www.typescriptlang.org/](https://www.typescriptlang.org/)
57+
- Gradle 9.2 or newer. Get it from [https://gradle.org/](https://gradle.org/)
58+
- Node.js 24.13.0 LTS or newer. Get it from [https://nodejs.org/](https://nodejs.org/)
5759

5860
## Building
5961

build.xml

Lines changed: 0 additions & 94 deletions
This file was deleted.

css/dark.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,13 @@ th {
194194
stroke: var(--white);
195195
}
196196

197+
.titlePanel svg {
198+
fill: var(--white);
199+
stroke: var(--white);
200+
margin-top: 4px;
201+
margin-right: 4px;
202+
}
203+
197204
.titlePanel td {
198205
height: 30px;
199206
padding-top: 0px !important;

css/highcontrast.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,13 @@ th {
200200
stroke: var(--white);
201201
}
202202

203+
.titlePanel svg {
204+
fill: var(--white);
205+
stroke: var(--white);
206+
margin-top: 4px;
207+
margin-right: 4px;
208+
}
209+
203210
.titlePanel td {
204211
height: 30px;
205212
padding-top: 0px !important;

css/light.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,21 @@ th {
186186

187187
.titlePanel {
188188
margin: 0;
189-
padding: 0;
189+
padding: 0px;
190190
border-radius: 4px 4px 0px 0px;
191191
background: var(--themeDark);
192192
color: var(--white);
193193
fill: var(--white);
194194
stroke: var(--white);
195195
}
196196

197+
.titlePanel svg {
198+
fill: var(--white);
199+
stroke: var(--white);
200+
margin-top: 4px;
201+
margin-right: 4px;
202+
}
203+
197204
.titlePanel td {
198205
height: 30px;
199206
padding-top: 0px !important;

docs/en/tmxeditor.ditamap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<mainbooktitle>
66
<image href="images/cover.png" placement="break" scalefit="yes"/>
77
</mainbooktitle>
8-
<booktitlealt>Copyright © 2018-2025 Maxprograms</booktitlealt>
8+
<booktitlealt>Copyright © 2018-2026 Maxprograms</booktitlealt>
99
</booktitle>
1010

1111
<frontmatter>

docs/es/tmxeditor.ditamap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<mainbooktitle>
66
<image href="images/cover.png" placement="break" scalefit="yes"/>
77
</mainbooktitle>
8-
<booktitlealt>Copyright © 2018-2025 Maxprograms</booktitlealt>
8+
<booktitlealt>Copyright © 2018-2026 Maxprograms</booktitlealt>
99
</booktitle>
1010
<frontmatter>
1111
<booklists>

docs/fr/tmxeditor.ditamap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<mainbooktitle>
66
<image href="images/cover.png" placement="break" scalefit="yes"/>
77
</mainbooktitle>
8-
<booktitlealt>Copyright © 2018-2025 Maxprograms</booktitlealt>
8+
<booktitlealt>Copyright © 2018-2026 Maxprograms</booktitlealt>
99
</booktitle>
1010
<frontmatter>
1111
<booklists>

html/en/about.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body class="dialog_body" onload="new About();">
10+
<body class="dialog_body">
1111
<div class="fill_width center">
1212
<img src="../../images/about.png" alt="about box">
1313
</div>
1414
<div class="buttonArea">
1515
<button id="system">System Information</button>
1616
<button class="right" id="licenses">Licenses</button>
1717
</div>
18-
<script src="../../js/about.js"></script>
18+
<script>
19+
const { About } = require('../../js/about.js');
20+
new About()
21+
</script>
1922
</body>
2023

2124
</html>

html/en/addLanguage.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
88
</head>
99

10-
<body class="dialog_body" onload="new AddLanguage();">
10+
<body class="dialog_body">
1111
<table class="fill_width">
1212
<tr>
1313
<td class="middle noWrap"><label for="language">Language</label></td>
@@ -20,7 +20,10 @@
2020
<div class="buttonArea">
2121
<button id="addLanguage">Add Language</button>
2222
</div>
23-
<script src="../../js/addLanguage.js"></script>
23+
<script>
24+
const { AddLanguage } = require('../../js/addLanguage.js');
25+
new AddLanguage();
26+
</script>
2427
</body>
2528

2629
</html>

0 commit comments

Comments
 (0)