Files
maikandClaude Opus 4.8 a7c93fa266 Erster Commit: nativer Linux-Port aus macOS-Bytecode
Läuft die Voice Acoustic VA-Remotecontrol (AllDSP AllControl) nativ unter Linux
auf echtem wxGTK 3.0 — ohne Wine und ohne dekompilierten App-Code. Ausgeführt wird
das unveränderte Python-2.7-Bytecode aus dem macOS-.app; C-Extensions (wxGTK/numpy/
scipy/PortAudio) kommen nativ aus Debian stretch.

Enthält: va/ (Original-.pyc + pure-Python-Libs + Assets + launch.py mit den drei
Linux-Fixes), Dockerfile/run.sh/entrypoint.sh, reference/ (dekompilierter Quellcode
zum Debuggen) und README/STATUS. img.cache (378 MB, regenerierbar) ist per
.gitignore ausgeschlossen.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-20 19:57:01 +02:00

21 lines
643 B
Plaintext

100, 10, 'INVOICE'
10, 46, 'VAT:'
53, 46, customer['vat'] and 'X' or ''
63, 46, not customer['vat'] and 'X' or ''
10, 20, customer['name']
100, 20, customer['tax_id']
10, 60, items[0]['qty']
40, 60, items[0]['description']
150, 60, items[0]['price']
190, 60, items[0]['qty']*items[0]['price']
10, 65, items[1]['qty']
40, 65, items[1]['description']
150, 65, items[1]['price']
190, 65, items[1]['qty']*items[1]['price']
10, 70, items[2]['qty']
40, 70, items[2]['description']
150, 70, items[2]['price']
190, 70, items[2]['qty']*items[2]['price']
100,100, 'Total:'
120,100, sum([item['qty']*item['price'] for item in items])