Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xou816 committed Feb 11, 2021
1 parent 24de1fc commit 44db78c
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 7 deletions.
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 = "spot"
version = "0.1.4"
version = "0.1.5"
edition = "2018"
license = "MIT"

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ Based on [librespot](https://github.com/librespot-org/librespot/).
**Only works with premium accounts**

- minimal playback control (play/pause, prev/next, seeking)
- library browser (saved albums)
- library browser (saved albums and playlists)
- album search
- artist view
- credentials management with Secret Service over DBus
- credentials management with Secret Service
- MPRIS integration

## Building

Expand All @@ -31,6 +32,8 @@ Requires Rust (stable), GTK3, and a couple other things.

**Build** dependencies on Ubuntu 20.04 for instance: ```build-essential pkg-config meson libssl-dev libglib2.0-dev-bin libgtk-3-dev libasound2-dev libpulse-dev```.

Also requires libhandy!!

Then, with meson:

```
Expand Down
Binary file modified data/appstream/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/appstream/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/appstream/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 17 additions & 1 deletion data/dev.alextren.Spot.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,24 @@
<screenshot>
<image>https://raw.githubusercontent.com/xou816/spot/master/data/appstream/2.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/xou816/spot/master/data/appstream/3.png</image>
</screenshot>
</screenshots>
<releases>
<releases>
<release version="0.1.5" date="2021-02-11">
<description>
<p>
New features:
</p>
<ul>
<li>browse saved playlists</li>
<li>quick access to "Now playing"</li>
<li>artists top tracks</li>
<li>API token renewal</li>
</ul>
</description>
</release>
<release version="0.1.4" date="2021-02-04">
<description>
<p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'spot',
version: '0.1.4',
version: '0.1.5',
meson_version: '>= 0.50.0',
default_options: ['warning_level=2', 'buildtype=release'],
)
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub static PKGDATADIR: &str = "/home/alexandre/.local/share/spot";
pub static VERSION: &str = "0.1.4";
pub static VERSION: &str = "0.1.5";
// pub static LOCALEDIR: &str = "/home/alexandre/.local/share/locale";

0 comments on commit 44db78c

Please sign in to comment.