diff --git a/core/src/server/routes.rs b/core/src/server/routes.rs index 4716fbe7..0a315f17 100644 --- a/core/src/server/routes.rs +++ b/core/src/server/routes.rs @@ -65,31 +65,89 @@ pub async fn system_information() -> (StatusCode, Json Html { +pub async fn file_upload_form() -> Html<&'static str> { Html( r#" - - - - - - -

hey man

-
- - -
- + + + + + + File Upload Form + + + + +
+
+

File Upload Form

+
+ + + +
+
+
+ - "# - .to_string(), + + "#, ) } + // Handler that accepts a multipart form upload and streams each field to a file. pub async fn accept_file_upload( mut multipart: Multipart, diff --git a/core/tauri.conf.json b/core/tauri.conf.json index 66b3df9a..c9d6a6e1 100644 --- a/core/tauri.conf.json +++ b/core/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "filesync", - "version": "0.6.24" + "version": "0.6.25" }, "tauri": { "allowlist": {