Skip to content

Commit 59bf9cf

Browse files
committed
Update release notes for DataLab version 1.0.3: add bug fixes for macro execution and Unicode character display
1 parent b272cc5 commit 59bf9cf

3 files changed

Lines changed: 30 additions & 8 deletions

File tree

datalab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# this module is imported more than once, e.g. when running tests)
2525
pass
2626

27-
__version__ = "1.0.2"
27+
__version__ = "1.0.3"
2828
__docurl__ = __homeurl__ = "https://datalab-platform.com/"
2929
__supporturl__ = "https://github.com/DataLab-Platform/DataLab/issues/new/choose"
3030

doc/locale/fr/LC_MESSAGES/release_notes/release_1.00.po

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: DataLab \n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2025-12-03 21:59+0100\n"
10+
"POT-Creation-Date: 2025-12-04 15:05+0100\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language: fr\n"
@@ -21,11 +21,27 @@ msgstr ""
2121
msgid "Version 1.0"
2222
msgstr ""
2323

24+
msgid "DataLab Version 1.0.3"
25+
msgstr ""
26+
27+
msgid "🛠️ Bug Fixes since version 1.0.2"
28+
msgstr "🛠️ Correctifs depuis la version 1.0.2"
29+
30+
msgid "**Macro execution:**"
31+
msgstr "**Exécution des macros :**"
32+
33+
#, python-brace-format
34+
msgid "Fixed syntax errors when using f-strings with nested quotes in macros (e.g., `f'text {func(\"arg\")}'` now works correctly)"
35+
msgstr "Correction des erreurs de syntaxe lors de l'utilisation de f-strings avec des guillemets imbriqués dans les macros (par exemple, `f'text {func(\"arg\")}'` fonctionne désormais correctement)"
36+
37+
msgid "Fixed corrupted Unicode characters in macro console output on Windows - special characters like ✅, 💡, and → now display correctly instead of showing garbled text"
38+
msgstr "Correction des caractères Unicode corrompus dans la sortie de la console des macros sous Windows - les caractères spéciaux comme ✅, 💡 et → s'affichent désormais correctement au lieu d'afficher du texte illisible"
39+
2440
msgid "DataLab Version 1.0.2 (2025-12-03)"
2541
msgstr "DataLab Version 1.0.2 (03/12/2025)"
2642

27-
msgid "🛠️ Bug Fixes"
28-
msgstr "🛠️ Correctifs"
43+
msgid "🛠️ Bug Fixes since version 1.0.1"
44+
msgstr "🛠️ Correctifs depuis la version 1.0.1"
2945

3046
msgid "**Signal axis calibration - Replace X by other signal's Y:**"
3147
msgstr "**Calibration de l'axe des signaux - Remplacer X par le Y d'un autre signal :**"
@@ -84,9 +100,6 @@ msgstr "Correction de l'erreur `AttributeError: 'NoneType' object has no attribu
84100
msgid "This closes [Issue #269](https://github.com/datalab-platform/datalab/issues/269) - Custom Signal Creation: `AttributeError` when creating signal from menu"
85101
msgstr "Ceci clôture [Issue #269](https://github.com/datalab-platform/datalab/issues/269) - Création de signaux personnalisés : `AttributeError` lors de la création d'un signal à partir du menu"
86102

87-
msgid "**Macro execution:**"
88-
msgstr "**Exécution des macros :**"
89-
90103
msgid "Fixed `UnicodeEncodeError` when executing macros that print Unicode characters (e.g., arrows `→`) on Windows systems with certain locales, e.g. cp1252 (closes [Issue #263](https://github.com/datalab-platform/datalab/issues/263))"
91104
msgstr "Correction de l'erreur `UnicodeEncodeError` lors de l'exécution de macros qui impriment des caractères Unicode (par exemple, des flèches `→`) sur les systèmes Windows avec certaines locales, par exemple cp1252 (ceci clôture [Issue #263](https://github.com/datalab-platform/datalab/issues/263))"
92105

doc/release_notes/release_1.00.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Version 1.0 #
22

3+
## DataLab Version 1.0.3 ##
4+
5+
### 🛠️ Bug Fixes since version 1.0.2 ###
6+
7+
**Macro execution:**
8+
9+
* Fixed syntax errors when using f-strings with nested quotes in macros (e.g., `f'text {func("arg")}'` now works correctly)
10+
* Fixed corrupted Unicode characters in macro console output on Windows - special characters like ✅, 💡, and → now display correctly instead of showing garbled text
11+
312
## DataLab Version 1.0.2 (2025-12-03) ##
413

5-
### 🛠️ Bug Fixes ###
14+
### 🛠️ Bug Fixes since version 1.0.1 ###
615

716
**Signal axis calibration - Replace X by other signal's Y:**
817

0 commit comments

Comments
 (0)