From 6d6611249e4ccf4cd1a1b990f35376e39b8a6384 Mon Sep 17 00:00:00 2001 From: w1nst0n Date: Tue, 28 Sep 2021 14:51:52 +0200 Subject: [PATCH] Fix exported selection not found (#35) --- CHANGELOG.md | 8 ++++++++ src/core/utils.rs | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ff7798..5ae8c3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ and `Removed`. ## [Unreleased] +## [0.2.1] - 2021-09-28 + +## Packaging +- `wgpu` renderer is not the default renderer (you don't need to add `--features wgpu` if you want to build UAD with `wgpu`) + +### Fixed +- Exported selection not found (#35) + ## [0.2] - 2021-09-26 ### Added diff --git a/src/core/utils.rs b/src/core/utils.rs index 1864e3d..b58ef2c 100644 --- a/src/core/utils.rs +++ b/src/core/utils.rs @@ -28,7 +28,7 @@ pub async fn export_selection(packages: Vec) -> Result .collect::>() .join("\n"); - match fs::write("uad_selection.txt", selected) { + match fs::write("uad_exported_selection.txt", selected) { Ok(_) => Ok(true), Err(err) => Err(err.to_string()) }