* Workflow changes * Propagate app_identifier via State * Remove old updater stuff * Remove patch file * Remove unused binding * Fix application loading * Don't sign windows binaries by default * Remove the damn emojis * Figure out where windows artifacts are * Fix windows artifacts
38 lines
944 B
Rust
38 lines
944 B
Rust
use crate::api::Result;
|
|
use theseus::prelude::*;
|
|
|
|
pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
|
|
tauri::plugin::Builder::new("settings")
|
|
.invoke_handler(tauri::generate_handler![
|
|
settings_get,
|
|
settings_set,
|
|
cancel_directory_change
|
|
])
|
|
.build()
|
|
}
|
|
|
|
// Get full settings
|
|
// invoke('plugin:settings|settings_get')
|
|
#[tauri::command]
|
|
pub async fn settings_get() -> Result<Settings> {
|
|
let res = settings::get().await?;
|
|
Ok(res)
|
|
}
|
|
|
|
// Set full settings
|
|
// invoke('plugin:settings|settings_set', settings)
|
|
#[tauri::command]
|
|
pub async fn settings_set(settings: Settings) -> Result<()> {
|
|
settings::set(settings).await?;
|
|
Ok(())
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn cancel_directory_change() -> Result<()> {
|
|
let state = State::get().await?;
|
|
let identifier = &state.app_identifier;
|
|
|
|
settings::cancel_directory_change(identifier).await?;
|
|
Ok(())
|
|
}
|