ankigammon 1.0.6__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.
Files changed (61) hide show
  1. ankigammon/__init__.py +7 -0
  2. ankigammon/__main__.py +6 -0
  3. ankigammon/analysis/__init__.py +13 -0
  4. ankigammon/analysis/score_matrix.py +391 -0
  5. ankigammon/anki/__init__.py +6 -0
  6. ankigammon/anki/ankiconnect.py +216 -0
  7. ankigammon/anki/apkg_exporter.py +111 -0
  8. ankigammon/anki/card_generator.py +1325 -0
  9. ankigammon/anki/card_styles.py +1054 -0
  10. ankigammon/gui/__init__.py +8 -0
  11. ankigammon/gui/app.py +192 -0
  12. ankigammon/gui/dialogs/__init__.py +10 -0
  13. ankigammon/gui/dialogs/export_dialog.py +594 -0
  14. ankigammon/gui/dialogs/import_options_dialog.py +201 -0
  15. ankigammon/gui/dialogs/input_dialog.py +762 -0
  16. ankigammon/gui/dialogs/note_dialog.py +93 -0
  17. ankigammon/gui/dialogs/settings_dialog.py +420 -0
  18. ankigammon/gui/dialogs/update_dialog.py +373 -0
  19. ankigammon/gui/format_detector.py +377 -0
  20. ankigammon/gui/main_window.py +1611 -0
  21. ankigammon/gui/resources/down-arrow.svg +3 -0
  22. ankigammon/gui/resources/icon.icns +0 -0
  23. ankigammon/gui/resources/icon.ico +0 -0
  24. ankigammon/gui/resources/icon.png +0 -0
  25. ankigammon/gui/resources/style.qss +402 -0
  26. ankigammon/gui/resources.py +26 -0
  27. ankigammon/gui/update_checker.py +259 -0
  28. ankigammon/gui/widgets/__init__.py +8 -0
  29. ankigammon/gui/widgets/position_list.py +166 -0
  30. ankigammon/gui/widgets/smart_input.py +268 -0
  31. ankigammon/models.py +356 -0
  32. ankigammon/parsers/__init__.py +7 -0
  33. ankigammon/parsers/gnubg_match_parser.py +1094 -0
  34. ankigammon/parsers/gnubg_parser.py +468 -0
  35. ankigammon/parsers/sgf_parser.py +290 -0
  36. ankigammon/parsers/xg_binary_parser.py +1097 -0
  37. ankigammon/parsers/xg_text_parser.py +688 -0
  38. ankigammon/renderer/__init__.py +5 -0
  39. ankigammon/renderer/animation_controller.py +391 -0
  40. ankigammon/renderer/animation_helper.py +191 -0
  41. ankigammon/renderer/color_schemes.py +145 -0
  42. ankigammon/renderer/svg_board_renderer.py +791 -0
  43. ankigammon/settings.py +315 -0
  44. ankigammon/thirdparty/__init__.py +7 -0
  45. ankigammon/thirdparty/xgdatatools/__init__.py +17 -0
  46. ankigammon/thirdparty/xgdatatools/xgimport.py +160 -0
  47. ankigammon/thirdparty/xgdatatools/xgstruct.py +1032 -0
  48. ankigammon/thirdparty/xgdatatools/xgutils.py +118 -0
  49. ankigammon/thirdparty/xgdatatools/xgzarc.py +260 -0
  50. ankigammon/utils/__init__.py +13 -0
  51. ankigammon/utils/gnubg_analyzer.py +590 -0
  52. ankigammon/utils/gnuid.py +577 -0
  53. ankigammon/utils/move_parser.py +204 -0
  54. ankigammon/utils/ogid.py +326 -0
  55. ankigammon/utils/xgid.py +387 -0
  56. ankigammon-1.0.6.dist-info/METADATA +352 -0
  57. ankigammon-1.0.6.dist-info/RECORD +61 -0
  58. ankigammon-1.0.6.dist-info/WHEEL +5 -0
  59. ankigammon-1.0.6.dist-info/entry_points.txt +2 -0
  60. ankigammon-1.0.6.dist-info/licenses/LICENSE +21 -0
  61. ankigammon-1.0.6.dist-info/top_level.txt +1 -0
