Commit graph

467 commits

Author SHA1 Message Date
Yetangitu
23862c8b33 Remove external sources, links, scripts etc. 2021-06-26 22:04:49 +00:00
Yetangitu
eb5a6b455e Revert "Revert "Bump version to v4.7.1""
This reverts commit ec27b74b18.
2021-06-26 21:54:56 +00:00
Yetangitu
ec27b74b18 Revert "Bump version to v4.7.1"
This reverts commit 280d5ffb26.
2021-06-26 21:54:51 +00:00
Carey Metcalfe
280d5ffb26 Bump version to v4.7.1 2020-10-18 22:01:37 -04:00
Sunguk Lee
ce96c7425c
Fix flac playing (#260)
Co-authored-by: Carey Metcalfe <carey@cmetcalfe.ca>
2020-10-18 21:57:27 -04:00
Carey Metcalfe
45ebccd485 Change hosted URL to HTTPS 2020-03-10 20:53:55 -04:00
Carey Metcalfe
f6883cbb72 Bump version to v4.7.0 2020-03-10 20:25:41 -04:00
Carey Metcalfe
375d4e79da Update development and release documentation 2020-03-10 19:33:46 -04:00
Carey Metcalfe
1689e0d23e
Merge pull request #258 from mvn23/proper-content-length
Improve song length handling when transcoding
2019-10-03 20:21:35 -04:00
mvn23
2f920f434b Provide song duration to jplayer when starting playback 2019-10-03 13:40:02 +02:00
Carey Metcalfe
44607e4e9b
Merge pull request #254 from pR0Ps/feature/estimate-content-length
Add option to estimate the content length of streamed media
2019-05-13 19:16:10 -04:00
Carey Metcalfe
051a6b63c0
Merge pull request #253 from pR0Ps/bugfix/fullsize-thumbnails
Use small album images when viewing tracks
2019-05-13 19:13:49 -04:00
Carey Metcalfe
08e1db85fa Use small album images when viewing tracks 2019-02-22 21:25:21 -05:00
Carey Metcalfe
d2e57ccc6f Add option to estimate the content length of streamed media
Enabling this can help with seeking within transcoded media.

Without knowing how big a file is, it's impossible to display an
accurate progress bar. This option asks the server to send a
"Content-Length" header with a guess (based on bitrate and song length)
of how big the streamed file is going to be, enabling a progress bar to
be shown.

This reliably works with CBR transcodes, but can have issues with VBR as
the server doesn't know how big the file will be before it's transcoded.
If the server estimates incorrectly then songs could stop playing before
they actually finish or cause other glitches.

For the most part servers are pretty good with their estimates and being
able to seek in a transcoded stream as it downloads is a substantial UX
improvement so the option is enabled by default.
2019-02-22 21:24:16 -05:00
Carey Metcalfe
c791604a42 Revert "Update README"
This reverts commit c1ee65b81d.

The domain is staying put for the foreseeable future. Also, I'll be
helping out with maintaining the project.
2019-02-22 21:21:48 -05:00
Carey Metcalfe
0043cddc7b Merge pull request #252 from pR0Ps/bugfix/fix-empty-responses
Tighten up check of data coming back from the server
2019-01-16 02:07:52 -05:00
Carey Metcalfe
6aab6bfb0c Merge pull request #245 from pR0Ps/feature/artist-nowplaying
Add Artist to now playing display
2019-01-16 02:07:31 -05:00
Carey Metcalfe
2afc90ef06 Merge pull request #246 from pR0Ps/bugfix/update-and-ui-fixes
Mouse and media key fixes
2019-01-16 02:06:54 -05:00
tsquillario
8d84ccf630 Update README 2019-01-15 18:36:00 -07:00
Carey Metcalfe
bba879b814 Tighten up check of data coming back from the server 2019-01-15 20:11:59 -05:00
Carey Metcalfe
ee7d11d8d7 Refactor Jukebox control
- Moves the functions to make the jukebox-related API calls to the
  subsonic service
- Initiate the API calls from the player directive to centralize the
  logic.
2017-11-10 14:31:24 -05:00
Carey Metcalfe
8c279093df Refactor media keys and fix play/pause
- Using space to play/pause was broken due to an issue with data
  binding. Running `$scope.$apply()` after updating the `player.pauseSong`
  property using `player.togglePause()` seems to have fixed this.
- All of the key event processing has been moved into the JS. This means
  that all the key event logic is all in one spot (easier to understand
  IMO). Additionally, this removes the need to redefine functions for
  each shortcut.
- Removed the now-unused `angular-ui-utils/keypress.js` package.
- Fixed key events being active when editing dropdown/checkbox controls
  in the settings menu
- Removed the custom `[Home]` shortcut since this is done natively by
  the browser already.
- Removed the 1-6 shortcuts for the tabs. Logic being that it seems
  pretty rare that you would want to rapidly switch between them (you
  would have to use the mouse to do anything on all tabs except the
  subsonic one anyway), and they were already broken without anyone
  complaining.
- Fixed tests
2017-11-10 14:31:01 -05:00
Carey Metcalfe
dbf5010745 Fix double click event propagation
This fixes an issue where attempting to rapidly remove songs from the
queue would cause them to be played.

- When clicking the add/play/remove/star buttons quickly, the double
  click event would propagate and start playing the song
- Fixed by extending the `stopEvent` directive to accept a
  comma-delimited list of events to stop. This allowed for using
  `stop-event="click,dblclick"` in the html to not propagate both click
  and double click events.
- Also removed some duplicate directives that seemed to have snuck in
  during a merge.
2017-11-10 14:31:01 -05:00
Carey Metcalfe
83de1d2f25 Fix grunt serve command 2017-11-10 14:31:01 -05:00
Carey Metcalfe
904d410c05 Update packages and reorder scripts
- Didn't update everything to the absolute latest since there are
  compatibility issues
- Reordered jquery above angular to fix some issues
2017-11-07 23:54:16 -05:00
Carey Metcalfe
739bf6c001 Make more space for song details 2017-11-07 23:06:09 -05:00
Carey Metcalfe
3e66e6258c Add Artist to now playing display 2017-11-07 23:06:09 -05:00
Hyzual
63a6188d46 4.6.5 Fix tabs behaviour, Fix album image requests
closes tsquillario/Jamstash#244
closes tsquillario/Jamstash#243
2017-11-01 13:47:40 +01:00
Joris MASSON
adb97e868e Merge pull request #243 from pR0Ps/develop
Fix bug where templates strings were being requested from servers
2017-11-01 13:25:29 +01:00
Joris MASSON
39a3c02ba0 Merge pull request #244 from pR0Ps/bugfix/tabs
Fix Subsonic tab toggling behaviour
2017-11-01 13:17:52 +01:00
Carey Metcalfe
5842c0615a Fix Subsonic tab toggling behaviour
Previously clicking on an already-selected tab would hide its contents.
2017-10-22 21:53:00 -04:00
Carey Metcalfe
8d3f11e020 Fix bug where templates strings were being requested from servers 2017-10-16 00:29:38 -04:00
Carey Metcalfe
16d76d9569 Ask git to treat files in 'dist' as binaries
Among other things, this makes the output of `git diff` not show
line-by-line changes for files in this folder, making it much easier to
understand.

Also applies the same attributes to the package lock files.
2017-10-16 00:29:26 -04:00
Hyzual
590dfee57a 4.6.4 Fix playlist buttons style
fixes tsquillario/Jamstash#241
2017-05-08 00:02:03 +02:00
Hyzual
402b12522f Apply evilmanimani's playlist style improvements
This lets users see and click on the "New playlist" button that was
hidden most of the time.
2017-05-07 23:43:38 +02:00
Hyzual
728d5928c3 Add yarn lock
Yarn is an alternative client for npm packages. Using a lockfile, we can
all install the exact same packages every time.

See https://yarnpkg.com/
2017-05-07 23:34:13 +02:00
Hyzual
2942cc142e Add jasmine-core to run unit tests 2017-05-07 23:17:12 +02:00
Hyzual
7c79493f2a Upgrade grunt-imagemin 2017-05-07 22:51:35 +02:00
Hyzual
45d86d4892 4.6.3 Add an icon to select all songs in the queue
Adds links to the Media Keys Firefox addon to control Jamstash with keyboard media keys.

fixes tsquillario/Jamstash#220
closes tsquillario/Jamstash#221
closes tsquillario/Jamstash#222
2015-10-26 23:33:35 +01:00
Hyzual
f31215aa63 Changed Firefox Media Keys addon link to en-US. 2015-10-26 23:19:40 +01:00
Hyzual
90456e4a2a Merge branch 'patch-1' of https://github.com/miicha/Jamstash into miicha-patch-1 2015-10-26 23:16:51 +01:00
Hyzual
cc20a73efa Add an icon to select all songs in the queue.
Fixes tsquillario/Jamstash#220
2015-10-26 22:58:26 +01:00
Michael
ee8bf21647 point to firefox media keys addon 2015-10-14 00:32:13 +02:00
Trevor Squillario
c758df2ac9 4.6.2 fix songdetails_controls loop icon spacing and uglifyjs in gruntfile 2015-08-23 11:44:01 -04:00
Trevor Squillario
d672598210 Revert "4.6.2 fix songdetails_controls loop icon spacing"
This reverts commit d098d6e19a.
2015-08-23 01:04:05 -04:00
Trevor Squillario
3b84b7cdc1 4.6.2 fix songdetails_controls loop icon spacing 2015-08-23 00:41:24 -04:00
Hyzual
ba9b3d23b4 4.6.1 Fix starring songs in the playing queue
- Also increment the *.json files to the correct version number
2015-07-20 23:39:09 +02:00
Hyzual
f5fd2e6b61 Merge branch '4.6.1' into develop 2015-07-20 23:38:56 +02:00
Hyzual
9804561ebd Fix starring songs in the playing queue 2015-07-20 23:36:47 +02:00
Hyzual
fa1dec8e34 4.6.0 Code refactorings, Genre auto-playlists and Breadcrumbs improvements.
**Please do a 'bower install' and 'npm install' to update**
**You should probably also do a 'bower prune' and 'npm prune' to remove deprecated dependencies !**

* Fixes tsquillario/Jamstash#217
* Remove subsonic.js getStarred()
* Rename subsonic's getSongs() to getDirectory()
* Remove songs_lite.html
* Refactor queue.js
* Added angular-ui's ui-sortable directive as a bower dependency
* Refactor song selection across the app
* Refactor subsonic.js' loadPlaylistsForMenu
* Refactor subsonic-service.js to improve readability
* Updated bower deps to their latest versions
* Add a VersionEye badge in the README to track our dependencies
* Minor code style adjustments to comply with our jscsrc.
* Changed the localStorage key used to store the genre playlists names
* Enable removing genre auto-playlists from the list
* Use angular cache when querying getMusicFolders and getIndexes
* Refactor getAlbumListBy()
* Rework of the JSCS and JSHint configs
* Refactor breadcrumbs into a directive.
* Removes getAlbums() in subsonic-service, replaced by getSongs()
* Removes getSongTemplate() in subsonic-service which appears unused.
* Replaced Underscore with Lodash
* Fetch users' ID3 genres using Subsonic
* Update all npm packages, removes the "undef" rule to enable johnpapa's style
* Display the loading spinner gif for all angular ajax requests
2015-07-14 19:23:28 +02:00