├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── NEWS ├── README.md ├── TODO ├── extra └── web │ ├── package.lisp │ ├── static │ ├── dark-hive │ │ ├── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui.custom.css │ ├── jquery-ui.js │ ├── jquery.js │ ├── play.png │ ├── style.css │ └── ui.js │ └── www.lisp ├── id3-utf16.diff ├── img-search.png ├── load-ccl.lisp ├── shuffletron ├── shuffletron.asd └── src ├── alarms.lisp ├── audio.lisp ├── global.lisp ├── help.lisp ├── library.lisp ├── main.lisp ├── packages.lisp ├── profiles.lisp ├── query.lisp ├── status-bar.lisp ├── tags.lisp ├── ui.lisp └── util.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.fasl 3 | shuffletron-bin 4 | libs 5 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/TODO -------------------------------------------------------------------------------- /extra/web/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/package.lisp -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-bg_loop_25_000000_21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-bg_loop_25_000000_21x21.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /extra/web/static/dark-hive/jquery-ui.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/dark-hive/jquery-ui.custom.css -------------------------------------------------------------------------------- /extra/web/static/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/jquery-ui.js -------------------------------------------------------------------------------- /extra/web/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/jquery.js -------------------------------------------------------------------------------- /extra/web/static/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/play.png -------------------------------------------------------------------------------- /extra/web/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/style.css -------------------------------------------------------------------------------- /extra/web/static/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/static/ui.js -------------------------------------------------------------------------------- /extra/web/www.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/extra/web/www.lisp -------------------------------------------------------------------------------- /id3-utf16.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/id3-utf16.diff -------------------------------------------------------------------------------- /img-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/img-search.png -------------------------------------------------------------------------------- /load-ccl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/load-ccl.lisp -------------------------------------------------------------------------------- /shuffletron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/shuffletron -------------------------------------------------------------------------------- /shuffletron.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/shuffletron.asd -------------------------------------------------------------------------------- /src/alarms.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/alarms.lisp -------------------------------------------------------------------------------- /src/audio.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/audio.lisp -------------------------------------------------------------------------------- /src/global.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/global.lisp -------------------------------------------------------------------------------- /src/help.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/help.lisp -------------------------------------------------------------------------------- /src/library.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/library.lisp -------------------------------------------------------------------------------- /src/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/main.lisp -------------------------------------------------------------------------------- /src/packages.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/packages.lisp -------------------------------------------------------------------------------- /src/profiles.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/profiles.lisp -------------------------------------------------------------------------------- /src/query.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/query.lisp -------------------------------------------------------------------------------- /src/status-bar.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/status-bar.lisp -------------------------------------------------------------------------------- /src/tags.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/tags.lisp -------------------------------------------------------------------------------- /src/ui.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/ui.lisp -------------------------------------------------------------------------------- /src/util.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahefner/shuffletron/HEAD/src/util.lisp --------------------------------------------------------------------------------