Fix exported selection not found (#35)

This commit is contained in:
w1nst0n 2021-09-28 14:51:52 +02:00
commit 6d6611249e
No known key found for this signature in database
GPG key ID: 34D27465928A0A1D
2 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -28,7 +28,7 @@ pub async fn export_selection(packages: Vec<PackageRow>) -> Result<bool, String>
.collect::<Vec<String>>()
.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())
}