Commit Graph

72 Commits

Author SHA1 Message Date
SuperBFG7 a3ae8cd802 fix filtering with pagination 2018-06-03 11:57:13 +02:00
SuperBFG7 db72139490 make A-Z filters work also on songs and playlists 2018-05-11 21:10:22 +02:00
SuperBFG7 b0ec3be02f filtering on all levels and fix playlist filter 2018-05-11 17:18:17 +02:00
Andy 17b97c8f6b
Merge pull request #159 from eb041592/unclutter_interface
Unclutter Interface
2018-03-29 20:36:25 +02:00
eb041592 b3037d6117 Hide Dirble app, if no API token is given/available 2018-02-04 13:43:37 +01:00
eb041592 037e7db1da Minor formatting 2018-02-04 01:11:41 +01:00
eb041592 2e9d477ee6 Hide output button(s) if there is only one configured output 2018-02-04 00:30:45 +01:00
eb041592 73a844eb71 Fixed error with "... added" notifications 2018-02-03 16:34:22 +01:00
eb041592 fe0277bfbe Rearranged artist and album information in queue and search results. 2018-02-03 12:03:33 +01:00
eb041592 cf572b705e Added artist and album to both queue and search results; minor spelling 2018-02-02 02:14:31 +01:00
Andrew Karpow ceee8bd90a Merge branch 'master' of https://github.com/lesderid/ympd into lesderid-master 2018-01-22 04:58:17 +01:00
Andrew Karpow ba4322c684 Merge branch 'send-message' of https://github.com/SuperBFG7/ympd into SuperBFG7-send-message 2018-01-22 04:50:22 +01:00
Andrew Karpow 265577c5ab Merge branch 'BenjaminHae-sortable' 2018-01-22 04:40:52 +01:00
Andy 393d6063da
Merge pull request #149 from SuperBFG7/delete
add ability to delete ranges of the playlist
2018-01-22 04:34:54 +01:00
Andy a99b0a5ddc
Merge pull request #134 from Kernald/fix-double-slashes
Fix double slashes in websocket URL
2018-01-22 04:33:54 +01:00
SuperBFG7 eb803d1da5 add ability to delete ranges of the playlist 2017-04-08 11:25:40 +02:00
SuperBFG7 152defeaaa add a button to love tracks on last.fm using mpdas 2017-03-18 13:32:17 +01:00
Les De Ridder d9ec70a9da
Make the Dirble API token configurable and use HTTPS
Fixes #140
2016-09-11 18:23:42 +02:00
Marc Plano-Lesay 15edcc645c Fix double slashes in websocket URL 2016-07-07 15:22:15 +02:00
Govert Buijs 306840fa1d Added crude filtering for browsing db 2016-06-08 23:20:27 +02:00
Andy 126f247a08 Merge pull request #102 from SuperBFG7/browse
remember last folder in browser
2016-02-13 21:49:18 +01:00
SuperBFG7 2e74427778 do not use mouseenter/leave on touch devices 2015-10-22 17:48:42 +02:00
SuperBFG7 f06885fab7 remember last folder in browser 2015-10-22 11:44:50 +02:00
Benjamin Häublein 5234e97d5e check if element is sortable before removing sortable property 2015-09-26 14:32:14 +02:00
Benjamin Häublein 9d11aaf829 sortable queue
using jquery-ui-sortable standalone https://github.com/ryantbrown/jquery-ui-sortable
2015-09-26 13:51:56 +02:00
Andrew Karpow 9f06699d3e Merge branch 'master' of https://github.com/Nofre/ympd into Nofre-master 2015-09-20 16:00:45 +02:00
Andy 30b0b812f6 Merge pull request #69 from kurt-vd/master
add support for output enable/disable
2015-09-20 15:56:10 +02:00
Andy b211543890 Merge pull request #82 from iwanders/improvement_stream_ui
Improve the add stream dialog user experience.
2015-09-20 15:55:19 +02:00
Andy 6dcb2ad758 Merge pull request #87 from BenjaminHae/master
Added the ability to save queue as playlist
2015-09-20 15:54:20 +02:00
Andy 84f3a78a42 Merge pull request #89 from dewyatt/master
Add arrow left/right and spacebar controls
2015-09-20 15:53:23 +02:00
Daniel Wyatt 86d2d2ecb4 Add arrow left/right and spacebar controls 2015-09-13 04:38:18 -04:00
Benjamin Häublein 4f138c0986 Save Queue 2015-09-02 19:47:58 +02:00
Nofre 30bb8161b5 code cleared 2015-09-02 19:38:42 +02:00
Nofre 94869bba92 Added a tab to search radio stations from Dirble. Also fixes #85 2015-08-27 16:15:23 +02:00
Virgil Dupras 4e2f300643 Add "Add all" button in the Browse section
It adds all items in the directory. It's equivalent to clicking on "+"
on that same directory we decided to browse.
2015-08-17 17:01:47 -04:00
Ivor Wanders d3148056fc Improves the add stream dialog user experience.
When the dialog is opened, the text area is focused. When enter is
pressed (and the form is submit) the window now behaves as expected and
adds the stream to the playlist and closes. The text area is now also
cleared once the form is submit, previously the old stream was still
visible when the dialog was opened a second time.
2015-07-16 11:50:54 +02:00
Virgil Dupras 698f573a65 Fix broken add track action
Fix the bug I've introduced in my PR #78, breaking the add
track/playlist action. We have to decode URIs before sending them back
to our socket!

