fletchtime 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. {fletchtime-0.2.2/src/fletchtime.egg-info → fletchtime-0.2.3}/PKG-INFO +5 -2
  2. {fletchtime-0.2.2 → fletchtime-0.2.3}/README.md +4 -1
  3. fletchtime-0.2.3/REMERCIEMENTS.md +30 -0
  4. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/index.md +2 -1
  5. fletchtime-0.2.3/docs/remerciements.md +5 -0
  6. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/roadmap.md +6 -0
  7. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/_version.py +3 -3
  8. {fletchtime-0.2.2 → fletchtime-0.2.3/src/fletchtime.egg-info}/PKG-INFO +5 -2
  9. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/SOURCES.txt +2 -0
  10. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/scm_file_list.json +2 -0
  11. fletchtime-0.2.3/src/fletchtime.egg-info/scm_version.json +8 -0
  12. fletchtime-0.2.2/src/fletchtime.egg-info/scm_version.json +0 -8
  13. {fletchtime-0.2.2 → fletchtime-0.2.3}/.github/workflows/build.yml +0 -0
  14. {fletchtime-0.2.2 → fletchtime-0.2.3}/.github/workflows/docs.yml +0 -0
  15. {fletchtime-0.2.2 → fletchtime-0.2.3}/.github/workflows/test.yml +0 -0
  16. {fletchtime-0.2.2 → fletchtime-0.2.3}/.gitignore +0 -0
  17. {fletchtime-0.2.2 → fletchtime-0.2.3}/CONTRIBUTING.md +0 -0
  18. {fletchtime-0.2.2 → fletchtime-0.2.3}/LICENSE +0 -0
  19. {fletchtime-0.2.2 → fletchtime-0.2.3}/config/app.toml +0 -0
  20. {fletchtime-0.2.2 → fletchtime-0.2.3}/config/flint.toml +0 -0
  21. {fletchtime-0.2.2 → fletchtime-0.2.3}/config/indoor.toml +0 -0
  22. {fletchtime-0.2.2 → fletchtime-0.2.3}/demo.py +0 -0
  23. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/_static/logo.svg +0 -0
  24. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/api-reference.md +0 -0
  25. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/architecture.md +0 -0
  26. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/conf.py +0 -0
  27. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/dev-guide/index.md +0 -0
  28. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/requirements.txt +0 -0
  29. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/specifications.md +0 -0
  30. {fletchtime-0.2.2 → fletchtime-0.2.3}/docs/user-guide/index.md +0 -0
  31. {fletchtime-0.2.2 → fletchtime-0.2.3}/fletchtime.spec +0 -0
  32. {fletchtime-0.2.2 → fletchtime-0.2.3}/pyproject.toml +0 -0
  33. {fletchtime-0.2.2 → fletchtime-0.2.3}/run_server.py +0 -0
  34. {fletchtime-0.2.2 → fletchtime-0.2.3}/run_tests.py +0 -0
  35. {fletchtime-0.2.2 → fletchtime-0.2.3}/scripts/generate_classic_sounds.py +0 -0
  36. {fletchtime-0.2.2 → fletchtime-0.2.3}/setup.cfg +0 -0
  37. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/__init__.py +0 -0
  38. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/__main__.py +0 -0
  39. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/__init__.py +0 -0
  40. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/engine.py +0 -0
  41. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/models.py +0 -0
  42. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/modes/__init__.py +0 -0
  43. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/modes/base.py +0 -0
  44. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/modes/flint.py +0 -0
  45. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/modes/indoor.py +0 -0
  46. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/sequence.py +0 -0
  47. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/engine/turn_modes.py +0 -0
  48. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/gui.py +0 -0
  49. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/logging_setup.py +0 -0
  50. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/runtime.py +0 -0
  51. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/server/__init__.py +0 -0
  52. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/server/config_store.py +0 -0
  53. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/server/http_static.py +0 -0
  54. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/server/match_server.py +0 -0
  55. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/server/ws_server.py +0 -0
  56. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/__init__.py +0 -0
  57. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/banners/README.md +0 -0
  58. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/club/README.md +0 -0
  59. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/gui/theme.json +0 -0
  60. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/README.md +0 -0
  61. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/countdown_tick.wav +0 -0
  62. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/emergency_end.wav +0 -0
  63. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/emergency_start.wav +0 -0
  64. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/end_of_match.wav +0 -0
  65. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/end_of_volee.wav +0 -0
  66. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/pause_end.wav +0 -0
  67. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/pause_start.wav +0 -0
  68. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/prep_start.wav +0 -0
  69. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/shoot_start.wav +0 -0
  70. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/sounds/packs/classic/warning_orange.wav +0 -0
  71. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/targets/flint_20cm_4spot.jpg +0 -0
  72. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/targets/flint_35cm_1spot.jpg +0 -0
  73. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/targets/indoor_compound.jpg +0 -0
  74. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/_defaults/targets/indoor_recurve.jpg +0 -0
  75. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/config.html +0 -0
  76. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/control.html +0 -0
  77. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/display.html +0 -0
  78. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/i18n.js +0 -0
  79. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/index.html +0 -0
  80. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/logo.svg +0 -0
  81. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/manual.html +0 -0
  82. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/screenshots/config.png +0 -0
  83. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/screenshots/control.png +0 -0
  84. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/screenshots/display.png +0 -0
  85. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/screenshots/index.png +0 -0
  86. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime/web/theme.js +0 -0
  87. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/dependency_links.txt +0 -0
  88. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/entry_points.txt +0 -0
  89. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/requires.txt +0 -0
  90. {fletchtime-0.2.2 → fletchtime-0.2.3}/src/fletchtime.egg-info/top_level.txt +0 -0
  91. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_config_store.py +0 -0
  92. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_engine.py +0 -0
  93. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_flint_mode.py +0 -0
  94. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_indoor_mode.py +0 -0
  95. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_match_server.py +0 -0
  96. {fletchtime-0.2.2 → fletchtime-0.2.3}/tests/test_runtime.py +0 -0
  97. {fletchtime-0.2.2 → fletchtime-0.2.3}/web/assets/banners/README.md +0 -0
  98. {fletchtime-0.2.2 → fletchtime-0.2.3}/web/assets/sounds/packs/README.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fletchtime
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Chronométrage de compétitions d'archerie FFTL (Indoor, Flint) -- serveur + interfaces web incluses
5
5
  License: GPL-3.0-or-later
