borse 0.1.0__tar.gz → 0.1.1__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.

Potentially problematic release.


This version of borse might be problematic. Click here for more details.

Files changed (32) hide show
  1. {borse-0.1.0 → borse-0.1.1}/PKG-INFO +7 -8
  2. {borse-0.1.0 → borse-0.1.1}/README.md +5 -6
  3. {borse-0.1.0 → borse-0.1.1}/pyproject.toml +1 -1
  4. {borse-0.1.0 → borse-0.1.1}/src/borse/__about__.py +1 -1
  5. {borse-0.1.0 → borse-0.1.1}/.github/workflows/ci.yml +0 -0
  6. {borse-0.1.0 → borse-0.1.1}/.github/workflows/conv-commit.yml +0 -0
  7. {borse-0.1.0 → borse-0.1.1}/.github/workflows/release.yml +0 -0
  8. {borse-0.1.0 → borse-0.1.1}/.gitignore +0 -0
  9. {borse-0.1.0 → borse-0.1.1}/.pre-commit-config.yml +0 -0
  10. {borse-0.1.0 → borse-0.1.1}/CLAUDE.md +0 -0
  11. {borse-0.1.0 → borse-0.1.1}/LICENSE +0 -0
  12. {borse-0.1.0 → borse-0.1.1}/morse-tree.jpg +0 -0
  13. {borse-0.1.0 → borse-0.1.1}/src/borse/WORDS.txt +0 -0
  14. {borse-0.1.0 → borse-0.1.1}/src/borse/__init__.py +0 -0
  15. {borse-0.1.0 → borse-0.1.1}/src/borse/a1z26.py +0 -0
  16. {borse-0.1.0 → borse-0.1.1}/src/borse/braille.py +0 -0
  17. {borse-0.1.0 → borse-0.1.1}/src/borse/config.py +0 -0
  18. {borse-0.1.0 → borse-0.1.1}/src/borse/game.py +0 -0
  19. {borse-0.1.0 → borse-0.1.1}/src/borse/main.py +0 -0
  20. {borse-0.1.0 → borse-0.1.1}/src/borse/morse.py +0 -0
  21. {borse-0.1.0 → borse-0.1.1}/src/borse/progress.py +0 -0
  22. {borse-0.1.0 → borse-0.1.1}/src/borse/semaphore.py +0 -0
  23. {borse-0.1.0 → borse-0.1.1}/src/borse/words.py +0 -0
  24. {borse-0.1.0 → borse-0.1.1}/tests/__init__.py +0 -0
  25. {borse-0.1.0 → borse-0.1.1}/tests/test_a1z26.py +0 -0
  26. {borse-0.1.0 → borse-0.1.1}/tests/test_braille.py +0 -0
  27. {borse-0.1.0 → borse-0.1.1}/tests/test_config.py +0 -0
  28. {borse-0.1.0 → borse-0.1.1}/tests/test_morse.py +0 -0
  29. {borse-0.1.0 → borse-0.1.1}/tests/test_progress.py +0 -0
  30. {borse-0.1.0 → borse-0.1.1}/tests/test_semaphore.py +0 -0
  31. {borse-0.1.0 → borse-0.1.1}/tests/test_words.py +0 -0
  32. {borse-0.1.0 → borse-0.1.1}/uv.lock +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: borse
3
- Version: 0.1.0
4
- Summary: A terminal game for practicing Morse code, Braille, and semaphore.
3
+ Version: 0.1.1
4
+ Summary: Practice braille, Morse, semaphore.
5
5
  Project-URL: repository, https://github.com/vEnhance/borse
6
6
  Author-email: Evan Chen <evan@evanchen.cc>
7
7
  License: MIT
@@ -29,13 +29,12 @@ Or you can install from PyPI by using `uv`, `pip`, etc.
29
29
 
30
30
  ## Configuration
31
31
 
32
- Configuration is stored in `~/.config/borse/config.json` by default:
32
+ Configuration is stored in `~/.config/borse/config.toml` by default, e.g.
33
33
 
34
- ```json
35
- {
36
- "progress_file": "~/.config/borse/progress.json",
37
- "words_per_game": 10
38
- }
34
+ ```toml
35
+ progress_file = "/home/evan/.config/borse/progress.json"
36
+ words_per_game = 10
37
+ single_letter_probability = 0.3
39
38
  ```
40
39
 
41
40
  Your daily progress is also automatically saved and displayed on the main menu.
@@ -16,13 +16,12 @@ Or you can install from PyPI by using `uv`, `pip`, etc.
16
16
 
17
17
  ## Configuration
18
18
 
19
- Configuration is stored in `~/.config/borse/config.json` by default:
19
+ Configuration is stored in `~/.config/borse/config.toml` by default, e.g.
20
20
 
21
- ```json
22
- {
23
- "progress_file": "~/.config/borse/progress.json",
24
- "words_per_game": 10
25
- }
21
+ ```toml
22
+ progress_file = "/home/evan/.config/borse/progress.json"
23
+ words_per_game = 10
24
+ single_letter_probability = 0.3
26
25
  ```
27
26
 
28
27
  Your daily progress is also automatically saved and displayed on the main menu.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "borse"
3
- description = "A terminal game for practicing Morse code, Braille, and semaphore."
3
+ description = "Practice braille, Morse, semaphore."
4
4
  readme = "README.md"
5
5
  requires-python = ">=3.10,<4.0"
6
6
  dependencies = [
@@ -1,3 +1,3 @@
1
- __version__ = "0.1.0"
1
+ __version__ = "0.1.1"
2
2
  __author__ = "Evan Chen"
3
3
  __license__ = "MIT"
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
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
File without changes
File without changes