{"id":47725231,"url":"https://github.com/maxgfr/omnilingo","last_synced_at":"2026-04-11T09:11:17.182Z","repository":{"id":345104407,"uuid":"1184434514","full_name":"maxgfr/omnilingo","owner":"maxgfr","description":"Desktop language learning app with spaced repetition and multi-provider AI tutoring","archived":false,"fork":false,"pushed_at":"2026-04-01T14:42:37.000Z","size":1672,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T05:58:09.149Z","etag":null,"topics":["ai","desktop-app","duolingo","duolingo-alternative","flashcards","language-learning","multilingual","rust","spaced-repetition","sqlite","srs","tauri","whisper"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxgfr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-17T15:28:27.000Z","updated_at":"2026-04-01T14:41:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/maxgfr/omnilingo","commit_stats":null,"previous_names":["maxgfr/omnilingo"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/maxgfr/omnilingo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fomnilingo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fomnilingo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fomnilingo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fomnilingo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxgfr","download_url":"https://codeload.github.com/maxgfr/omnilingo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fomnilingo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31434624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","desktop-app","duolingo","duolingo-alternative","flashcards","language-learning","multilingual","rust","spaced-repetition","sqlite","srs","tauri","whisper"],"created_at":"2026-04-02T20:16:27.827Z","updated_at":"2026-04-05T12:01:07.962Z","avatar_url":"https://github.com/maxgfr.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Omnilingo\n\nDesktop language learning app built with [Tauri v2](https://tauri.app), React and TypeScript.\n\n## Features\n\n- **SRS Flashcards** — SM-2 spaced repetition algorithm (Forgot / Hard / Good / Easy)\n- **Dictionary** — 500+ built-in DE-FR words, search, level and category filters\n- **Grammar** — 36 lessons (A1-B1) with interactive exercises (MCQ, fill-in-the-blank, true/false)\n- **Conjugation** — 100+ German verbs, 6 tenses, 3 practice modes\n- **AI Chat** — Multi-provider language tutor (Anthropic, OpenAI, Gemini, Mistral, GLM, Claude CLI)\n- **FreeDict Dictionaries** — 305 downloadable language pairs catalog\n- **Speech-to-Text** — Voice recognition via Whisper (optional)\n- **Text-to-Speech** — Speech synthesis via Web Speech API\n- **Dark mode** — Full dark theme support\n- **Multi-language** — Multi-pair architecture (DE-FR by default, extensible)\n\n## Prerequisites\n\n- [Rust](https://rustup.rs/) (\u003e= 1.77)\n- [Bun](https://bun.sh/) (\u003e= 1.0)\n- Tauri system dependencies ([see docs](https://v2.tauri.app/start/prerequisites/))\n\n## Setup\n\n```bash\ngit clone https://github.com/maxgfr/omnilingo.git\ncd omnilingo\nbun install\n```\n\n## Development\n\n```bash\n# Launch the app in dev mode (hot reload frontend + backend)\ncargo tauri dev\n\n# Build frontend only\nbun run build\n\n# Typecheck\n./node_modules/.bin/tsc --noEmit\n\n# Lint Rust\ncargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings\n```\n\n## Release build\n\n```bash\ncargo tauri build\n```\n\nArtifacts are generated in `src-tauri/target/release/bundle/`:\n- **macOS**: `.dmg`, `.app`\n- **Windows**: `.msi`, `.exe`\n\n## Project structure\n\n```\nomnilingo/\n├── src/                    React + TypeScript frontend\n│   ├── components/         Reusable components\n│   ├── views/              Pages (Dashboard, Learn, Review, ...)\n│   ├── store/              React Context (global state)\n│   ├── lib/                IPC bridge + utilities\n│   └── types/              TypeScript interfaces\n├── src-tauri/              Rust backend\n│   ├── src/commands/       IPC commands\n│   └── migrations/         SQL schemas\n├── data/                   Static data (dictionary, grammar, verbs)\n├── memory/                 Markdown progression files\n└── .github/workflows/      CI/CD (build + release)\n```\n\n## CI/CD\n\n| Workflow | Trigger | Description |\n|----------|---------|-------------|\n| `build.yml` | Push/PR on `main` | TypeScript typecheck + Vite build, then Clippy on macOS and Windows |\n| `release.yml` | Tag `v*` | Build macOS (arm64 + x64) + Windows (x64), GitHub Release with auto-update |\n\n### Creating a release\n\n```bash\ngit tag -a v2.0.0 -m \"v2.0.0\"\ngit push origin v2.0.0\n```\n\nThe `release.yml` workflow will:\n1. Run TypeScript typecheck\n2. Build the app for macOS Apple Silicon, macOS Intel and Windows\n3. Create a GitHub Release with `.dmg` and `.msi`/`.exe` artifacts\n4. Generate `latest.json` for auto-update\n\n### GitHub Secrets (optional)\n\nFor signing and notarization:\n\n| Secret | Description |\n|--------|-------------|\n| `TAURI_SIGNING_PRIVATE_KEY` | Updater artifact signing key |\n| `APPLE_CERTIFICATE` | Base64-encoded .p12 certificate |\n| `APPLE_CERTIFICATE_PASSWORD` | Certificate password |\n| `APPLE_SIGNING_IDENTITY` | macOS signing identity |\n| `APPLE_ID` / `APPLE_PASSWORD` / `APPLE_TEAM_ID` | Apple notarization |\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxgfr%2Fomnilingo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxgfr%2Fomnilingo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxgfr%2Fomnilingo/lists"}