Skip to content

Commit 1d18097

Browse files
committed
Updated for release 8.1.0
1 parent c8d6f18 commit 1d18097

13 files changed

Lines changed: 13 additions & 14 deletions

docs/en/xliffmanager.ditamap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<image href="images/openxliff.png" placement="break" scale="60"/>
99
</mainbooktitle>
1010
<booktitlealt>
11-
<ph>Copyright © 2018 - 2024 Maxprograms</ph>
11+
<ph>Copyright © 2018 - 2025 Maxprograms</ph>
1212
</booktitlealt>
1313
</booktitle>
1414
<frontmatter>

docs/es/xliffmanager.ditamap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<image href="images/openxliff.png" placement="break" scale="60"/>
88
</mainbooktitle>
99
<booktitlealt>
10-
<ph>Derechos de autor © 2018 - 2024 Maxprograms</ph>
10+
<ph>Copyright © 2018 - 2025 Maxprograms</ph>
1111
</booktitlealt>
1212
</booktitle>
1313
<frontmatter>

html/en/main.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
</a>
9595
</div>
9696
</td>
97-
<td class="fill_width">
97+
<td class="fill_width" style="padding-bottom: 8px;">
9898
<div class="tabContent" id="create">
9999
<table style="width: calc(100% - 8px);">
100100
<tr>
@@ -159,7 +159,7 @@
159159
<input id="isEmbed" type="checkbox">
160160
<label for="isEmbed" class="noWrap paddedTop">Embed Skeleton</label>
161161
</div>
162-
<div class="buttonArea" >
162+
<div class="buttonArea">
163163
<button id="createXLIFF">Create XLIFF</button>
164164
</div>
165165
</div>

html/es/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
</a>
9090
</div>
9191
</td>
92-
<td class="fill_width">
92+
<td class="fill_width" style="padding-bottom: 8px;">
9393
<div class="tabContent" id="create">
9494
<table style="width: calc(100% - 8px);">
9595
<tr>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "xliffmanager",
33
"productName": "XLIFF Manager",
4-
"version": "8.0.0",
4+
"version": "8.1.0",
55
"description": "XLIFF Manager, a cross-platform open source graphical user interface for OpenXLIFF Filters",
66
"main": "js/app.js",
77
"scripts": {
@@ -25,7 +25,7 @@
2525
"url": "https://github.com/rmraya/XLIFFManager.git"
2626
},
2727
"devDependencies": {
28-
"electron": "^33.2.1",
28+
"electron": "^33.3.0",
2929
"typescript": "^5.7.2"
3030
},
3131
"dependencies": {

ts/about.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018 - 2024 Maxprograms.
2+
* Copyright (c) 2018 - 2025 Maxprograms.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 1.0

ts/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018 - 2024 Maxprograms.
2+
* Copyright (c) 2018 - 2025 Maxprograms.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 1.0

ts/i18n.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018 - 2024 Maxprograms.
2+
* Copyright (c) 2018 - 2025 Maxprograms.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 1.0

ts/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018 - 2024 Maxprograms.
2+
* Copyright (c) 2018 - 2025 Maxprograms.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 1.0
@@ -76,7 +76,6 @@ class Main {
7676
(document.getElementById('pseudoTranslateButton') as HTMLButtonElement).addEventListener('click', () => { this.pseudoTranslate(); });
7777
(document.getElementById('removeTargetsButton') as HTMLButtonElement).addEventListener('click', () => { this.removeTargets(); });
7878
(document.getElementById('approveAllButton') as HTMLButtonElement).addEventListener('click', () => { this.approveAll(); });
79-
(document.getElementById('registerLink') as HTMLAnchorElement).addEventListener('click', () => { this.registerSubscription(); });
8079

8180
this.electron.ipcRenderer.on('add-source-file', (event: Electron.IpcRendererEvent, arg: any) => {
8281
this.addSourceFile(arg);

ts/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018 - 2024 Maxprograms.
2+
* Copyright (c) 2018 - 2025 Maxprograms.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 1.0

0 commit comments

Comments
 (0)