Commit Graph
100 Commits
Author SHA1 Message Date
DecDuck 27a14d1c32 feat: update ci 2025-12-03 14:32:10 +11:00
DecDuck a1b98efe3d feat: re-enable multipart downloads 2025-12-03 13:56:13 +11:00
DecDuck 510013d4fa feat: torrential setup 2025-12-03 11:54:20 +11:00
DecDuck fe4f295fcd fix: style and capability 2025-12-01 08:42:26 +11:00
DecDuck 1f809063ef fix: fetching versions from server 2025-12-01 08:35:43 +11:00
DecDuck f41df6531c Fix server error messages 2025-11-30 23:13:01 +11:00
DecDuck 28d7a741c1 Move to pnpm to fix builds 2025-11-19 23:02:20 +11:00
DecDuck 490a689497 Fix Apple signing 2025-11-19 22:14:57 +11:00
DecDuck 84f4210479 Bump version 2025-11-15 09:09:58 +11:00
DecDuck 83d2301056 Fix macOS build 2025-10-16 15:32:28 +11:00
DecDuck 70cecdad19 Update README.md 2025-09-11 08:16:33 +10:00
DecDuck 3f18d15d39 Collections & download stability, UI (#130)
* feat: different local path in dev #73

* feat: better error output for downloads

* feat: collections in library view

* feat: improve download manager reliability

* feat: new download UI, more stable downloads

* fix: clippy

* fix: only show admin link if user is admin

* feat: check for libs before building
2025-09-07 15:57:06 +10:00
DecDuck 7e70a17a43 Bump version to v0.3.3 2025-08-28 18:23:12 +10:00
DecDuck 8d61a68b8a Add placeholders to unfinished pages (#126)
* feat: add placeholders for community & news pages

* feat: add placeholder to interface in settings menu
2025-08-28 18:22:33 +10:00
DecDuck 44a1be6991 Fix for multi-version downloads (#125)
* fix: multi version downloads

* fix: remove debug utils

* fix: clippy
2025-08-28 18:05:05 +10:00
DecDuck 5eef2bf60f Fix Tauri builds (#119)
* fix: attempt to use local user keychain

* chore: tmp disable non-macos builds

* fix: windows process fix patch

* fix: re-enable windows

* fix: remove sudo

* fix: tmp disable windows again

* fix: windows build again

* chore: re-disable windows

* fix: pin to macos 14

* fix: re-enable other builds
2025-08-15 23:55:34 +10:00
DecDuck ec6294b8e7 Fix #117 (#118)
* fix: version data not being attached to process manager push

* fix: clippy
2025-08-15 23:02:01 +10:00
DecDuck 17c375bcab UI & error fixes & QoL (#116)
* fix: use Arc<Error> instead of just ErrorKind

* fix: game status updates for UI

* fix: missing game version on push_game_update calls

* feat: wait if library load takes <300ms

* fix: clippy
2025-08-15 22:56:49 +10:00
DecDuck cb55ac2bf5 Fix platform builds 2025-08-12 15:08:50 +10:00
DecDuck e11db851a5 fix: #92 (#115) 2025-08-11 14:37:46 +10:00
DecDuck 16365713cf v2 download API and fixes (#112)
* fix: potential download fixes

* fix: show installed games not on remote

* fix: more download_logic error handling

* partial: move to async

* feat: interactivity improvements

* feat: v2 download API

* fix: download seek offsets

* fix: clippy

* fix: apply clippy suggestion

* fix: performance improvements starting up download

* fix: finished bucket file

* fix: ui tweaks and fixes

* fix: revert version to 0.3.2

* fix: clippy
2025-08-09 15:50:21 +10:00
DecDuck 3b830e2a44 Move frontend to main folder (#109)
* feat: small refactor

* fix: appimage build script

* fix: add NO_STRIP to AppImage build

* fix: build and dev mode from refactor

* fix: submodule step 1

* fix: submodules step 2
2025-08-05 16:09:47 +10:00
DecDuck 75a4b73ee1 QoL Download Manager (#108)
* feat: retry specific download errors

* fix: potential fix for cmd window on Windows

* feat: add disk space check for download

* fix: update game fix formatting

* fix: clippy
2025-08-04 16:30:45 +10:00
DecDuck 339d707092 Fix errors with caching when cache is deleted (#101) 2025-08-04 15:02:32 +10:00
DecDuck 776dc8fe7a Fixes reqwest client setup, #87 (#107) 2025-08-04 15:01:44 +10:00
DecDuck dbe8c8df4d Process manager templating & game importing (#96)
* feat: add new template options, asahi support, and refactoring

* feat: install dir scanning, validation fixes, progress fixes, download manager refactor

This kind of ballooned out of scope, but I implemented some much
needed fixes for the download manager.

First off, I cleanup the Downloadable trait, there was some
duplication of function.

Second, I refactored the "validate" into the GameDownloadAgent,
which calls a 'validate_chunk_logic' yada, same structure as
downloading.

Third, I fixed the progress and validation issues.

Fourth, I added game scanning

* feat: out of box support for Asahi Linux

* fix: clippy

* fix: don't break database
2025-08-02 20:17:27 +10:00
DecDuck 35f49b8811 macOS app signing (#95)
* feat: add macos signing args

* fix: update all versions to -mac specific

* fix: fetch signing identity

* feat: add signing pre-steps like the docs say

* fix: remove apple requirement from signing

* fix: add drop cert to keychain when signing

* fix: add drop.pem to add-trusted-cert

* fix: re-order and specify import operation

* fix: let's try the user store

* fix: password required to update trust

* fix: try another non-interactive fix

* fix: try sudo

* fix: revert attempt fix

* fix: add cert id debug

* fix: attempt to use id rather than name

* fix: revert code id to name
2025-08-02 15:01:53 +10:00
DecDuckandquexeky cc5339a389 Reqwest optionally load certificates from disk (#94)
* feat: Add get_client function

Signed-off-by: quexeky <git@quexeky.dev>

* chore: Converted all instances of reqwest::blocking::Client::new() and reqwest::Client::new() to DROP_CLIENT_SYNC and DROP_CLIENT_ASYNC respectively

Signed-off-by: quexeky <git@quexeky.dev>

* fix: use_remote_logic not using certificates

Signed-off-by: quexeky <git@quexeky.dev>

* fix: add log statement to certificates

* chore: add more logging

* fix: clippy

* refactor: into single fetch_certificates func

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>
2025-08-02 11:59:50 +10:00
DecDuck 6104bfda72 Bump version to v0.3.1 (#85) 2025-08-01 14:13:13 +10:00
DecDuck be688cb18f Version bump: v0.3.0 2025-08-01 14:09:16 +10:00
DecDuckandquexeky 13cc69f10e Device code authorization (#83)
* feat: device code authorization

* Fix for setup executable unable to be launched (#81)

* Fix for redownload invalid chunks (#84)

* feat: Redownloading invalid chunks

Signed-off-by: quexeky <git@quexeky.dev>

* fix: clippy

* fix: clippy x2

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>

* chore: Run clippy fix pedantic

Signed-off-by: quexeky <git@quexeky.dev>

* feat: add better error handling

* fix: clippy

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>
2025-08-01 13:12:05 +10:00
DecDuckandquexeky b5a8543194 Fix for redownload invalid chunks (#84)
* feat: Redownloading invalid chunks

Signed-off-by: quexeky <git@quexeky.dev>

* fix: clippy

* fix: clippy x2

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>
2025-07-31 18:25:38 +10:00
DecDuck d0e4aea5ce Fix for setup executable unable to be launched (#81) 2025-07-30 09:57:07 +10:00
DecDuck 739e6166c5 Cache-first object fetching (#76)
* fix: submillisecond cache hits

* fix: async object loading to hand control back to renderer

* fix: clippy
2025-07-27 12:04:50 +10:00
DecDuck 682c6e9c0b Bump version to v0.3.0-rc-8 (#74) 2025-07-25 22:21:59 +10:00
DecDuckandquexeky 46e1f16cdd Process manager fixes (#71)
* fix: launching on linux

* feat: #70

* feat: add dummy store page

* feat: add store redir and refresh button to library

* feat: cache first object fetching

* feat: Remove let_chains feature and update to Rust 2024

Signed-off-by: quexeky <git@quexeky.dev>

* feat: Check for if process was manually stopped

Signed-off-by: quexeky <git@quexeky.dev>

* fix: use bitcode instead of serde

* chore: remove logs

* fix: clippy

* fix: clippy 2

* fix: swap to stop icon

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>
2025-07-25 10:44:40 +10:00
DecDuck d19f9bbc31 Fix client running behind reverse proxy (#69)
* fix: reverse proxy 400 due to duplicate header

* fix: clippy

* bump version and update ci
2025-07-18 20:08:12 +10:00
DecDuck 2913fdf35b Release v0.3.0-rc-6 (#68) 2025-07-18 17:38:36 +10:00
DecDuck f9fdf151ea Clippy CI/CD (#67)
* feat: add clippy ci

* fix: clippy errors

* fix: ci/cd

* fix: update ci packages

* fix: add gtk3 to ci deps

* fix: add webkit to ci deps

* fix: ci deps and perms

* fix: add clippy settings to lib.rs
2025-07-18 17:36:04 +10:00
DecDuck 495d93705e Panic hook to generate crash dumps #65 (#66) 2025-07-18 16:35:02 +10:00
DecDuck c477dd4872 Fix windows build by removing linux extension import (#64) 2025-07-14 16:43:11 +10:00
DecDuckandquexeky f560a62c8f Download fixes (#63)
* refactor: Rename StoredManifest to DropData

Signed-off-by: quexeky <git@quexeky.dev>

* fix: Downloads when resuming would truncate files which had not been finished

Signed-off-by: quexeky <git@quexeky.dev>

* chore: Didn't import debug macro

Signed-off-by: quexeky <git@quexeky.dev>

* fix: Download chunks with wrong indexes

Migrated to using checksums as indexes instead

Signed-off-by: quexeky <git@quexeky.dev>

* feat: Resume download button

Also added DBWrite and DBRead structs to make database management easier

Signed-off-by: quexeky <git@quexeky.dev>

* feat: Download resuming

Signed-off-by: quexeky <git@quexeky.dev>

* feat: Resume button and PartiallyInstalled status

Signed-off-by: quexeky <git@quexeky.dev>

* feat: Download validation

Signed-off-by: quexeky <git@quexeky.dev>

* chore: Ran cargo fix & cargo fmt

Signed-off-by: quexeky <git@quexeky.dev>

* fix: download validation, installs, etc

* chore: version bump

---------

Signed-off-by: quexeky <git@quexeky.dev>
Co-authored-by: quexeky <git@quexeky.dev>
2025-07-14 16:31:06 +10:00
DecDuck afcd4e916f chore: bump version to 0.3.0-rc-4 2025-06-25 09:05:08 +10:00
DecDuck 86bce1c68d Release: v0.3.0-rc-3 (#51) 2025-06-06 09:25:44 +10:00
DecDuck 065eb2356a fix: database corrupted on every startup (#40) 2025-06-01 19:53:24 +10:00
DecDuck 689e9ad890 fix: add new dependencies to linux build 2025-05-28 20:51:32 +10:00
DecDuck 11e2b3fe8a fix: regenerate lockfile 2025-05-28 20:37:26 +10:00
DecDuck eba224f998 fix: remove memd-exec dependency 2025-05-28 20:22:18 +10:00
DecDuck d045385a5d build: 0.3.0-rc-2 2025-05-28 20:09:58 +10:00
DecDuck 446aa70b0b inprogress: compat 2025-05-28 09:07:09 +10:00
DecDuck 5251a56c3c feat: add arm linux builds 2025-05-25 11:46:24 +10:00
DecDuck 2957773179 fix: remove reqwest default-features to compile without openssl 2025-05-15 21:03:31 +10:00
DecDuck 15e5fe4dc0 fix: move to reqwest rustls 2025-05-15 20:58:48 +10:00
DecDuck 2dc0a78354 fix: update cargo lock 2025-05-15 20:53:04 +10:00
DecDuck 51c480f245 feat: inline capability registration 2025-05-15 16:05:34 +10:00
DecDuck 790e8c2afe feat: move to native_model to allow for database upgrades 2025-05-15 10:13:24 +10:00
DecDuck 02edb2cbc1 chore: libtailscale rust build 2025-05-14 10:01:26 +10:00
DecDuck 4b4c0734ec fix: windows builds 2025-05-10 16:41:37 +10:00
DecDuck e75e0044fb fix: windows launching 2025-05-10 15:38:20 +10:00
DecDuck 65561abdab fix: update object id paths for new server 2025-05-10 15:25:40 +10:00
DecDuck fed3e08dce fix: re-add minimise button 2025-05-10 14:22:21 +10:00
DecDuck b0b1e397b1 fix: install dir flow 2025-05-10 09:02:59 +10:00
DecDuck 7b443818d1 fix: github ci and dialogtitle issue 2025-05-08 08:25:10 +10:00
DecDuck fa4a881cc0 fix: bump tauri.config.json to 0.3.0-rc-1 2025-05-07 14:36:54 +10:00
DecDuck 4f16a6e6b2 fix: remove nightly trigger
it creates releases
2025-05-07 14:29:27 +10:00
DecDuck 47d9e9949b feat: bump app versions to 0.3.0-rc-1 2025-05-07 14:28:11 +10:00
DecDuck a643d6102b fix: switch to rust nightly 2025-05-07 13:51:27 +10:00
DecDuck a71ff160c2 feat: add github build 2025-05-07 12:21:03 +10:00
DecDuck a53a566792 feat: cleanup settings menu and fix styles 2025-05-01 13:36:52 +10:00
DecDuck ac6b034501 fix: error with game options for remote games 2025-05-01 12:26:41 +10:00
DecDuck 8e5e3b2715 fix: some of GitHub's dependabot alerts 2025-04-27 21:15:32 +10:00
DecDuck 0f717d51d0 feat: launch options 2025-04-27 21:07:39 +10:00
DecDuck 4941f2a6fa feat: better error message if cannot connect to provided url 2025-04-26 01:06:03 +10:00
DecDuck 40eb19cf8b feat: add iframe store page 2025-04-08 16:17:03 +10:00
DecDuck 6b9b9e3606 feat: add backend for template launching 2025-04-07 13:52:52 +10:00
DecDuck 3e074abc0a feat: improve errors and include installed games in library 2025-04-05 15:36:53 +11:00
DecDuck 1fdf569278 fix: offline game status, user widget and use binary-encoding 2025-04-04 11:07:10 +11:00
DecDuck 77251a6524 feat: better client name w/ hostname 2025-04-04 10:14:23 +11:00
DecDuck 137b71b3ba feat: switch to shell-based command launching
note: needs error handling
2025-04-02 20:04:14 +11:00
DecDuck 569ba4243c feat: add offline widget & remove openssl in favour of droplet-rs 2025-04-02 11:00:39 +11:00
DecDuck 834f52d024 fix: macos and ui 2025-03-15 15:05:35 +11:00
DecDuck 639d3b4630 fix: refactoring and error handling 2025-02-20 21:19:54 +11:00
DecDuck 39f2ebd2d6 fix(download agent): fixed completed indexes 2025-01-20 17:29:33 +11:00
DecDuck 89ea34c94e fix: assorted fixes 2025-01-20 16:46:57 +11:00
DecDuck 5db9ae5f98 fix(ui): modal stack doesn't cover whole app 2025-01-19 22:23:40 +11:00
DecDuck 4d8eadc491 fix(logs): add file & line to console logs 2025-01-19 22:23:09 +11:00
DecDuck 3ca87fc45b feat(downloads): re-enable checksums 2025-01-19 22:22:55 +11:00
DecDuck 21204dee69 fix(download manager): don't crash download manager if multiple errors
come in
2025-01-19 22:22:04 +11:00
DecDuck c2f54c1dbc fix: fix other metadata endpoints 2025-01-19 16:15:43 +11:00
DecDuck d83aae6dc4 fix(install ui): stop loading on error 2025-01-19 15:44:00 +11:00
DecDuck 60d0a48a1a fix(handle invalid database): use set_file_name instead of pushing to
strings
2025-01-09 12:27:32 +11:00
DecDuck 7ab53f3357 fix(metadata): update routes for new server 2025-01-09 12:11:39 +11:00
DecDuck 2c8164e54f feat(library ui): add installed ui in the library menu 2025-01-05 18:32:22 +11:00
DecDuck a17311a88d fix(download manager): fix incorrect error assumptions & update types 2024-12-31 00:08:05 +11:00
DecDuck 472eb1d435 squash(autostart): added adenmgb's autostart feature
Squashed commit of the following:

commit 085cd9481d
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 16:29:41 2024 +1030

    Update lib.rs for the DB sync of autostart

commit 86f2fb19bd
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 16:29:13 2024 +1030

    Update db.rs to accomidate the settings sync

commit ece11e7581
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 16:27:48 2024 +1030

    Update autostart.rs to include DB

commit 7ea8a24fdc
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:17:38 2024 +1030

    Add files via upload

commit af2f232d94
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:17:09 2024 +1030

    Delete src-tauri/Cargo.toml

commit 5d27b65612
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:15:42 2024 +1030

    Add files via upload

commit 2eea7b97a8
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:15:31 2024 +1030

    Delete src-tauri/src/lib.rs

commit 9a635a10d1
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:14:49 2024 +1030

    Add files via upload

commit 2fb049531a
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:13:37 2024 +1030

    Add files via upload

commit ea1be4d750
Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
Date:   Mon Dec 30 15:13:20 2024 +1030

    Delete pages/settings/index.vue
2024-12-30 17:31:03 +11:00
DecDuck 6b96e408b2 feat(process): shared child with stop command 2024-12-30 15:37:29 +11:00
DecDuck 95f2174f8d fix(scrollbars): fix ugly scrollbars on edge webview 2024-12-29 20:45:45 +11:00
DecDuck 7c90d2b8fd fix(process): fix poorly designed parsing for executables with spaces 2024-12-28 10:13:26 +11:00
DecDuck d7b0302bdd fix(library page): fix install button 2024-12-27 16:33:04 +11:00
DecDuck 3ccd44466f merge(SeeThruHead): add nvm rc
Signed-off-by: DecDuck <declanahofmeyr@gmail.com>
2024-12-27 14:33:23 +11:00