@@ -0,0 +1,352 @@
1
+ Metadata-Version: 2.4
2
+ Name: ankigammon
3
+ Version: 1.0.6
4
+ Summary: Convert eXtreme Gammon backgammon analysis into Anki flashcards
5
+ Author-email: AnkiGammon Contributors <admin@ankigammon.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/Deinonychus999/AnkiGammon
8
+ Project-URL: Repository, https://github.com/Deinonychus999/AnkiGammon
9
+ Project-URL: Documentation, https://github.com/Deinonychus999/AnkiGammon#readme
10
+ Project-URL: Issues, https://github.com/Deinonychus999/AnkiGammon/issues
11
+ Keywords: anki,flashcards,backgammon,extreme-gammon,xg,learning,spaced-repetition
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: End Users/Desktop
14
+ Classifier: Topic :: Games/Entertainment :: Board Games
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: genanki>=0.13.0
25
+ Requires-Dist: requests>=2.31.0
26
+ Requires-Dist: PySide6>=6.6.0
27
+ Requires-Dist: PySide6-Addons>=6.6.0
28
+ Requires-Dist: qtawesome>=1.3.0
29
+ Provides-Extra: dev
30
+ Requires-Dist: pyinstaller>=6.0.0; extra == "dev"
31
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
32
+ Dynamic: license-file
33
+
34
+ # AnkiGammon
35
+
36
+ A graphical application for converting backgammon positions into Anki flashcards. Analyze positions from eXtreme Gammon, OpenGammon, or GNU Backgammon and create smart study cards.
37
+
38
+ [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/X8X31NIT0H)
39
+
40
+ ## Features
41
+
42
+ - **Modern GUI interface** - Easy-to-use graphical application with drag-and-drop support
43
+ - **Multiple input formats** - XGID/OGID/GNUID position IDs, XG binary files (.xg), match files (.mat), SGF files
44
+ - **Direct XG export support** - Copy/paste pre-analyzed positions from eXtreme Gammon
45
+ - **File import with filtering** - Drag-and-drop files with error threshold and player selection
46
+ - **GNU Backgammon integration** - Analyze unanalyzed positions automatically
47
+ - **Automatic format detection** - Paste any supported format, the app detects it automatically
48
+ - **Two export methods**:
49
+ - AnkiConnect: Push directly to Anki (recommended)
50
+ - APKG: Self-contained package for manual import
51
+ - **Customizable appearance** - 6 color schemes, board orientation, configurable MCQ options (2-10)
52
+ - **Position management** - Multi-select, add notes, preview positions before export
53
+
54
+ ## Installation
55
+
56
+ ### Standalone Executable (Recommended)
57
+
58
+ Download pre-built executables from [GitHub Releases](https://github.com/Deinonychus999/AnkiGammon/releases):
59
+
60
+ **Windows:**
61
+ 1. Download `ankigammon-windows.zip` from the latest release
62
+ 2. Extract the ZIP file
63
+ 3. Double-click `ankigammon.exe`
64
+ 4. **Windows SmartScreen Warning:** Click "More info" → "Run anyway"
65
+ - This warning appears because the app is not code-signed
66
+ - The application is safe and open-source
67
+
68
+ **macOS:**
69
+ 1. Download `AnkiGammon-macOS.dmg` from the latest release
70
+ 2. Open the DMG file
71
+ 3. Drag AnkiGammon to your Applications folder
72
+ 4. **First time only:** Right-click AnkiGammon → Open
73
+ - If blocked, go to System Settings → Privacy & Security
74
+ - Scroll down and click "Open Anyway"
75
+ - Enter your password when prompted
76
+ 5. After first run, you can open AnkiGammon normally
77
+
78
+ **Why do I see a security warning on macOS?**
79
+ AnkiGammon is not code-signed because that requires a $99/year Apple Developer account. The app is open-source and safe to use.
80
+
81
+ **Linux:**
82
+ 1. Download `AnkiGammon-x86_64.AppImage` from the latest release
83
+ 2. Make it executable:
84
+ - Right-click → Properties → Permissions → "Allow executing file as program"
85
+ - Or via terminal: `chmod +x AnkiGammon-x86_64.AppImage`
86
+ 3. Double-click to run!
87
+
88
+ **Note for Ubuntu 22.04+ users:** If the AppImage doesn't run, install FUSE 2:
89
+ - Ubuntu 22.04: `sudo apt install libfuse2`
90
+ - Ubuntu 24.04: `sudo apt install libfuse2t64`
91
+
92
+ ### Install via pip
93
+
94
+ [![PyPI version](https://badge.fury.io/py/ankigammon.svg)](https://pypi.org/project/ankigammon/)
95
+
96
+ If you have Python 3.8+ installed:
97
+
98
+ ```bash
99
+ pip install ankigammon
100
+ ankigammon # Launch the GUI
101
+ ```
102
+
103
+ ### Development Install
104
+
105
+ For developers who want to run from source:
106
+
107
+ ```bash
108
+ git clone https://github.com/Deinonychus999/AnkiGammon.git
109
+ cd AnkiGammon
110
+ pip install -e . # Install in editable mode
111
+ ankigammon # Launches the GUI
112
+ ```
113
+
114
+ ## Usage
115
+
116
+ 1. **Launch the application**:
117
+ - Windows: Double-click `ankigammon.exe`
118
+ - macOS: Open AnkiGammon from Applications folder
119
+ - Linux: Double-click `AnkiGammon-x86_64.AppImage`
120
+ - From PyPI install: Run `ankigammon` in terminal
121
+ 2. **Add positions** (choose one or more methods):
122
+ - **Paste XG analysis**: Press Ctrl+N, paste pre-analyzed positions from eXtreme Gammon (Ctrl+C)
123
+ - **Paste position IDs**: Press Ctrl+N, paste XGID/OGID/GNUID strings (requires GNU Backgammon for analysis)
124
+ - **Import files**: Press Ctrl+O or drag-and-drop files (.xg, .mat, .sgf, .txt)
125
+ - For match files: Choose error threshold and which player's mistakes to import
126
+ 3. **Configure settings** - Choose color scheme, board orientation, and export method (Ctrl+,)
127
+ 4. **Generate cards** - Click "Generate Cards" (Ctrl+E) to create Anki flashcards
128
+
129
+ ### Keyboard Shortcuts
130
+
131
+ - **Ctrl+N** - Add positions
132
+ - **Ctrl+O** - Import file
133
+ - **Ctrl+E** - Export cards
134
+ - **Ctrl+,** - Settings
135
+ - **Ctrl+Q** - Quit
136
+ - **Delete/Backspace** - Remove selected positions
137
+
138
+ ### Position Analysis
139
+
140
+ Unanalyzed positions (position IDs, match files, SGF files) can be analyzed using GNU Backgammon if configured in Settings (see Customization Options below).
141
+
142
+ ## Supported Formats
143
+
144
+ AnkiGammon supports multiple input formats with automatic detection:
145
+
146
+ ### XG Text Export (Pre-Analyzed)
147
+
148
+ Import **pre-analyzed positions** directly from eXtreme Gammon:
149
+
150
+ 1. In eXtreme Gammon, analyze a position
151
+ 2. Press Ctrl+C to copy the full analysis
152
+ 3. Paste into AnkiGammon's input area
153
+
154
+ ### Position ID Formats (Unanalyzed)
155
+
156
+ Position IDs encode positions without move analysis. Configure GNU Backgammon in Settings to enable automatic analysis.
157
+
158
+ - **XGID (eXtreme Gammon ID)** - 26-character position string + metadata fields
159
+ - Example: `XGID=---BBBBAAA---Ac-bbccbAA-A-:1:1:-1:63:4:3:0:5:8`
160
+
161
+ - **OGID (OpenGammon Position ID)** - Base-26 position encoding with colon-separated fields
162
+ - Example: `cccccggggg:ddddiiiiii:N0N:63:W:IW:4:3:7:1:15`
163
+
164
+ - **GNUID (GNU Backgammon ID)** - Compact Base64 format (PositionID:MatchID)
165
+ - Example: `4HPwATDgc/ABMA:8IhuACAACAAE`
166
+
167
+ All formats fully support position encoding, cube state, dice, and match metadata.
168
+
169
+ ### File Formats
170
+
171
+ - **XG Binary files (.xg)** - eXtreme Gammon native format (includes pre-analysis from XG)
172
+ - **Match files (.mat, .txt)** - GNU Backgammon match exports (requires GNU Backgammon for analysis)
173
+ - **SGF files (.sgf)** - Smart Game Format for backgammon (requires GNU Backgammon for analysis)
174
+
175
+ Import via Ctrl+O or drag-and-drop directly onto the window.
176
+
177
+ ### Format Detection
178
+
179
+ The application **automatically detects** which format you're using. Just paste your position and AnkiGammon will handle it:
180
+ - XGID: Detected by `XGID=` prefix
181
+ - OGID: Detected by base-26 pattern with colons
182
+ - GNUID: Detected by base64 pattern
183
+
184
+ You can mix formats in the same input - each position can use a different format!
185
+
186
+ ## Export Methods
187
+
188
+ ### AnkiConnect (Recommended)
189
+
190
+ Push cards directly to running Anki through the GUI:
191
+ - Install [AnkiConnect addon](https://ankiweb.net/shared/info/2055492159)
192
+ - Keep Anki running while generating cards
193
+ - Cards appear instantly in your deck
194
+
195
+ ### APKG
196
+
197
+ Generate a package file for manual import:
198
+ - Select "APKG" in Settings
199
+ - Import into Anki: File → Import → Select the .apkg file
200
+ - Useful for offline card generation
201
+
202
+ ## Card Format
203
+
204
+ Each position becomes one Anki card:
205
+
206
+ **Front:**
207
+ - Board image showing the position
208
+ - Metadata: player on roll, dice, score, cube, match length
209
+ - Multiple choice: Candidate moves (configurable 2-10, labeled A-J, shuffled)
210
+ - Optional text move descriptions
211
+
212
+ **Back:**
213
+ - Position image and metadata
214
+ - Ranked table of moves with equity and error
215
+ - Correct answer highlighted
216
+ - Source position ID for reference
217
+ - Explanation (if added)
218
+ - Score matrix showing optimal cube actions across all match scores (if enabled)
219
+
220
+ ## Customization Options
221
+
222
+ Open Settings with **Ctrl+,** to configure:
223
+
224
+ **Appearance:**
225
+ - **Color Schemes**: Choose from 6 built-in themes (Classic, Forest, Ocean, Desert, Sunset, Midnight)
226
+ - **Board Orientation**: Counter-clockwise (default) or Clockwise orientation
227
+ - **Number of MCQ Options**: Configure how many moves to display (2-10, default: 5)
228
+
229
+ **Card Options:**
230
+ - **Show Move Options**: Toggle text move descriptions on card front
231
+ - **Interactive Moves**: Enable/disable animated move visualization
232
+
233
+ **Export:**
234
+ - **Deck Name**: Customize your Anki deck name
235
+ - **Export Method**: Choose between AnkiConnect or APKG output
236
+
237
+ **Analysis:**
238
+ - **GNU Backgammon Path**: Configure path to `gnubg-cli` executable for automatic position analysis
239
+ - **Analysis Ply**: Set depth (0-4, default: 3)
240
+ - **Score Matrix**: Generate cube decision matrix for all match scores (optional, time-consuming)
241
+
242
+ ## Troubleshooting
243
+
244
+ **"Cannot connect to Anki-Connect"**
245
+ - Install AnkiConnect addon: https://ankiweb.net/shared/info/2055492159
246
+ - Make sure Anki is running
247
+ - Check firewall isn't blocking localhost:8765
248
+
249
+ **"No decisions found in input"**
250
+ - Ensure input includes position ID lines (XGID, OGID, or GNUID format)
251
+ - Copy the full analyzed position from XG (press Ctrl+C)
252
+
253
+ **Application won't start**
254
+ - Windows: Click "More info" → "Run anyway" if SmartScreen blocks the app
255
+ - macOS: Right-click → Open on first run, or go to System Settings → Privacy & Security → "Open Anyway"
256
+ - Linux: Make the AppImage executable with `chmod +x AnkiGammon-x86_64.AppImage`
257
+ - Linux (Ubuntu 22.04+): Install FUSE 2 with `sudo apt install libfuse2` or `sudo apt install libfuse2t64` (Ubuntu 24.04)
258
+ - Linux (running from source): If you get `ImportError: libxkbcommon.so.0`, install Qt dependencies with `sudo apt install libxkbcommon0 libxcb1`
259
+
260
+ ## For Developers
261
+
262
+ ### Building the Executable
263
+
264
+ **Quick Build:**
265
+
266
+ Windows:
267
+ ```bash
268
+ build_executable.bat
269
+ ```
270
+
271
+ macOS/Linux:
272
+ ```bash
273
+ chmod +x build_executable.sh
274
+ ./build_executable.sh
275
+ ```
276
+
277
+ The executable will be in the `dist/` folder.
278
+
279
+ **Manual Build (if script doesn't work):**
280
+
281
+ Windows:
282
+ ```bash
283
+ # Install PyInstaller
284
+ pip install pyinstaller
285
+
286
+ # Clean previous builds
287
+ rmdir /s /q build dist
288
+
289
+ # Build
290
+ pyinstaller ankigammon.spec
291
+ ```
292
+
293
+ macOS/Linux:
294
+ ```bash
295
+ # Install PyInstaller
296
+ pip3 install pyinstaller
297
+
298
+ # Clean previous builds
299
+ rm -rf build dist
300
+
301
+ # Build
302
+ pyinstaller ankigammon.spec
303
+
304
+ # Remove quarantine attribute (macOS only)
305
+ xattr -cr dist/ankigammon
306
+ ```
307
+
308
+ ### Testing the Build
309
+
310
+ Windows:
311
+ ```bash
312
+ # Test the GUI launches
313
+ cd dist
314
+ ankigammon.exe
315
+ ```
316
+
317
+ macOS/Linux:
318
+ ```bash
319
+ # Test the GUI launches
320
+ cd dist
321
+ ./ankigammon
322
+ ```
323
+
324
+ ### Settings Storage
325
+
326
+ User preferences (color scheme, deck name, board orientation, etc.) are automatically saved to:
327
+ - Windows: `C:\Users\YourName\.ankigammon\config.json`
328
+ - macOS: `~/.ankigammon/config.json`
329
+ - Linux: `~/.ankigammon/config.json`
330
+
331
+ Settings persist across application restarts, even when using the standalone executable.
332
+
333
+ ### Troubleshooting Build Issues
334
+
335
+ **Missing modules in executable:**
336
+ - Add the module to `hiddenimports` in `ankigammon.spec`
337
+ - Or try: `pyinstaller --collect-all ankigammon ankigammon.spec`
338
+
339
+ **macOS code signing:**
340
+ - Remove quarantine for local testing: `xattr -cr dist/ankigammon`
341
+
342
+ ## Requirements
343
+
344
+ - Python 3.8+ (for development install only)
345
+ - Dependencies automatically installed via `pip install .`: genanki, requests, PySide6, qtawesome
346
+ - For standalone executable: No requirements - Python and all dependencies are bundled
347
+
348
+ ## License
349
+
350
+ AnkiGammon is licensed under the MIT License. See [LICENSE](LICENSE) for details.
351
+
352
+ For third-party licenses and attributions, see [THIRD-PARTY-LICENSES.md](THIRD-PARTY-LICENSES.md).
@@ -0,0 +1,61 @@
1
+ ankigammon/__init__.py,sha256=jB_E_FInEKKzyOsIB1cByWQrqlBOjWnIk9Yzu_C6jZE,219
2
+ ankigammon/__main__.py,sha256=DdVJ9hMXMw6cly-c_qSWbKWFuHJ8zfQogXfJ1Ja229s,148
3
+ ankigammon/models.py,sha256=fZU6NKJUJQoj9JXHkZMoPqiqgiYt9MalJNoH-9-gis4,12580
4
+ ankigammon/settings.py,sha256=9wRK556ju7HaNZorsyhPrPuwtZWele7F20Pq7xIsNe0,10933
5
+ ankigammon/analysis/__init__.py,sha256=73nJaKofPbce5TVMbfcMF3mGvLEANi8TIzF812pik0I,257
6
+ ankigammon/analysis/score_matrix.py,sha256=rlEcqUzXnhBn0UZTRX7OIgW04NBO4DQDGTYU7r2Sfx0,14139
7
+ ankigammon/anki/__init__.py,sha256=EFInf5sUGi0V1TjbHMeZ-E4amIaaNMGyY5vzqNr6RMo,191
8
+ ankigammon/anki/ankiconnect.py,sha256=9TbI0NtK7MktmPdM4B7k-5m8iDBYhCz92qf7tJOIdBw,6232
9
+ ankigammon/anki/apkg_exporter.py,sha256=JrM9gaAt6Z8s67mqFkcH4rwO_nVDogSOLo3WtwPLrjk,3510
10
+ ankigammon/anki/card_generator.py,sha256=5D4IP48YhB_zAa-8Eq5QZz-_MmqGlMeIlVMFWYSg5bA,49435
11
+ ankigammon/anki/card_styles.py,sha256=E1O4C9A5TA3FNWuSq48xYOUUo_rFGjqGOt0e-ZQ06PI,20683
12
+ ankigammon/gui/__init__.py,sha256=LCayKiU5echpnC4NDN-tRmd0_pDIA9GwKGlqW08sCis,149
13
+ ankigammon/gui/app.py,sha256=DPaJlvEWLnI5t8S6KCh-ee32ExKeR71ZErYrcWFbEZY,5972
14
+ ankigammon/gui/format_detector.py,sha256=JPGBzwa5Zqa1QG09O9aVS8I13CCIOxfr_9T50gdztjI,12465
15
+ ankigammon/gui/main_window.py,sha256=P3kQfH68g1emqHG81_RPkvhHydz_4lIVHYnwjzPUu5g,63428
16
+ ankigammon/gui/resources.py,sha256=_jsi00K1rCip9FFnJJG7ozXldzAV18J3vWV86nAz4RU,739
17
+ ankigammon/gui/update_checker.py,sha256=3X_IFZD1VgqLjuTPHy2rJnKnkRpY1ZDVvVFOFQaa9_I,8886
18
+ ankigammon/gui/dialogs/__init__.py,sha256=JlOhBc_9kRkUtBtRQg099TWcls871xNBy_0cJTOmi4Y,291
19
+ ankigammon/gui/dialogs/export_dialog.py,sha256=YpL2O-a3vdt_sToEdl5QaG8s_JQfl9EMf1fAcuV7P1M,22826
20
+ ankigammon/gui/dialogs/import_options_dialog.py,sha256=cknS6D23E8cFgnuRZa3vFZHwNkBTxBJ0siAFZZPmSC8,7035
21
+ ankigammon/gui/dialogs/input_dialog.py,sha256=Mpm4K0b9y3HpGDB5JxYUcQkGJ_AUmYlqtGFmF7duUnk,25822
22
+ ankigammon/gui/dialogs/note_dialog.py,sha256=t5QdTz-75b24EF2OpPXCl8f0s1pq_LYK4gHaJRXV7Pk,2814
23
+ ankigammon/gui/dialogs/settings_dialog.py,sha256=ozIHY5GcRXYDYE3V199zsDx231oPDFmZ4zmvvI_E3jE,16297
24
+ ankigammon/gui/dialogs/update_dialog.py,sha256=npJ0zv25Lf2IhPXrRnaSPzn2S5vVDUYPQoIuTpM5fMA,11402
25
+ ankigammon/gui/resources/down-arrow.svg,sha256=HvlVxDUeNk06i81pekPTH9mWXG8kpktc5idNrVUxbgE,153
26
+ ankigammon/gui/resources/icon.icns,sha256=zuJJBk2XloYp2-L0-gbcxfBSno-Ec2oYzVWI47o6kbo,369278
27
+ ankigammon/gui/resources/icon.ico,sha256=kY942ySMtx4ztbWvktrePkQ6Bibcr8UyWA85dMZxMVs,56078
28
+ ankigammon/gui/resources/icon.png,sha256=i_0FKb8hcI-fqz1DjfNea6khg5WUtb9qJASASo6QEok,49915
29
+ ankigammon/gui/resources/style.qss,sha256=i-DhbGDCu5AK9UMYlQjxrI2OopSg9_djL80bpu7X37M,7178
30
+ ankigammon/gui/widgets/__init__.py,sha256=Yn5pHQl8POEco5kzbzV135KxpJ7ywNV-HOyhatQhB80,172
31
+ ankigammon/gui/widgets/position_list.py,sha256=3jVFbGHFRQ7rXMKDJAtpXO6X-duwajoxBFUT1BazFbs,5619
32
+ ankigammon/gui/widgets/smart_input.py,sha256=8Kytq63uydh_iCuz1EDHNevYz95a0pccMFMM_RmQyQk,10280
33
+ ankigammon/parsers/__init__.py,sha256=SAcx5aDsDWwF6JIoO5OycTCj1_y_0afJ0_FWwgCiU7I,292
34
+ ankigammon/parsers/gnubg_match_parser.py,sha256=V7PEznNOM92DAyqkJZ6uxClBwCBrzB_NShm1bf0L4Rc,41459
35
+ ankigammon/parsers/gnubg_parser.py,sha256=xb7a26IL6snkLtsVlyJvT7NsibLu3YaBBfAGLPex12Y,17018
36
+ ankigammon/parsers/sgf_parser.py,sha256=siAjE-jrJCtsivdxSEl6VAdCb8t48bPcKJ_F78ZfGDk,9373
37
+ ankigammon/parsers/xg_binary_parser.py,sha256=wC9jkvfOL47CGN3RAm6IxbJs6o_kzWu8tO_3UmuJCQQ,45710
38
+ ankigammon/parsers/xg_text_parser.py,sha256=UKbmla_rIsDTBykhhBL-hz-7ybJ4dk8tgkH7wvWJgg0,26108
39
+ ankigammon/renderer/__init__.py,sha256=HvAeTbXo-9dqmI4rfaEQy1gkyH5ZjuJhJ2_oxsfZIbw,134
40
+ ankigammon/renderer/animation_controller.py,sha256=SuhUxh37Q2rxVVhtOU0UnR1hID6qIh79HKRsOU7e8MY,13427
41
+ ankigammon/renderer/animation_helper.py,sha256=hEx0edZ7Ydln4-QQDN9tEMoF0IaxfzzS2xhn3FJW3Bg,6104
42
+ ankigammon/renderer/color_schemes.py,sha256=cvfQV2VZ93cuC06cGEN25W2oL8d77ZoDi92kiXl2Z7A,4716
43
+ ankigammon/renderer/svg_board_renderer.py,sha256=QeJxIiQHfYXzgJFNWmc0cQ99yLeF9YLE6lHwCSDlTII,28371
44
+ ankigammon/thirdparty/__init__.py,sha256=98PeUOCdmy5L6cK0mOsuIMZjZcclxz7gF0p7cP6AILU,208
45
+ ankigammon/thirdparty/xgdatatools/__init__.py,sha256=HAxotlrrG0ZUeLizsQX0_YCggLRSDbypwnbhxgF8Pxg,430
46
+ ankigammon/thirdparty/xgdatatools/xgimport.py,sha256=Dk0iCkY1ZkWklbtqrcdlw255gZayiZ7C39fQKi_cdrM,5999
47
+ ankigammon/thirdparty/xgdatatools/xgstruct.py,sha256=LUW4MPTcIopRQPjwllX6EODMqWIRQpa9A0MU6LsOEs0,46882
48
+ ankigammon/thirdparty/xgdatatools/xgutils.py,sha256=Kdj-yh0xmGIT31bpCqQ2VfU64jKIf8SXTEXJCyYiUsE,3646
49
+ ankigammon/thirdparty/xgdatatools/xgzarc.py,sha256=Xvg5dxJCkKXN-SLo_X2rnp0zMtaXu25vQvCZRCXqCzA,8711
50
+ ankigammon/utils/__init__.py,sha256=XUzbJOwiksOIN7ivk1t6dl12ms0QzM7VD7svYjEOyQk,389
51
+ ankigammon/utils/gnubg_analyzer.py,sha256=GOyIFKd_B25qTRHiYqqshjTt9CWz6aWr0E4mQmSjp4A,20597
52
+ ankigammon/utils/gnuid.py,sha256=vbTFkMFrlnz_Y8ZNWOUT0SdA8dIhFusENeuXCyALESQ,16132
53
+ ankigammon/utils/move_parser.py,sha256=fApX--rS9MYzgdLOpxMgnDx06iRTbQEkLhd8f7FA1vI,6451
54
+ ankigammon/utils/ogid.py,sha256=As46I1lVIO3P0QJO-lrb4YIYRTWfcYTBHoVyorwNzw8,10033
55
+ ankigammon/utils/xgid.py,sha256=hhAeZzmSQBNNHyTMj3SwBRXH4K6UacicXG6onm38k0M,11368
56
+ ankigammon-1.0.6.dist-info/licenses/LICENSE,sha256=43DqVo6gTXPD10VYLOI-__GLsp3vO4WKGAgdIRq5cjo,1067
57
+ ankigammon-1.0.6.dist-info/METADATA,sha256=7Fuz5FIFG_Ggby9wgsTuq6owYzGrXIQDB--xDKhaw8g,12156
58
+ ankigammon-1.0.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
59
+ ankigammon-1.0.6.dist-info/entry_points.txt,sha256=jAAJMtibchyaEPrv-pyQGAjbN6k-Z5v64JolLJndoPM,51
60
+ ankigammon-1.0.6.dist-info/top_level.txt,sha256=QS0s-pxx0MCFoBndC3q4_rbTXtBnET-WIC01OTRFBvc,11
61
+ ankigammon-1.0.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [gui_scripts]
2
+ ankigammon = ankigammon.gui.app:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 AnkiGammon
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ ankigammon