Release 0.2.0

This commit is contained in:
Philipp Wolfer 2023-11-28 09:09:53 +01:00
parent f9d25e3b6f
commit d96df4367d
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
3 changed files with 17 additions and 5 deletions

11
CHANGES.md Normal file
View 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.

View file

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

View file

@ -17,7 +17,7 @@ package version
const (
AppName = "scotty"
AppVersion = "0.1.0"
AppVersion = "0.2.0"
)
func UserAgent() string {