Skip to content

Commit 5a5b87e

Browse files
committed
new version 1.0.3
1 parent 52f155e commit 5a5b87e

18 files changed

+19
-193
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ ___
129129

130130
* LibreOffice 24.2.1.2 - Lubuntu 22.04
131131

132+
* LibreOffice 24.8.0.3 (x86_64) - Windows 10(x64) - Python version 3.9.19 (under Lubuntu 22.04 / VirtualBox 6.1.38)
133+
132134
I encourage you in case of problem :confused:
133135
to create an [issue][13]
134136
I will try to solve it :smile:
@@ -158,6 +160,9 @@ ___
158160

159161
- Updated the [Python setuptools][36] package to version 73.0.1.
160162
- Logging accessible in extension options now displays correctly on Windows.
163+
- The extension options are now accessible via: **Tools -> Options... -> LibreOffice Base -> Embedded HsqlDB Driver**
164+
- Changes to extension options that require a restart of LibreOffice will result in a message being displayed.
165+
- Support for LibreOffice version 24.8.x.
161166

162167
### What remains to be done for version 1.0.3:
163168

README_fr.md

+5
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ ___
129129

130130
* LibreOffice 24.2.1.2 - Lubuntu 22.04
131131

132+
* LibreOffice 24.8.0.3 (X86_64) - Windows 10(x64) - Python version 3.9.19 (sous Lubuntu 22.04 / VirtualBox 6.1.38)
133+
132134
Je vous encourage en cas de problème :confused:
133135
de créer un [dysfonctionnement][13]
134136
J'essaierai de le résoudre :smile:
@@ -158,6 +160,9 @@ ___
158160

159161
- Mise à jour du paquet [Python setuptools][36] vers la version 73.0.1.
160162
- La journalisation accessible dans les options de l’extension s’affiche désormais correctement sous Windows.
163+
- Les options de l'extension sont désormais accessibles via: **Outils -> Options... -> LibreOffice Base -> Pilote HsqlDB intégré**
164+
- Les modifications apportées aux options d'extension, qui nécessitent un redémarrage de LibreOffice, entraîneront l'affichage d'un message.
165+
- Support de LibreOffice version 24.8.x.
161166

162167
### Que reste-t-il à faire pour la version 1.0.3:
163168

source/JaybirdOOo/JaybirdOOo/DialogStrings_en_US.default

Whitespace-only changes.

source/JaybirdOOo/JaybirdOOo/DialogStrings_en_US.properties

-64
This file was deleted.

source/JaybirdOOo/JaybirdOOo/DialogStrings_fr_FR.properties

-64
This file was deleted.

source/JaybirdOOo/JaybirdOOo/LogDialog.xdl

-1
This file was deleted.

source/JaybirdOOo/JaybirdOOo/LogWindow.xdl

-1
This file was deleted.

source/JaybirdOOo/JaybirdOOo/OptionsDialog.xdl

-1
This file was deleted.

source/JaybirdOOo/JaybirdOOo/OptionsDialog_en_US.default

Whitespace-only changes.

source/JaybirdOOo/JaybirdOOo/OptionsDialog_en_US.properties

-23
This file was deleted.

source/JaybirdOOo/JaybirdOOo/OptionsDialog_fr_FR.properties

-23
This file was deleted.

source/JaybirdOOo/JaybirdOOo/dialog.xlb

-7
This file was deleted.

source/JaybirdOOo/META-INF/manifest.xml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
<!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd">
2828
<manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest">
2929
<manifest:file-entry manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=RDB" manifest:full-path="types.rdb"/>
30-
<manifest:file-entry manifest:media-type="application/vnd.sun.star.basic-library" manifest:full-path="JaybirdOOo/"/>
3130
<manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-schema" manifest:full-path="Options.xcs"/>
3231
<manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path="Options.xcu"/>
3332
<manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path="OptionsDialog.xcu"/>

