diff --git a/CHANGELOG.md b/CHANGELOG.md index 2333ab5..c1fd332 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ # CHANGELOG +## v0.3.0 +This update was focused on a new gui. + +### New features +- Add option to disable server +- Uamp now remembers its window position and size +- Library is saved on another thread +- New gui + +### Bugfixes +- Use proper types: fast-forward, rewind, and seek_jump now use Duration +- You can now scroll with scrollbar after opening playlist +- Auto scroll would never scroll to the last item +- Errors when loading from json files weren't logged +- Some icons were incorrectly constructed + ## v0.2.0 ### New features diff --git a/Cargo.lock b/Cargo.lock index eb1b435..b82c90a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3251,7 +3251,7 @@ dependencies = [ [[package]] name = "uamp" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "audiotags", diff --git a/Cargo.toml b/Cargo.toml index b5f0e80..9c7543a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uamp" -version = "0.2.0" +version = "0.3.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 5a9ec4d..1139bfe 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,10 @@ If you enable shortcuts in the configuration, this is what they are: - **`Ctrl` + `Alt` + `PgDown`:** Next song - **`Ctrl` + `Alt` + `Up`:** Volume up - **`Ctrl` + `Alt` + `Down`:** Volume down +- **`Ctrl` + `Alt` + `PgUp`:** Previous song +- **`Ctrl` + `Alt` + `PgDown`:** Previous song +- **`Ctrl` + `Alt` + `Left`:** Rewind +- **`Ctrl` + `Alt` + `Right`:** Fast forward You can customize the shortcuts in `config.json` For example to play/pause you can use the command: @@ -31,7 +35,7 @@ uamp i pp This is the output of help: ``` Welcome in uamp by BonnyAD9 -Version 0.2.0 +Version 0.3.0 Usage: uamp @@ -99,14 +103,14 @@ Instance actions: exit close x Exits the instance - seek-to seek=[[[]:][]:][[.]] + seek-to seek= Seeks to the given timestamp. Timestamp is in format 'h:m:s'. - fast-forward ff[=] + fast-forward ff[=] Seeks forward by the given amout in seconds. If the parameter is not present, seek by the default amount. - rewind rw[=] + rewind rw[=] Seeks backward by the given amout in seconds. If the parameter is not present, seek by the default amount. ``` diff --git a/ROADMAP.md b/ROADMAP.md index 9e435a4..e83b1ac 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,7 +1,5 @@ # Roadmap -## v0.3.0 - ## v1.0.0 - Languages - Themes diff --git a/UNRELEASED.md b/UNRELEASED.md index b2a490f..8b13789 100644 --- a/UNRELEASED.md +++ b/UNRELEASED.md @@ -1,17 +1 @@ -# Unreleased -This update was focused on a new gui. -## New features -- Add option to disable server -- Uamp now remembers its window position and size -- Library is saved on another thread - -## Bugfixes -- Use proper types: fast-forward, rewind, and seek_jump now use Duration -- You can now scroll with scrollbar after opening playlist -- Auto scroll would never scroll to the last item -- Errors when loading from json files weren't logged -- Some icons were incorrectly constructed - -## Changes -- New gui