Skip to content

Commit

Permalink
[beta] Minor code refactor -> snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
DIDIRUS4 committed May 10, 2024
1 parent 50a6772 commit 74bcd80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion theseus/src/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ mod settings;
mod projects;

mod children;
pub use self::children::*;

mod tags;

Expand Down
4 changes: 2 additions & 2 deletions theseus_gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "theseus_gui",
"private": true,
"version": "0.7.2",
"patch_version": "03 • Beta",
"patch_version": "04 • Beta",
"development_build": true,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -43,5 +43,5 @@
"vite": "^5.2.10",
"vite-plugin-eslint": "^1.8.1"
},
"packageManager": "pnpm@9.0.6"
"packageManager": "pnpm@9.1.0"
}
4 changes: 2 additions & 2 deletions theseus_gui/src-tauri/src/api/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
}

#[tauri::command]
pub async fn download_build(downloadUrl: &str, fileName: &str, osType: &str, autoUpdateSupported: bool) -> Result<()> {
theseus::download::init_download(downloadUrl, fileName, osType, autoUpdateSupported).await;
pub async fn download_build(downloadurl: &str, filename: &str, ostype: &str, autoupdatesupported: bool) -> Result<()> {
theseus::download::init_download(downloadurl, filename, ostype, autoupdatesupported).await;
Ok(())
}

Expand Down

0 comments on commit 74bcd80

Please sign in to comment.