borse 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.

borse/__about__.py CHANGED
@@ -1,3 +1,3 @@
1
- __version__ = "0.1.0"
1
+ __version__ = "0.1.1"
2
2
  __author__ = "Evan Chen"
3
3
  __license__ = "MIT"
@@ -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.
@@ -1,5 +1,5 @@
1
1
  borse/WORDS.txt,sha256=eEjDg7tmTgtFzhQMQrSNx58UdPpPmnax7JZIHjRGA5g,40575
2
- borse/__about__.py,sha256=0zET0Hr7ZlMR2QzPnTxlIVERltHMYywiz05ap-993o8,67
2
+ borse/__about__.py,sha256=oTfgV7Z0MAlanTueNSDGiVLnYUVSndEv4PScJPHVM8M,67
3
3
  borse/__init__.py,sha256=M5ARPgePzj8zEaqyk11jzt0RtDD5nbhA2KPS31vGJRk,109
4
4
  borse/a1z26.py,sha256=BmkTTxeCu4fvjFRMDSZktJWu0E169H32uga1khkl7gY,964
5
5
  borse/braille.py,sha256=h1q_r_4Am3_RswL3gqsa5Mm076RU0vSY7TSsQ72ExZQ,2642
@@ -10,8 +10,8 @@ borse/morse.py,sha256=nh7ptvXaoIHoUN_eval0-nZRd4oWyDNpDdnxsclx9F0,1818
10
10
  borse/progress.py,sha256=CPsv5SMF4ulHKbZu95_qK2_kpR1_BX1OFWChSoiKl44,4390
11
11
  borse/semaphore.py,sha256=mdU1siRkW4eAAgtCuSdc7aMCr2-DbZOwgmzpGnism8I,3855
12
12
  borse/words.py,sha256=3YifBii9OuMI2eHXAtvENxVM5n0T4eyZTU-NJ7EPmtQ,1023
13
- borse-0.1.0.dist-info/METADATA,sha256=LRsX8A7DmCJIa6pFCisk_MGg7KDhS3ybCPHea6ASnOg,4175
14
- borse-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
15
- borse-0.1.0.dist-info/entry_points.txt,sha256=e3JYLL_H22Xgqe3_TyecetryyyE2kt07nBOGz4T41Ic,42
16
- borse-0.1.0.dist-info/licenses/LICENSE,sha256=gq-dD45uKs1sNrFCbrHXC8PpsWoSauIPzU-NEQHmTEc,1066
17
- borse-0.1.0.dist-info/RECORD,,
13
+ borse-0.1.1.dist-info/METADATA,sha256=0UMdcAjG9TUUgM2fRJkOmWjqd0_113toD59loUAJgtA,4179
14
+ borse-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
15
+ borse-0.1.1.dist-info/entry_points.txt,sha256=e3JYLL_H22Xgqe3_TyecetryyyE2kt07nBOGz4T41Ic,42
16
+ borse-0.1.1.dist-info/licenses/LICENSE,sha256=gq-dD45uKs1sNrFCbrHXC8PpsWoSauIPzU-NEQHmTEc,1066
17
+ borse-0.1.1.dist-info/RECORD,,
File without changes