source/JaybirdOOo/OptionsDialog.xcu

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<node oor:name="Nodes">
99
<node oor:name="io.github.prrvchr.JaybirdOOo" oor:op="fuse">
1010
<prop oor:name="Label">
11-
<value xml:lang="en-US">Base drivers</value>
12-
<value xml:lang="fr-FR">Pilotes Base</value>
11+
<value xml:lang="en-US">LibreOffice Base</value>
12+
<value xml:lang="fr-FR">LibreOffice Base</value>
1313
</prop>
1414
<prop oor:name="AllModules">
1515
<value>true</value>
@@ -20,11 +20,11 @@
2020
<value>io.github.prrvchr.JaybirdOOo</value>
2121
</prop>
2222
<prop oor:name="Label">
23-
<value xml:lang="en-US">Embedded Firebird Driver</value>
24-
<value xml:lang="fr-FR">Pilote Firebird intégré</value>
23+
<value xml:lang="en-US">Embedded Jaybird Driver</value>
24+
<value xml:lang="fr-FR">Pilote Jaybird intégré</value>
2525
</prop>
2626
<prop oor:name="OptionsPage">
27-
<value>%origin%/JaybirdOOo/OptionsDialog.xdl</value>
27+
<value>%origin%/dialogs/OptionsDialog.xdl</value>
2828
</prop>
2929
<prop oor:name="EventHandlerService">
3030
<value>io.github.prrvchr.JaybirdOOo.OptionsHandler</value>

source/JaybirdOOo/description.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
<name lang="fr-FR">JaybirdOOo</name>
5454
</display-name>
5555
<icon>
56-
<default xlink:href="JaybirdOOo/JaybirdOOo.png"/>
57-
<high-contrast xlink:href="JaybirdOOo/JaybirdOOo.png"/>
56+
<default xlink:href="img/JaybirdOOo.png"/>
57+
<high-contrast xlink:href="img/JaybirdOOo.png"/>
5858
</icon>
5959
<extension-description>
6060
<src xlink:href="description/desc_en.txt" lang="en-US"/>

source/JaybirdOOo/dialogs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../uno/dialog/embedded

source/JaybirdOOo/package.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Written by the OOEclipseIntegration
22
#Tue May 28 03:41:51 CEST 2024
3-
contents=Drivers.xcu, JaybirdOOo, JaybirdOOo/DialogStrings_en_US.default, JaybirdOOo/DialogStrings_en_US.properties, JaybirdOOo/DialogStrings_fr_FR.properties, JaybirdOOo/JaybirdOOo.png, JaybirdOOo/LogDialog.xdl, JaybirdOOo/LogWindow.xdl, JaybirdOOo/OptionsDialog.xdl, JaybirdOOo/OptionsDialog_en_US.default, JaybirdOOo/OptionsDialog_en_US.properties, JaybirdOOo/OptionsDialog_fr_FR.properties, JaybirdOOo/dialog.xlb, META-INF, META-INF/manifest.xml, Options.xcs, Options.xcu, OptionsDialog.xcu, description, description/desc_en.txt, description/desc_fr.txt, description.xml, driver, driver/jaybird-6.0.0-20240512.161600-27.jar, driver/jaybird-native-6.0.0-20240512.161600-21.jar, registration, registration/TermsOfUse_en.md, registration/TermsOfUse_fr.md, requirements.txt, resource, resource/Driver_en_US.default, resource/Driver_en_US.properties, resource/Driver_fr_FR.properties, resource/Logger_en_US.default, resource/Logger_en_US.properties, resource/Logger_fr_FR.properties, resource/OptionsDialog_en_US.default, resource/OptionsDialog_en_US.properties, resource/OptionsDialog_fr_FR.properties, service, service/*
3+
contents=Drivers.xcu, dialogs, dialogs/*, img, img/*, META-INF, META-INF/manifest.xml, Options.xcs, Options.xcu, OptionsDialog.xcu, description, description/desc_en.txt, description/desc_fr.txt, description.xml, driver, driver/jaybird-6.0.0-20240512.161600-27.jar, driver/jaybird-native-6.0.0-20240512.161600-21.jar, registration, registration/TermsOfUse_en.md, registration/TermsOfUse_fr.md, requirements.txt, resource, resource/Driver_en_US.default, resource/Driver_en_US.properties, resource/Driver_fr_FR.properties, resource/Logger_en_US.default, resource/Logger_en_US.properties, resource/Logger_fr_FR.properties, resource/OptionsDialog_en_US.default, resource/OptionsDialog_en_US.properties, resource/OptionsDialog_fr_FR.properties, service, service/*

0 commit comments

Comments
 (0)