diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 1735f73..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: "[BUG]"
-labels: ''
-assignees: ''
-
----
-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on '....'
-3. Scroll down to '....'
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Desktop (please complete the following information):**
- - OS: [e.g. Arch Linux, Windows]
- - App Version [e.g. 22]
-
-**Additional context**
-Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index bbcbbe7..0000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features you've considered.
-
-**Additional context**
-Add any other context or screenshots about the feature request here.
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0fc3abe..7d0ff2c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@ stages:
build-linux:
stage: build
- image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/rustlang/rust:nightly
+ image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/rust:1.81.0-bookworm
script:
- apt-get update -y
- apt-get install yarnpkg libsoup-3.0-0 libsoup-3.0-dev libatk-adaptor libgtk-3-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev -y
@@ -13,10 +13,9 @@ build-linux:
- yarnpkg tauri build
- cp src-tauri/target/release/bundle/deb/*.deb .
- cp src-tauri/target/release/bundle/rpm/*.rpm .
- - cp src-tauri/target/release/bundle/appimage/*.AppImage .
artifacts:
paths:
- - "*.{deb,rpm,AppImage}"
+ - "*.{deb,rpm}"
build-windows:
stage: build
diff --git a/README.md b/README.md
index 903f4ca..b0df333 100644
--- a/README.md
+++ b/README.md
@@ -2,19 +2,6 @@
Drop app is the companion app for [Drop](https://github.com/Drop-OSS/drop). It uses a Tauri base with Nuxt 3 + TailwindCSS on top of it, so we can re-use components from the web UI.
-## Running
-Before setting up the drop app, be sure that you have a server set up.
-The instructions for this can be found on the [Drop Wiki](https://wiki.droposs.org/guides/quickstart.html)
-
-## Current features
-Currently supported are the following features:
-- Signin (with custom server)
-- Database registering & recovery
-- Dynamic library fetching from server
-- Installing & uninstalling games
-- Download progress monitoring
-- Launching / playing games
-
## Development
Install dependencies with `yarn`
@@ -23,7 +10,7 @@ Run the app in development with `yarn tauri dev`. NVIDIA users on Linux, use she
To manually specify the logging level, add the environment variable `RUST_LOG=[debug, info, warn, error]` to `yarn tauri dev`:
-e.g. `RUST_LOG=debug yarn tauri dev`
+e.g. `RUST_LOG=debug yarn taudi dev`
## Contributing
Check the original [Drop repo](https://github.com/Drop-OSS/drop/blob/main/CONTRIBUTING.md) for contributing guidelines.
\ No newline at end of file
diff --git a/app.vue b/app.vue
index b9011c6..f81c432 100644
--- a/app.vue
+++ b/app.vue
@@ -1,8 +1,8 @@
-
+
diff --git a/pages/auth/failed.vue b/pages/auth/failed.vue
index 1eca3c0..db8a6e5 100644
--- a/pages/auth/failed.vue
+++ b/pages/auth/failed.vue
@@ -26,7 +26,7 @@
import { XCircleIcon } from "@heroicons/vue/16/solid";
const route = useRoute();
-const message = route.query.error ?? "An unknown error occurred";
+const message = route.query.error ?? "An unknown error occurred.";
definePageMeta({
layout: "mini",
diff --git a/pages/index.vue b/pages/index.vue
index 52bc1df..72433ae 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -1,7 +1,4 @@
diff --git a/pages/library.vue b/pages/library.vue
index ab5079a..a1838d9 100644
--- a/pages/library.vue
+++ b/pages/library.vue
@@ -1,25 +1,21 @@
-
+
@@ -31,45 +27,23 @@
-
+
-
- Library Failed to update
-
-
+
\ No newline at end of file
diff --git a/pages/queue.vue b/pages/queue.vue
index 8d46bea..52574dd 100644
--- a/pages/queue.vue
+++ b/pages/queue.vue
@@ -1,46 +1,32 @@