-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from kevung/cmd_history
Cmd history
- Loading branch information
Showing
16 changed files
with
592 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.. _annexe_db_migration: | ||
|
||
Annexe: Schéma de la base de données | ||
==================================== | ||
|
||
Version 1.0.0 | ||
------------- | ||
|
||
La version 1.0.0 de la base de données contient les tables suivantes : | ||
|
||
- **position** : Stocke les positions avec les colonnes `id` (clé primaire) et `state` (état de la position en format JSON). | ||
- **analysis** : Stocke les analyses des positions avec les colonnes `id` (clé primaire), `position_id` (clé étrangère vers `position`), et `data` (données de l'analyse en format JSON). | ||
- **comment** : Stocke les commentaires associés aux positions avec les colonnes `id` (clé primaire), `position_id` (clé étrangère vers `position`), et `text` (texte du commentaire). | ||
- **metadata** : Stocke les métadonnées de la base de données avec les colonnes `key` (clé primaire) et `value` (valeur associée à la clé). | ||
|
||
Version 1.1.0 | ||
------------- | ||
|
||
La version 1.1.0 de la base de données ajoute la table suivante : | ||
|
||
- **command_history** : Stocke l'historique des commandes avec les colonnes `id` (clé primaire), `command` (texte de la commande), et `timestamp` (date et heure de l'exécution de la commande). | ||
|
||
Les autres tables restent inchangées par rapport à la version 1.0.0. | ||
|
||
Pour migrer la base de données de la version 1.0.0 à la version 1.1.0, exécutez la commande ``migrate_from_1_0_to_1_1`` dans blunderDB. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Copyright (C) 2024, Kevin UNGER <[email protected]> | ||
# This file is distributed under the same license as the blunderDB package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025. | ||
# | ||
# SPDX-FileCopyrightText: 2025 unger <[email protected]> | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: blunderDB \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2025-02-05 15:05+0100\n" | ||
"PO-Revision-Date: 2025-02-05 15:23+0100\n" | ||
"Last-Translator: unger <[email protected]>\n" | ||
"Language: en\n" | ||
"Language-Team: English <[email protected]>\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Generated-By: Babel 2.16.0\n" | ||
"X-Generator: Lokalize 24.12.1\n" | ||
|
||
#: ../../source/annexe_db_scheme.rst:4 | ||
msgid "Annexe: Schéma de la base de données" | ||
msgstr "Annex: Database Schema" | ||
|
||
#: ../../source/annexe_db_scheme.rst:7 | ||
msgid "Version 1.0.0" | ||
msgstr "Version 1.0.0" | ||
|
||
#: ../../source/annexe_db_scheme.rst:9 | ||
msgid "La version 1.0.0 de la base de données contient les tables suivantes :" | ||
msgstr "Version 1.0.0 of the database contains the following tables:" | ||
|
||
#: ../../source/annexe_db_scheme.rst:11 | ||
msgid "" | ||
"**position** : Stocke les positions avec les colonnes `id` (clé primaire)" | ||
" et `state` (état de la position en format JSON)." | ||
msgstr "" | ||
"**position**: Stores the positions with the columns `id` (primary key) and `st" | ||
"ate` (state of the position in JSON format)." | ||
|
||
#: ../../source/annexe_db_scheme.rst:12 | ||
msgid "" | ||
"**analysis** : Stocke les analyses des positions avec les colonnes `id` " | ||
"(clé primaire), `position_id` (clé étrangère vers `position`), et `data` " | ||
"(données de l'analyse en format JSON)." | ||
msgstr "" | ||
"**analysis**: Stores the analyses of the positions with the columns `id` (prim" | ||
"ary key), `position_id` (foreign key referencing `position`), and `data` (anal" | ||
"ysis data in JSON format)." | ||
|
||
#: ../../source/annexe_db_scheme.rst:13 | ||
msgid "" | ||
"**comment** : Stocke les commentaires associés aux positions avec les " | ||
"colonnes `id` (clé primaire), `position_id` (clé étrangère vers " | ||
"`position`), et `text` (texte du commentaire)." | ||
msgstr "" | ||
"**comment**: Stores the comments associated with the positions with the column" | ||
"s `id` (primary key), `position_id` (foreign key referencing `position`), and " | ||
"`text` (comment text)." | ||
|
||
#: ../../source/annexe_db_scheme.rst:14 | ||
msgid "" | ||
"**metadata** : Stocke les métadonnées de la base de données avec les " | ||
"colonnes `key` (clé primaire) et `value` (valeur associée à la clé)." | ||
msgstr "" | ||
"**metadata**: Stores the metadata of the database with the columns `key` (prim" | ||
"ary key) and `value` (value associated with the key)." | ||
|
||
#: ../../source/annexe_db_scheme.rst:17 | ||
msgid "Version 1.1.0" | ||
msgstr "Version 1.1.0" | ||
|
||
#: ../../source/annexe_db_scheme.rst:19 | ||
msgid "La version 1.1.0 de la base de données ajoute la table suivante :" | ||
msgstr "Version 1.1.0 of the database adds the following table:" | ||
|
||
#: ../../source/annexe_db_scheme.rst:21 | ||
msgid "" | ||
"**command_history** : Stocke l'historique des commandes avec les colonnes" | ||
" `id` (clé primaire), `command` (texte de la commande), et `timestamp` " | ||
"(date et heure de l'exécution de la commande)." | ||
msgstr "" | ||
"**command_history**: Stores the command history with the columns `id` (primary" | ||
" key), `command` (text of the command), and `timestamp` (date and time of comm" | ||
"and execution)." | ||
|
||
#: ../../source/annexe_db_scheme.rst:23 | ||
msgid "Les autres tables restent inchangées par rapport à la version 1.0.0." | ||
msgstr "The other tables remain unchanged from version 1.0.0." | ||
|
||
#: ../../source/annexe_db_scheme.rst:25 | ||
msgid "" | ||
"Pour migrer la base de données de la version 1.0.0 à la version 1.1.0, " | ||
"exécutez la commande ``migrate_from_1_0_to_1_1`` dans blunderDB." | ||
msgstr "" | ||
"To migrate the database from version 1.0.0 to version 1.1.0, execute the comma" | ||
"nd ``migrate_from_1_0_to_1_1`` in blunderDB." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: blunderDB \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2025-02-04 14:00+0100\n" | ||
"PO-Revision-Date: 2025-02-04 14:01+0100\n" | ||
"POT-Creation-Date: 2025-02-05 15:05+0100\n" | ||
"PO-Revision-Date: 2025-02-05 15:24+0100\n" | ||
"Last-Translator: Kévin Unger <[email protected]>\n" | ||
"Language: en\n" | ||
"Language-Team: English <[email protected]>\n" | ||
|
@@ -901,6 +901,26 @@ msgstr "" | |
"ahead in the race, with at least 60% winning chances, at least 10 " | ||
"checkers in the zone, and the opponent has between 2 and 3 backcheckers." | ||
|
||
#: ../../source/cmd_mode.rst:183 | ||
msgid "Commandes diverses" | ||
msgstr "Various commands" | ||
|
||
#: ../../source/cmd_mode.rst:1 | ||
msgid "clear, cl" | ||
msgstr "clear, cl" | ||
|
||
#: ../../source/cmd_mode.rst:1 | ||
msgid "Efface l'historique des commandes." | ||
msgstr "Clear the command history." | ||
|
||
#: ../../source/cmd_mode.rst:1 | ||
msgid "migrate_from_1_0_to_1_1" | ||
msgstr "migrate_from_1_0_to_1_1" | ||
|
||
#: ../../source/cmd_mode.rst:1 | ||
msgid "Migre la base de données de la version 1.0 à la version 1.1." | ||
msgstr "Migrate the database from version 1.0 to version 1.1." | ||
|
||
#~ msgid ":n" | ||
#~ msgstr ":n" | ||
|
||
|
Oops, something went wrong.