Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
BonnyAD9 committed Sep 12, 2023
1 parent f11db15 commit 2849c04
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 24 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -99,14 +103,14 @@ Instance actions:
exit close x
Exits the instance
seek-to seek=[[[<h>]:][<m>]:][<s>[.<s>]]
seek-to seek=<Duration>
Seeks to the given timestamp. Timestamp is in format 'h:m:s'.
fast-forward ff[=<f32>]
fast-forward ff[=<Duration>]
Seeks forward by the given amout in seconds. If the parameter is not
present, seek by the default amount.
rewind rw[=<f32>]
rewind rw[=<Duration>]
Seeks backward by the given amout in seconds. If the parameter is not
present, seek by the default amount.
```
Expand Down
2 changes: 0 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Roadmap

## v0.3.0

## v1.0.0
- Languages
- Themes
Expand Down
16 changes: 0 additions & 16 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2849c04

Please sign in to comment.