fixes #80
2015-07-13 14:31:56 -04:00
Virgil Dupras fe44fca184 Fix browsing for non-ascii entity URI under Safari
Previously, browsing entities with non-ascii characters in their URI
under Safari wouldn't work. Directories would be empty, songs wouldn't
be added. I haven't tried it, but this behavior seems to be common to
Webkit-based browsers, so Chrome would be affected too.

This turned out to be because Safari normalizes all unicode strings to
NFC, breaking the link with MPD-spewed URIs, which are in NFD.

An obvious fix would have been to normalize all URIs to NFD, but
unfortunately, Safari doesn't have `str.normalize()`. Adding
normalization capabilities to our JS side would have involved
introductiing libraries such as `unorm`, which is rather big.

We could have done it on the C side, but it involves introducing `icu`,
which is far from trivial too.

After much fussing around, I stumbled on a simple solution: URI-encode
our URI when creating our browser table row. This magically prevents
Safari from trying to mess with our unicode form before we get the
chance to send it back to our server.
2015-06-20 22:39:42 -04:00
Kurt Van Dijck d344ec05a9 add support for output enable/disable 2015-04-28 11:08:21 +02:00
warhog 1c4e89def8 added ability to add streams 2015-03-06 12:40:14 +01:00
Andy ca40c44dd5 Merge pull request #52 from ajs124/master
Add crossfade support. Not sure about the icon/glyph though
2015-03-03 21:50:49 +01:00
ajs124 3eb12e6ecd Add crossfade support. Not sure about the icon/glyph though 2015-02-17 15:45:26 +01:00
Ivor Wanders a5a4ac9461 Changes URL used for the websocket.
This change allows easier implementation of different backends because the websocket URL isn't identical to the webpage URL. This does not affect the functionality of the default C backend.
2014-11-03 20:01:05 +01:00
ajs124 9f001aa264 change notification cookie from session to "permanent" 2014-05-24 03:12:51 +02:00
ajs124 0730673851 remove webkit prefix from Notifications, now working with firefox!
+ probably fix bug with undefined artist or album
2014-05-24 02:57:30 +02:00
Andrew Karpow 6bf4379eb8 fixed password remove 2014-03-08 20:33:22 +01:00
Andrew Karpow 35ab38d0e2 fixed osx scanf behaviour, notifications 2014-03-08 12:31:22 +01:00
Andrew Karpow b9a4d83130 better json generator, various fixups 2014-03-08 12:30:49 +01:00
Andrew Karpow 38b4544542 replaces libwebsockets with mongoose, changed licese to gpl
add search support
add playlist support
various fixups
C Cleanup
2014-03-08 12:30:49 +01:00
Andrew Karpow 79e38e7edd initial mongoose checkin 2014-03-08 12:30:48 +01:00