6
6
  Requires-Python: >=3.11
@@ -21,7 +21,7 @@ Dynamic: license-file
21
21
 
22
22
  <img src="https://mrfanghodev.github.io/fletchtime/_static/logo.svg" width="80" height="80" alt="FletchTime logo">
23
23
 
24
- [![Python](https://img.shields.io/badge/python-version-from-pep-621-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FMrFanghoDev%2Ffletchtime%2Fmaster%2Fpyproject.toml)](pyproject.toml)
24
+ [![Python](https://img.shields.io/badge/python-3.11%2B-blue)](pyproject.toml)
25
25
  [![Licence](https://img.shields.io/github/license/MrFanghoDev/fletchtime)](LICENSE)
26
26
  [![Tests](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml)
27
27
  [![PyPI](https://img.shields.io/pypi/v/fletchtime)](https://pypi.org/project/fletchtime/)
@@ -156,6 +156,9 @@ Envie de proposer un correctif, une idée, ou juste signaler un bug ? Voir
156
156
  [CONTRIBUTING.md](CONTRIBUTING.md) (français/anglais) -- processus
157
157
  volontairement simple, flux classique fork/branche/Pull Request.
158
158
 
159
+ Merci aux membres du club qui ont testé l'outil et proposé des idées au
160
+ fil du développement -- voir [REMERCIEMENTS.md](REMERCIEMENTS.md).
161
+
159
162
  ## Qualité continue
160
163
 
161
164
  Chaque push et pull request déclenche `.github/workflows/test.yml` :
@@ -1,6 +1,6 @@
1
1
  <img src="https://mrfanghodev.github.io/fletchtime/_static/logo.svg" width="80" height="80" alt="FletchTime logo">
2
2
 
3
- [![Python](https://img.shields.io/badge/python-version-from-pep-621-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FMrFanghoDev%2Ffletchtime%2Fmaster%2Fpyproject.toml)](pyproject.toml)
3
+ [![Python](https://img.shields.io/badge/python-3.11%2B-blue)](pyproject.toml)
4
4
  [![Licence](https://img.shields.io/github/license/MrFanghoDev/fletchtime)](LICENSE)
5
5
  [![Tests](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml)
6
6
  [![PyPI](https://img.shields.io/pypi/v/fletchtime)](https://pypi.org/project/fletchtime/)
@@ -135,6 +135,9 @@ Envie de proposer un correctif, une idée, ou juste signaler un bug ? Voir
135
135
  [CONTRIBUTING.md](CONTRIBUTING.md) (français/anglais) -- processus
136
136
  volontairement simple, flux classique fork/branche/Pull Request.
137
137
 
138
+ Merci aux membres du club qui ont testé l'outil et proposé des idées au
139
+ fil du développement -- voir [REMERCIEMENTS.md](REMERCIEMENTS.md).
140
+
138
141
  ## Qualité continue
139
142
 
140
143
  Chaque push et pull request déclenche `.github/workflows/test.yml` :
@@ -0,0 +1,30 @@
1
+ # Remerciements
2
+
3
+ <!-- sphinx-include-start -->
4
+
5
+ FletchTime doit beaucoup aux membres du club (Les Archers
6
+ Libres de Fontaine le Port) qui ont testé l'outil en conditions réelles,
7
+ remonté des bugs, et proposé des idées qui ont façonné le projet au fil
8
+ de son développement.
9
+
10
+ Un grand merci à :
11
+
12
+ - **Fangho** -- Intention initiale
13
+ - **Xavier** -- Primo testeur
14
+ - **Fabrice** -- Concours multi-serveurs
15
+ - **Caro** -- Ne pas oublier les Remerciements!
16
+
17
+ <!--
18
+ Modèle à remplir : une ligne par personne, avec ce qu'elle a apporté si
19
+ tu veux être précis·e (pas obligatoire -- juste le nom suffit aussi).
20
+ Pas d'ordre particulier attendu (alphabétique, chronologique, ou
21
+ simplement dans l'ordre où ça te vient -- comme tu préfères).
22
+ -->
23
+
24
+ ---
25
+
26
+ *Tu as testé FletchTime ou proposé une idée et tu ne te retrouves pas
27
+ dans cette liste ? Fais-le savoir pour qu'on corrige ça.*
28
+
29
+ *Envie de contribuer plus directement (code, documentation) ? Voir
30
+ [CONTRIBUTING.md](CONTRIBUTING.md).*
@@ -4,7 +4,7 @@
4
4
  :align: center
5
5
  ```
6
6
 
7
- [![Python](https://img.shields.io/badge/python-version-from-pep-621-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FMrFanghoDev%2Ffletchtime%2Fmaster%2Fpyproject.toml)](https://github.com/MrFanghoDev/fletchtime/blob/master/pyproject.toml)
7
+ [![Python](https://img.shields.io/badge/python-3.11%2B-blue)](https://github.com/MrFanghoDev/fletchtime/blob/master/pyproject.toml)
8
8
  [![Licence](https://img.shields.io/github/license/MrFanghoDev/fletchtime)](https://github.com/MrFanghoDev/fletchtime/blob/master/LICENSE)
9
9
  [![Tests](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml)
10
10
  [![PyPI](https://img.shields.io/pypi/v/fletchtime)](https://pypi.org/project/fletchtime/)
@@ -30,6 +30,7 @@ page d'accueil, pas ici) -- voir {doc}`user-guide/index`.
30
30
  specifications
31
31
  architecture
32
32
  roadmap
33
+ remerciements
33
34
  user-guide/index
34
35
  dev-guide/index
35
36
  api-reference
@@ -0,0 +1,5 @@
1
+ # Remerciements
2
+
3
+ ```{include} ../REMERCIEMENTS.md
4
+ :start-after: sphinx-include-start
5
+ ```
@@ -73,6 +73,12 @@ dépendent d'extensions compilées (Rust/C) peu fiables sur Pydroid 3, voir
73
73
 
74
74
  ## Backlog — à discuter / non encore programmé dans une étape précise
75
75
 
76
+ - ~~**Remerciements**~~ -- structure prête, à compléter : `REMERCIEMENTS.md`
77
+ (modèle à remplir avec les noms), lié depuis le README et intégré à la
78
+ doc Sphinx ({doc}`remerciements` -- même contenu, pas dupliqué, via une
79
+ inclusion). Les membres du club ont aidé à tester et proposé des idées
80
+ au fil du développement -- reste à toi d'ajouter les noms.
81
+
76
82
  - ~~**Journal applicatif persistant**~~ -- fait : `MatchServer` journalise
77
83
  désormais chaque commande reçue, (dé)connexion, perte de connexion
78
84
  réseau et message malformé dans un fichier avec rotation
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.2.2'
22
- __version_tuple__ = version_tuple = (0, 2, 2)
21
+ __version__ = version = '0.2.3'
22
+ __version_tuple__ = version_tuple = (0, 2, 3)
23
23
 
24
- __commit_id__ = commit_id = 'gceb71f360'
24
+ __commit_id__ = commit_id = 'gd2257b057'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fletchtime
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Chronométrage de compétitions d'archerie FFTL (Indoor, Flint) -- serveur + interfaces web incluses
5
5
  License: GPL-3.0-or-later
6
6
  Requires-Python: >=3.11
@@ -21,7 +21,7 @@ Dynamic: license-file
21
21
 
22
22
  <img src="https://mrfanghodev.github.io/fletchtime/_static/logo.svg" width="80" height="80" alt="FletchTime logo">
23
23
 
24
- [![Python](https://img.shields.io/badge/python-version-from-pep-621-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FMrFanghoDev%2Ffletchtime%2Fmaster%2Fpyproject.toml)](pyproject.toml)
24
+ [![Python](https://img.shields.io/badge/python-3.11%2B-blue)](pyproject.toml)
25
25
  [![Licence](https://img.shields.io/github/license/MrFanghoDev/fletchtime)](LICENSE)
26
26
  [![Tests](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/MrFanghoDev/fletchtime/actions/workflows/test.yml)
27
27
  [![PyPI](https://img.shields.io/pypi/v/fletchtime)](https://pypi.org/project/fletchtime/)
@@ -156,6 +156,9 @@ Envie de proposer un correctif, une idée, ou juste signaler un bug ? Voir
156
156
  [CONTRIBUTING.md](CONTRIBUTING.md) (français/anglais) -- processus
157
157
  volontairement simple, flux classique fork/branche/Pull Request.
158
158
 
159
+ Merci aux membres du club qui ont testé l'outil et proposé des idées au
160
+ fil du développement -- voir [REMERCIEMENTS.md](REMERCIEMENTS.md).
161
+
159
162
  ## Qualité continue
160
163
 
161
164
  Chaque push et pull request déclenche `.github/workflows/test.yml` :
@@ -2,6 +2,7 @@
2
2
  CONTRIBUTING.md
3
3
  LICENSE
4
4
  README.md
5
+ REMERCIEMENTS.md
5
6
  demo.py
6
7
  fletchtime.spec
7
8
  pyproject.toml
@@ -17,6 +18,7 @@ docs/api-reference.md
17
18
  docs/architecture.md
18
19
  docs/conf.py
19
20
  docs/index.md
21
+ docs/remerciements.md
20
22
  docs/requirements.txt
21
23
  docs/roadmap.md
22
24
  docs/specifications.md
@@ -7,6 +7,7 @@
7
7
  "run_server.py",
8
8
  "pyproject.toml",
9
9
  "fletchtime.spec",
10
+ "REMERCIEMENTS.md",
10
11
  "LICENSE",
11
12
  "demo.py",
12
13
  "src/fletchtime/gui.py",
@@ -76,6 +77,7 @@
76
77
  "tests/test_flint_mode.py",
77
78
  "docs/conf.py",
78
79
  "docs/specifications.md",
80
+ "docs/remerciements.md",
79
81
  "docs/requirements.txt",
80
82
  "docs/roadmap.md",
81
83
  "docs/api-reference.md",
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "0.2.3",
3
+ "distance": 0,
4
+ "node": "gd2257b057b557c4037567f28ef78634f8bb59e70",
5
+ "dirty": false,
6
+ "branch": "HEAD",
7
+ "node_date": "2026-07-20"
8
+ }
@@ -1,8 +0,0 @@
1
- {
2
- "tag": "0.2.2",
3
- "distance": 0,
4
- "node": "gceb71f360e75d8fddce1758cdf80d1ca1f4431b7",
5
- "dirty": false,
6
- "branch": "HEAD",
7
- "node_date": "2026-07-19"
8
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes