mirror of
https://git.sr.ht/~phw/scotty
synced 2025-04-10 23:49:28 +02:00
Release 0.2.0
This commit is contained in:
parent
f9d25e3b6f
commit
d96df4367d
3 changed files with 17 additions and 5 deletions
11
CHANGES.md
Normal file
11
CHANGES.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Scotty Changelog
|
||||
|
||||
## 0.2.0 - 2023-11-28
|
||||
- lastfm: support for scrobble and love export/import
|
||||
- jspf: consider loved track MBID
|
||||
- Fixed tracking of import errors
|
||||
|
||||
|
||||
## 0.1.0 - 2023-11-24
|
||||
- Initial development release with support for ListenBrainz, Maloja, Funkwhale,
|
||||
Subsonic, Spotify, Deezer, JSPF and scrobblerlog files.
|
|
@ -16,13 +16,14 @@ Scotty transfers your listens/scrobbles and favorite tracks between various musi
|
|||
|
||||
## Installation
|
||||
|
||||
Scotty is a command line utility written in Go. Currently the easiest way to get Scotty is by installing it from source with the following command:
|
||||
Scotty is a command line utility written in Go. Binary packages for various
|
||||
operating systems are available on the [release page](https://git.sr.ht/~phw/scotty/refs).
|
||||
|
||||
go install go.uploadedlobster.com/scotty@latest
|
||||
You can also install Scotty from source with the following command:
|
||||
|
||||
This requires `go` to be installed on your systems. You can get it from https://go.dev/dl/ .
|
||||
go install go.uploadedlobster.com/scotty@latest
|
||||
|
||||
In the future pre-built binary releases of Scotty will also be made available.
|
||||
This requires `go` to be installed on your system. You can get it from https://go.dev/dl/ .
|
||||
|
||||
|
||||
## Configuration
|
||||
|
|
|
@ -17,7 +17,7 @@ package version
|
|||
|
||||
const (
|
||||
AppName = "scotty"
|
||||
AppVersion = "0.1.0"
|
||||
AppVersion = "0.2.0"
|
||||
)
|
||||
|
||||
func UserAgent() string {
|
||||
|
|
Loading…
Add table
Reference in a new issue