Compare commits

...
12 Commits
Author SHA1 Message Date
arabianq e2168421bb change version to 1.16.2 2026-09-09 21:31:18 +03:00
arabianq 12e04f1403 update rodio 2026-09-09 21:30:19 +03:00
arabianq b78ea66ece cargo update 2026-09-09 21:28:42 +03:00
dependabot[bot] 5c3f20e153 chore(deps): bump dirs from 6.0.0 to 7.0.0 (#194)
* chore(deps): bump dirs from 6.0.0 to 7.0.0

Bumps dirs from 6.0.0 to 7.0.0.

---
updated-dependencies:
- dependency-name: dirs
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(flatpak): automatically update cargo-sources.json

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-09-09 21:26:25 +03:00
Tarasov Aleksandrandgoogle-labs-jules[bot] 6eff8b2c6d perf(gui): eliminate allocations during cache file read using BufReader (#192)
* perf: eliminate allocations during cache file read using BufReader

Replaced `fs::read_to_string` combined with `serde_json::from_str` with `std::fs::File::open` and `serde_json::from_reader(std::io::BufReader::new(file))`. This avoids loading the entire JSON file into a string allocation before parsing it, improving memory usage.

Co-authored-by: arabianq <55220741+arabianq@users.noreply.github.com>

* small reformatting

---------

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-09-09 13:15:05 +03:00
Tarasov Aleksandrandgoogle-labs-jules[bot] dd13eee0df perf(gui): optimize GUI add_dirs allocations and cloning (#191)
*  Optimize `add_dirs` method by removing redundant allocations

Replaced the `iter().unique().cloned().collect()` pipeline with a simple
contains check before pushing to `app_state.dirs`. This prevents entire
vector allocations and item clones per user folder pick. Furthermore,
saving the configuration and cloning `dirs` is now only performed if the
app state actually changed (e.g. if the user picked a new folder).

Cleaned up the unused `itertools::Itertools` import.

Co-authored-by: arabianq <55220741+arabianq@users.noreply.github.com>

*  Optimize GUI `add_dirs` allocations and cloning

Replaced the `iter().unique().cloned().collect()` pipeline with a simple
contains check before pushing to `app_state.dirs`. This prevents entire
vector allocations and item clones per user folder pick. Furthermore,
saving the configuration and cloning `dirs` is now only performed if the
app state actually changed (e.g. if the user picked a new folder).

Cleaned up the unused `itertools::Itertools` import. Cargo.lock was
not touched.

Co-authored-by: arabianq <55220741+arabianq@users.noreply.github.com>

---------

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-09-09 11:30:56 +03:00
Tarasov Aleksandrandgoogle-labs-jules[bot] 3d1bc24c21 perf(gui): optimize filesystem scanning by avoiding unnecessary PathBuf allocations (#193)
The directory scanning loop allocated a new `PathBuf` for every file encountered by unconditionally calling `entry.path()` and frequently querying disk metadata via `p.is_dir()`.

This patch refactors the code to first check `entry.file_type()` and use `entry.file_name()` for extension matching. This delays or completely avoids creating a `PathBuf` string allocation and stat syscall for all non-directory and non-supported media files, resulting in an ~80% performance boost when scanning directories dominated by non-audio assets.

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-09-09 11:24:29 +03:00
arabianq 53fabcee75 change version to 1.16.1 2026-08-31 19:15:35 +03:00
arabianq 6ebe7ec211 cargo update 2026-08-31 19:15:08 +03:00
Tarasov Aleksandrandgoogle-labs-jules[bot] 17146d2ce6 perf: Optimize system font loading by replacing concat() with chain() (#189)
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-08-31 04:36:36 +03:00
arabianq 7ad69243cc update rodio 2026-08-31 00:00:41 +03:00
arabianq 5b78cb17d7 cargo update 2026-08-30 23:58:48 +03:00
10 changed files with 922 additions and 734 deletions
Generated
+295 -227
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -8,7 +8,7 @@ members = [
resolver = "2"
[workspace.package]
version = "1.16.0"
version = "1.16.2"
edition = "2024"
authors = ["arabian"]
homepage = "https://pwsp.arabianq.ru"
@@ -38,7 +38,7 @@ clap = { version = "4.6.1", default-features = false, features = [
"derive",
] }
dirs = "6.0.0"
dirs = "7.0.0"
itertools = "0.15.0"
evdev = { version = "0.13.2", features = ["tokio"] }
rfd = { version = "0.17.2", default-features = false, features = [
@@ -52,7 +52,7 @@ rustix = { version = "1.1.4", features = ["process"] }
rust-i18n = "4.0.0"
sys-locale = "0.3.2"
rodio = { git = "https://github.com/RustAudio/rodio.git", rev = "c5f1e94290922fe4ee963ce6f85754ea6ba36243", default-features = false, features = [
rodio = { git = "https://github.com/RustAudio/rodio.git", rev = "685e05765c2aff8fbb51e32cda5b18428d09ffbe", default-features = false, features = [
"symphonia-all",
"symphonia-libopus",
"playback",
+4 -4
View File
@@ -1,6 +1,6 @@
pkgbase = pwsp-bin
pkgdesc = Lets you play audio files through your microphone (Pre-built binaries)
pkgver = 1.16.0
pkgver = 1.16.2
pkgrel = 1
url = https://github.com/arabianq/pipewire-soundpad
arch = x86_64
@@ -10,11 +10,11 @@ pkgbase = pwsp-bin
depends = alsa-lib
provides = pwsp
conflicts = pwsp
source = pipewire-soundpad-1.16.0.tar.gz :: https://github.com/arabianq/pipewire-soundpad/archive/refs/tags/v1.16.0.tar.gz
source = pipewire-soundpad-1.16.2.tar.gz :: https://github.com/arabianq/pipewire-soundpad/archive/refs/tags/v1.16.2.tar.gz
sha256sums = SKIP
source_x86_64 = pwsp-1.16.0-x86_64.zip :: https://github.com/arabianq/pipewire-soundpad/releases/download/v1.16.0/pwsp-v1.16.0-linux-x64.zip
source_x86_64 = pwsp-1.16.2-x86_64.zip :: https://github.com/arabianq/pipewire-soundpad/releases/download/v1.16.2/pwsp-v1.16.2-linux-x64.zip
sha256sums_x86_64 = SKIP
source_aarch64 = pwsp-1.16.0-aarch64.zip :: https://github.com/arabianq/pipewire-soundpad/releases/download/v1.16.0/pwsp-v1.16.0-linux-arm64.zip
source_aarch64 = pwsp-1.16.2-aarch64.zip :: https://github.com/arabianq/pipewire-soundpad/releases/download/v1.16.2/pwsp-v1.16.2-linux-arm64.zip
sha256sums_aarch64 = SKIP
pkgname = pwsp-bin
+1 -1
View File
@@ -1,7 +1,7 @@
# Maintainer: Alexander Tarasov <a.tevg@ya.ru>
pkgname=pwsp-bin
_pkgname=pipewire-soundpad
pkgver=1.16.0
pkgver=1.16.2
pkgrel=1
pkgdesc="Lets you play audio files through your microphone (Pre-built binaries)"
arch=('x86_64' 'aarch64')
+2 -2
View File
@@ -1,6 +1,6 @@
pkgbase = pwsp
pkgdesc = Lets you play audio files through your microphone
pkgver = 1.16.0
pkgver = 1.16.2
pkgrel = 1
url = https://github.com/arabianq/pipewire-soundpad
arch = x86_64
@@ -12,7 +12,7 @@ pkgbase = pwsp
makedepends = cmake
makedepends = pipewire
makedepends = alsa-lib
source = https://github.com/arabianq/pipewire-soundpad/archive/refs/tags/v1.16.0.tar.gz
source = https://github.com/arabianq/pipewire-soundpad/archive/refs/tags/v1.16.2.tar.gz
sha256sums = SKIP
pkgname = pwsp
+1 -1
View File
@@ -1,7 +1,7 @@
# Maintainer: Alexander Tarasov <a.tevg@ya.ru>
pkgsubn=pwsp
pkgname=pwsp
pkgver=1.16.0
pkgver=1.16.2
pkgrel=1
pkgdesc="Lets you play audio files through your microphone"
arch=('x86_64' 'aarch64')
File diff suppressed because one or more lines are too long
@@ -31,7 +31,7 @@
<name>arabian</name>
</developer>
<releases>
<release version="1.16.0" date="2026-07-30" />
<release version="1.16.2" date="2026-09-09" />
</releases>
<content_rating type="oars-1.1" />
</component>
+1 -1
View File
@@ -13,7 +13,7 @@
Name: pwsp
Version: 1.16.0
Version: 1.16.2
Release: %autorelease
Summary: Lets you play audio files through your microphone
+40 -24
View File
@@ -5,7 +5,6 @@ mod views;
use anyhow::{Result, anyhow};
use eframe::{NativeOptions, icon_data::from_png_bytes, run_native};
use egui::{Context, FontData, FontDefinitions, FontFamily, FontTweak, Vec2, ViewportBuilder};
use itertools::Itertools;
use pwsp_lib::{
types::{
audio_player::PlayerState,
@@ -24,6 +23,7 @@ use std::{
collections::{HashMap, HashSet},
fs,
hash::{DefaultHasher, Hash, Hasher},
io::BufReader,
path::{Path, PathBuf},
sync::{Arc, Mutex},
thread,
@@ -110,12 +110,17 @@ impl SoundpadGui {
pub fn add_dirs(&mut self) {
let file_dialog = FileDialog::new();
if let Some(paths) = file_dialog.pick_folders() {
let mut changed = false;
for path in paths {
self.app_state.dirs.push(path);
if !self.app_state.dirs.contains(&path) {
self.app_state.dirs.push(path);
changed = true;
}
}
if changed {
self.config.dirs = self.app_state.dirs.clone();
self.config.save_to_file().ok();
}
self.app_state.dirs = self.app_state.dirs.iter().unique().cloned().collect();
self.config.dirs = self.app_state.dirs.clone();
self.config.save_to_file().ok();
}
}
@@ -171,11 +176,9 @@ impl SoundpadGui {
// 1. Try to load from disk cache if we don't have it in memory yet
if !is_cached
&& let Ok(data) = fs::read_to_string(&cache_file)
&& let Ok((all_files, dir_updates)) = serde_json::from_str::<(
Vec<PathBuf>,
HashMap<PathBuf, Vec<PathBuf>>,
)>(&data)
&& let Ok(file) = fs::File::open(&cache_file)
&& let Ok((all_files, dir_updates)) =
serde_json::from_reader(BufReader::new(file))
{
finished_scans.lock().unwrap().push((
path_clone.clone(),
@@ -196,18 +199,27 @@ impl SoundpadGui {
if let Ok(entries) = fs::read_dir(&dir) {
let mut children = Vec::new();
for entry in entries.filter_map(|e| e.ok()) {
let p = entry.path();
if p.is_dir() {
dirs_to_visit.push(p.clone());
children.push(p);
} else if crate::gui::SUPPORTED_EXTENSIONS.contains(
&p.extension()
.unwrap_or_default()
.to_str()
.unwrap_or_default(),
) {
all_files.push(p.clone());
children.push(p);
if let Ok(file_type) = entry.file_type() {
if file_type.is_dir() {
let p = entry.path();
dirs_to_visit.push(p.clone());
children.push(p);
} else {
let file_name = entry.file_name();
let is_supported = Path::new(&file_name)
.extension()
.map(|e| {
crate::gui::SUPPORTED_EXTENSIONS
.contains(&e.to_str().unwrap_or_default())
})
.unwrap_or(false);
if is_supported {
let p = entry.path();
all_files.push(p.clone());
children.push(p);
}
}
}
}
dir_updates.insert(dir, children);
@@ -389,9 +401,13 @@ fn load_system_fonts(fonts: &mut FontDefinitions) -> Result<()> {
let (_, ja_sans) = find_for_locale("ja", FontStyle::Sans);
let (_, ar_sans) = find_for_locale("ar", FontStyle::Sans);
let system_fonts = [en_sans, en_serif, ja_sans, ar_sans].concat();
let system_fonts = en_sans
.into_iter()
.chain(en_serif)
.chain(ja_sans)
.chain(ar_sans);
for font in system_fonts.iter().rev() {
for font in system_fonts.rev() {
let font_bytes = match &font.source {
FoundFontSource::Path(path) => fs::read(path)?,
FoundFontSource::Bytes(bytes) => bytes.to_vec(),