Build tagged releases on Gitea (#79)
All checks were successful
Tagged release / prepare-release (push) Successful in 4s
Tagged release / build-unix (push) Successful in 49m4s
Tagged release / build-windows (push) Successful in 17m53s
Tagged release / publish-release (push) Successful in 3s

This commit is contained in:
2026-08-12 20:54:15 +02:00
parent 87f9e7be98
commit 189ae7721e
6 changed files with 347 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ async fn pick_file(
pub async fn pick_folder(initial: Option<PathBuf>) -> Result<Option<PathBuf>, String> {
use ashpd::{
PortalError,
desktop::{file_chooser::SelectedFiles, request::ResponseError},
desktop::{ResponseError, file_chooser::SelectedFiles},
};
let mut request = SelectedFiles::open_file()
@@ -93,7 +93,7 @@ pub async fn pick_folder(initial: Option<PathBuf>) -> Result<Option<PathBuf>, St
pub async fn pick_qr_image() -> Result<Option<SecretBytes>, String> {
use ashpd::{
PortalError,
desktop::{file_chooser::SelectedFiles, request::ResponseError},
desktop::{ResponseError, file_chooser::SelectedFiles},
};
let response = SelectedFiles::open_file()
@@ -134,7 +134,7 @@ pub async fn pick_key_file() -> Result<Option<PathBuf>, String> {
async fn pick_file(title: &str, accept_label: &str) -> Result<Option<PathBuf>, String> {
use ashpd::{
PortalError,
desktop::{file_chooser::SelectedFiles, request::ResponseError},
desktop::{ResponseError, file_chooser::SelectedFiles},
};
let response = SelectedFiles::open_file()