Commit Graph
15 Commits
Author SHA1 Message Date
arnef 8ef7b9ce8c Flatten repo: move client/ contents to repo root
CI / Type-Check (push) Successful in 16s
CI / Build Android APK (push) Successful in 5m20s
The project is no longer a monorepo/workspace - there is only a single
app package. Remove the redundant client/ nesting: all source, the
Capacitor Android project, config files and package.json/tsconfig now
live directly at the repo root.

- Merge client/package.json into root package.json (drop the
  workspaces field and the now-unnecessary bun --cwd client wrappers).
- Merge client/bun.lock (the actual dependency lockfile) into the
  root, replacing the stale workspace-only root lockfile.
- Move src/, public/, android/, index.html, vite.config.ts,
  capacitor.config.ts, tsconfig.{app,node}.json to the repo root.
- Update Dockerfile.android to build from the repo root instead of
  cd'ing into client/.
- Update .github/workflows/ci.yml type-check step to run bun run build
  directly instead of bun --cwd client run build.
- Update README.md and .github/copilot-instructions.md to drop
  references to the client/ subdirectory.
- Drop the stale server/downloads/ entry from .gitignore (leftover
  from an old server-based architecture that no longer exists).
2026-08-13 21:52:32 +02:00
arnef e3e725cf7b CI: clean up Docker/Podman build artifacts after APK build
CI / Type-Check (push) Successful in 31s
CI / Build Android APK (push) Successful in 5m19s
build-apk.sh always builds with --no-cache, which piles up images,
build cache and containers on the runner over time. Add a cleanup
step (if: always(), runs even on failure) that prunes everything via
'docker system prune -af --volumes' or the Podman equivalent, so
self-hosted runners don't fill up their disk.
2026-08-12 21:32:49 +02:00
arnef ee9e802b09 Rename app to 'tiptoi Sync' and add tiptoi pen icon/splash screens
CI / Type-Check (push) Successful in 10s
CI / Build Android APK (push) Successful in 6m8s
- App display name: 'TipToi Sync' -> 'tiptoi Sync' (strings.xml,
  capacitor.config.ts).
- New app icon: stylized tiptoi pen (orange body, grip band, sensor
  tip) on dark background, regenerated for all mipmap densities plus
  the adaptive icon foreground and round variant.
- Matching splash screens (portrait + landscape, all densities) with
  the same pen motif centered on the dark background.
- Web favicon updated to match.
- Removed unused legacy vector icon assets
  (drawable/ic_launcher_background.xml,
  drawable-v24/ic_launcher_foreground.xml) that were superseded by the
  raster icons.
2026-08-12 18:20:22 +02:00
arnef fa42ab1d74 Restyle UI in tiptoi brand style (dark, orange accent, book-corner shape)
CI / Type-Check (push) Successful in 10s
CI / Build Android APK (push) Successful in 5m32s
- Dark theme with tiptoi orange (#f2841e) as primary accent and
  Ravensburger blue (#3b9eea) as secondary color.
- Introduce the distinctive tiptoi book-cover corner shape
  (three corners rounded, one squared) as --radius-book /
  --radius-book-input, applied narrowly to buttons (squared
  bottom-left) and text inputs (mirrored, squared bottom-right) plus
  the icon-only copy/delete buttons.
- Cards, list items, pen-bar and the dev menu keep plain rounded
  corners; book cover thumbnails/images also stay plainly rounded so
  the special shape isn't overused.
- Add a subtle .btn--outline variant for the large 'QR-Code scannen'
  button so the accent color doesn't dominate the whole surface.
2026-08-12 14:05:40 +02:00
arnef f8421c1469 Update README: remove stale server architecture, add AI-generated disclaimer
CI / Type-Check (push) Successful in 11s
CI / Build Android APK (push) Successful in 5m18s
README beschrieb noch eine Bun+Elysia-Server-Architektur mit Docker-
Deployment, USB-Automount etc., die es in diesem Repo nicht mehr gibt
(reines Android/Capacitor-Setup). Ersetzt durch die aktuelle
Architektur, Build-/Dev-Anleitung und CI-Hinweis. Zusätzlich Hinweis
ganz oben, dass das Projekt größtenteils KI-generiert und noch nicht
vollständig reviewed ist.
2026-08-12 12:58:27 +02:00
arnef 53377237bc Add CI workflow: type-check and build Android APK
CI / Type-Check (push) Successful in 14s
CI / Build Android APK (push) Successful in 5m34s
Runs bun --cwd client run build (tsc -b) on push/PR, then builds the
APK via build-apk.sh and uploads it as a workflow artifact. Also
compatible with Gitea Actions, which reads .github/workflows/ in
addition to .gitea/workflows/.
2026-08-12 12:40:06 +02:00
arnef 5ba89051b1 Add Copilot CLI repository instructions 2026-08-12 11:54:39 +02:00
arnef b768ff29c9 Add README 2026-08-12 11:54:39 +02:00
arnef 1983598e38 Add Docker-based Android APK build tooling
Multi-stage Dockerfile.android (Bun + Android SDK + Gradle) built via
build-apk.sh, so the APK can be built reproducibly without a local
Android SDK install.
2026-08-12 11:54:39 +02:00
arnef 6c9df23659 Add dev live-reload tooling
DevPlugin (native + TS) lets the running app switch its webview to a
Vite dev server via DEV_URL, toggled from a hidden DevMenu (5 taps on
the app title).
2026-08-12 11:54:39 +02:00
arnef 0188d5210e Add Capacitor Android project and native Tiptoi plugin
Checked-in android/ Capacitor project plus the native TiptoiPlugin
(Kotlin): SAF directory picker for the pen, listing/copying/deleting
.gme files on the pen, and downloading GME/cover files into
app-private storage.
2026-08-12 11:54:39 +02:00
arnef 30170436fa Add scan and library UI pages
ScanPage (barcode/text search) and DownloadsPage (library + pen sync
status/progress) wired up via bottom-nav tabs in App.tsx.
2026-08-12 11:54:39 +02:00
arnef 49786ac54f Add Ravensburger search/download API client
Scrapes the Ravensburger site for .gme download links (barcode or
free-text query), decodes HTML entities, and orchestrates
download/library/sync operations against the native Tiptoi plugin.
2026-08-12 11:54:39 +02:00
arnef 4c8e0d010b Add SolidJS + Vite PWA client scaffold
Base Vite/SolidJS project setup for the client app: build config,
static assets, and global styles.
2026-08-12 11:54:39 +02:00
arnef d913d17e28 Add workspace scaffolding
Bun workspace with client sub-package, shared root tsconfig, and
lockfile.
2026-08-12 11:46:18 +02:00