PackageTrack
Sign in Get early access

github.com/fabiofalci/sconsify

v0.5.0 #2323 most downloaded on Go modules fabiofalci/sconsify

What this package is like to depend on

Last release 6 years ago

no release in 18 months

Release timing varies

gaps range from 2 weeks to 13 months

Some releases are documented

notes for 4 of 7 stable releases

Nothing withdrawn

no release was ever pulled

11 years old

27 releases · first in 2015

0 releases in the last 12 months

see the full history below

Release timeline

27 releases · Apr 2015 to Mar 2020
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 27
  1. v0.5.1-0.20200309222125-85b8dae5e3c0 09 Mar 2020 pre-release

    Nothing published for this version

  2. v0.5.1-0.20191011204055-51625341bc0a 11 Oct 2019 pre-release

    Nothing published for this version

  3. v0.5.0 03 Mar 2018
    Release notes

    Sconsify 0.5.0, a minor release just to get some things out:

    • Add a pause command (different than the current play_pause that toggles play/pause). Useful in cases such as locking the computer and pausing the music. For instance i3 binding:
    bindsym Control+Mod1+l exec "i3lock -c 000000 && sconsify -command pause"
    
    • Ignore tracks with no artists. TODO still need fixing, maybe just ignoring the artist but still showing in the playlist.

    • Spotify has changed search endpoint, it requires authentication now. Unfortunately, that means after 1 hour the token expires and search won't work anymore. As there is no way to refresh token, a sconsify restart is required.

    Open source →
    Release notes

    v0.5.0 Latest

    Latest

    Compare

    Choose a tag to compare

    Open source →
  4. v0.4.0 08 Feb 2017
    Release notes

    Sconsify 0.4.0:

    • Mark playing song in the track list.
    • Search aliases al = album, ar = artist, tr = track:
        al:help
        ar:the beatles
        tr:let it be
    
    • Fix pause to actually pause the track and not to stop it.
    • Temporary playlist. Type c in the queue view, type a name and then a temporary playlist will appear containing all songs in the queue view.
    • Show tracks as title + artist instead of artist + title.
    • Load playlists using spotify web api by default as it seems that loading playlists using libspotify doesn't work anymore.
    • Fix macOS Sierra issues by updating go (1.7.5) and fixing gco pointer rules.
    Open source →
    Release notes

    v0.4.0

    Compare

    Choose a tag to compare

    Open source →
  5. v0.4.0-rc3 27 Jan 2017 pre-release
    Release notes

    Sconsify 0.4.0-rc3:

    • Fix macOS Sierra issues by updating go (1.7.5) and fixing gco pointer rules.
    Open source →
    Release notes

    v0.4.0-rc3 Pre-release

    Pre-release

    Compare

    Choose a tag to compare

    Open source →
  6. v0.4.0-rc2.0.20170127212906-1331aec1aa27 27 Jan 2017 pre-release

    Nothing published for this version

  7. v0.4.0-rc2 05 Jan 2017 pre-release
    Release notes

    Sconsify 0.4.0-rc2:

    • Load playlists using spotify web api when using -web-api flag as it seems that loading playlists using libspotify doesn't work anymore.

    This release still doesn't solve the problem on macOS Sierra.

    Open source →
    Release notes

    v0.4.0-rc2 Pre-release

    Pre-release

    Compare

    Choose a tag to compare

    Open source →
  8. v0.4.0-rc1.0.20170105191113-ae02752a6760 05 Jan 2017 pre-release

    Nothing published for this version

  9. v0.4.0-rc1 12 Nov 2016 pre-release
    Release notes

    Sconsify 0.4.0-rc1:

    • Mark playing song in the track list.
    • Search aliases al = album, ar = artist, tr = track:
        al:help
        ar:the beatles
        tr:let it be
    
    • Fix pause to actually pause the track and not to stop it.
    • Temporary playlist. Type c in the queue view, type a name and then a temporary playlist will appear containing all songs in the queue view.
    • Show tracks as title + artist instead of artist + title.
    Open source →
    Release notes

    v0.4.0-rc1 Pre-release

    Pre-release

    Compare

    Choose a tag to compare

    Open source →
  10. v0.3.1-0.20161112194156-3500d205d47d 12 Nov 2016 pre-release

    Nothing published for this version

  11. v0.3.0 18 Sep 2016
    Release notes

    Sconsify 0.3.0:

    • Remove track from playlist: dd (it doesn't save the change to spotify playlist).
    • Remove playlist from playlists view: dd (it doesn't save the change to spotify playlist).
    • Remove all tracks from playlist: D (it doesn't save the change to spotify playlist).
    • Preferred bitrate -preferred-bitrate=96k, 160k, 320k.
    • Search function using spotify web-api instead of libspotify sdk.
    • Press to load option in the search to load more results.
    • Search fields: album, artist or track. Examples:
        album:help
        artist:the beatles
        track:let it be
    
    • Interprocess commands using sconsify -command <command>. Available commands: replay, play_pause, next. For instance my i3 config file has this configuration so I can use keyboard buttons to replay, play/pause and go to the next track:
        bindsym XF86AudioPrev exec sconsify -command replay
        bindsym XF86AudioPlay exec sconsify -command play_pause
        bindsym XF86AudioNext exec sconsify -command next
    
    • Experimental use of spotify web-api to have access to saved albums, saved songs and new releases. It needs a web autentication to get an access token valid for 1 hour. After 1 hour it won't be able to access the web-api anymore and there's no way to refresh the token, only quiting and opening the application again. Pass -web-api flag to use it.
    Open source →
    Release notes

    v0.3.0

    Compare

    Choose a tag to compare

    Open source →
  12. v0.3.0-rc1 13 Jun 2016 pre-release
    Release notes

    Sconsify 0.3.0 release candidate 1:

    • Remove track from playlist: dd (it doesn't save the change to spotify playlist).
    • Remove playlist from playlists view: dd (it doesn't save the change to spotify playlist).
    • Remove all tracks from playlist: D (it doesn't save the change to spotify playlist).
    • Preferred bitrate -preferred-bitrate=96k, 160k, 320k.
    • Search function using spotify web-api instead of libspotify sdk.
    • Press to load option in the search to load more results.
    • Search fields: album, artist or track. Examples:
        album:help
        artist:the beatles
        track:let it be
    
    • Interprocess commands using sconsify -command <command>. Available commands: replay, play_pause, next. For instance my i3 config file has this configuration so I can use keyboard buttons to replay, play/pause and go to the next track:
        bindsym XF86AudioPrev exec sconsify -command replay
        bindsym XF86AudioPlay exec sconsify -command play_pause
        bindsym XF86AudioNext exec sconsify -command next
    
    • Experimental use of spotify web-api to have access to saved albums, saved songs and new releases. It needs a web autentication to get an access token valid for 1 hour. After 1 hour it won't be able to access the web-api anymore and there's no way to refresh the token, only quiting and opening the application again. Pass -web-api flag to use it.
    Open source →
    Release notes

    v0.3.0-rc1 Pre-release

    Pre-release

    Compare

    Choose a tag to compare

    Open source →
  13. v0.2.2-0.20160613171133-cfa3b642748a 13 Jun 2016 pre-release

    Nothing published for this version

  14. v0.2.1 17 Jan 2016
    Release notes

    v0.2.1

    Compare

    Choose a tag to compare

    Open source →
  15. v0.2.0 19 Aug 2015

    Nothing published for this version

  16. v0.2.0-rc1 09 Aug 2015 pre-release

    Nothing published for this version

  17. v0.1.2-0.20150809202411-e435910cfc88 09 Aug 2015 pre-release

    Nothing published for this version

  18. v0.1.1 26 May 2015

    Nothing published for this version

  19. v0.1.1-rc1 13 May 2015 pre-release

    Nothing published for this version

  20. v0.1.1-0.20150513073733-1e03c6895f8d 13 May 2015 pre-release

    Nothing published for this version

  21. v0.1.0 01 May 2015

    Nothing published for this version

  22. v0.1.0-rc2 24 Apr 2015 pre-release

    Nothing published for this version

  23. v0.1.0-rc1.0.20150424071451-c283b9792e52 24 Apr 2015 pre-release

    Nothing published for this version

  24. v0.1.0-rc1 20 Apr 2015 pre-release

    Nothing published for this version

  25. v0.0.0-20191011204055-51625341bc0a 11 Oct 2019 pre-release

    Nothing published for this version

  26. v0.0.0-20181227092444-24138dd68637 27 Dec 2018 pre-release

    Nothing published for this version

  27. v0.0.0-20150420170048-26253670c1b9 20 Apr 2015 pre-release

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive