@openardf/radio-oracle 1.0.1 → 1.0.2

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.
package/README.md CHANGED
@@ -4,7 +4,7 @@ Radio-Oracle is an Android app for managing radio orienteering events on race
4
4
  day.
5
5
 
6
6
  Radio-Oracle is maintained by OpenARDF and derived from the MIT-licensed
7
- Radio-O-Manager project by Pavel Kolský and contributors.
7
+ Radio-O-Manager app by Pavel Kolský and contributors.
8
8
 
9
9
  ## What It Does
10
10
 
@@ -17,6 +17,56 @@ Radio-Oracle is intended to help organizers:
17
17
  5. print finish tickets
18
18
  6. send live results
19
19
 
20
+ ## Desktop Beta
21
+
22
+ Radio-Oracle also has a desktop event-admin beta distributed through jDeploy as
23
+ `@openardf/radio-oracle`. The desktop app is intended for pre-event and
24
+ post-event administration away from the finish table.
25
+
26
+ The desktop beta supports:
27
+
28
+ - opening, editing, saving, and exporting `.rom.json` Event Files;
29
+ - managing races, categories, control points, aliases, competitors, manual
30
+ readouts, and results;
31
+ - importing Android-compatible category, competitor, and start-list CSV files
32
+ plus Android race-backup JSON files;
33
+ - exporting category, competitor, start-list, start-list-by-category,
34
+ start-list-by-minute, readout, result, result TXT/HTML, IOF start/result-list
35
+ XML, Android-shaped race-backup/final-result JSON, and ARDF JSON files;
36
+ - detecting an attached SPORTident USB download box and warning when it is not
37
+ in READOUT/SI MASTER mode;
38
+ - downloading one SI5/SI6/SI8/SI9/SIAC card at a time from an attached
39
+ READOUT/SI MASTER station;
40
+ - running an experimental continuous SI5/SI6/SI8/SI9/SIAC card readout loop
41
+ from an attached READOUT/SI MASTER station;
42
+ - choosing whether duplicate SI-card reads are ignored, replaced, or stored as
43
+ new readouts;
44
+ - showing the most recent readout SI card, competitor, status, timestamp, and
45
+ warning/error state;
46
+ - playing optional desktop alert sounds for duplicate or error/unknown SI
47
+ readouts;
48
+ - inspecting competitors in drawn start-time order in a Start List desktop view;
49
+ - drawing start times by category with club rotation and a configurable interval;
50
+ - assigning unmatched readouts to competitors;
51
+ - marking competitors DNS without an SI-card readout;
52
+ - previewing finish-ticket text for readouts using the shared ticket renderer;
53
+ - summarizing live-result send readiness and exporting Android-shaped
54
+ live-result and final-result JSON payloads;
55
+ - manually sending unsent matched live results to ROBIS using the race API key;
56
+ - sending unsent matched ROBIS live results in the background when enabled in
57
+ Settings;
58
+ - serving auto-refreshing loopback-only local result/category/start-list/in-forest
59
+ displays plus `/results.json`, `/categories.json`, `/starts.json`, and
60
+ `/in-forest.json` endpoints from the open desktop Event File;
61
+ - tracking started competitors without readouts in an In Forest desktop view.
62
+
63
+ The desktop beta does not yet replace the Android race-day workflow. Live
64
+ printer transport, shared SQL persistence, and station maintenance writes remain
65
+ post-beta work.
66
+
67
+ Local desktop packaging and smoke commands are documented in
68
+ [`docs/desktop-prep.md`](docs/desktop-prep.md).
69
+
20
70
  ## Equipment Needed
21
71
 
22
72
  - SportIdent BSM 7 / BSM 8 reader
@@ -32,7 +82,7 @@ Radio-Oracle is intended to help organizers:
32
82
 
33
83
  ## Third Party Libraries and Resources
34
84
 
35
- - **Logo** - original Radio-Oracle artwork generated for this project using Codex
85
+ - **Logo** - original Radio-Oracle artwork generated for this app using Codex
36
86
  - [SortableTableView](https://github.com/ISchwarz23/SortableTableView)
37
87
  - [kotlin-csv](https://github.com/doyaaaaaken/kotlin-csv)
38
88
  - [UsbSerial](https://github.com/felHR85/UsbSerial)
@@ -44,5 +94,5 @@ Radio-Oracle is intended to help organizers:
44
94
  ## Credits
45
95
 
46
96
  - OpenARDF maintains Radio-Oracle.
47
- - Radio-Oracle is derived from the MIT-licensed Radio-O-Manager project by
97
+ - Radio-Oracle is derived from the MIT-licensed Radio-O-Manager app by
48
98
  Pavel Kolský, Vojtěch Kopal, and Jakub Šrom.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openardf/radio-oracle",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Desktop event administration shell for Radio-Oracle.",
5
5
  "author": "OpenARDF",
6
6
  "homepage": "https://github.com/OpenARDF/Radio-Oracle",
@@ -16,18 +16,25 @@
16
16
  "radio-oracle": "jdeploy-bundle/jdeploy.js"
17
17
  },
18
18
  "scripts": {
19
- "jdeploy:prepare": "./scripts/jdeploy-prepare.sh",
19
+ "jdeploy:prepare": "node ./scripts/jdeploy-prepare.mjs",
20
20
  "prejdeploy:package": "npm run jdeploy:prepare",
21
21
  "prejdeploy:install-local": "npm run jdeploy:prepare",
22
22
  "prejdeploy:local": "npm run jdeploy:prepare",
23
- "jdeploy:package": "npx --no-install jdeploy package",
24
- "jdeploy:install-local": "npx --no-install jdeploy install -y",
25
- "jdeploy:verify-install": "npx --no-install jdeploy verify-installation --package-json=package.json --verbose",
26
- "jdeploy:local": "npx --no-install jdeploy run --install",
27
- "jdeploy:local-smoke": "./scripts/jdeploy-local-smoke.sh",
23
+ "jdeploy:package": "node ./scripts/jdeploy-run.mjs package",
24
+ "jdeploy:install-local": "node ./scripts/jdeploy-run.mjs install -y",
25
+ "jdeploy:verify-install": "node ./scripts/jdeploy-run.mjs verify-installation --package-json=package.json --verbose",
26
+ "jdeploy:local": "node ./scripts/jdeploy-run.mjs run --install",
27
+ "jdeploy:local-smoke": "node ./scripts/jdeploy-local-smoke.mjs",
28
28
  "jdeploy:pack-preview": "npm run jdeploy:package && npm pack --dry-run --ignore-scripts",
29
29
  "jdeploy:registry-smoke": "./scripts/jdeploy-registry-smoke.sh",
30
30
  "jdeploy:release-preflight": "node ./scripts/check-jdeploy-release-ready.mjs",
31
+ "desktop:automation": "./gradlew :desktopApp:desktopAutomation",
32
+ "desktop:usb-diagnostic": "./scripts/desktop-usb-diagnostic.sh",
33
+ "desktop:usb-probe": "./gradlew :desktopApp:desktopUsbProbe",
34
+ "desktop:usb-station-diagnostic": "./gradlew :desktopApp:desktopUsbStationDiagnostic",
35
+ "desktop:usb-card-event": "./gradlew :desktopApp:desktopUsbCardEventProbe",
36
+ "desktop:usb-card-block": "./gradlew :desktopApp:desktopUsbCardBlockProbe",
37
+ "desktop:usb-card-loop": "./gradlew :desktopApp:desktopUsbCardLoopProbe",
31
38
  "prepublishOnly": "node ./scripts/check-jdeploy-publish.mjs"
32
39
  },
33
40
  "dependencies": {