1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-06 18:33:38 +02:00

Provide local version of airsonic logo created by @jooola

This commit is contained in:
Arne Schlüter 2018-08-22 19:14:51 +02:00
commit d26decb2ff
4 changed files with 3 additions and 3 deletions

View file

@ -7,13 +7,13 @@
"build:cljs": "shadow-cljs release app", "build:cljs": "shadow-cljs release app",
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css", "build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
"build": "rm -r public/*; run-p copy:* build:*", "build": "rm -r public/*; run-p copy:* build:*",
"copy:html": "cp src/html/index.html public/index.html", "copy:assets": "cp -R src/assets/* public/",
"copy:icons": "cp -R node_modules/open-iconic/font/fonts public", "copy:icons": "cp -R node_modules/open-iconic/font/fonts public",
"deploy": "npm run build && gh-pages -d public -m \"Deploying $(git rev-parse --short HEAD)\"", "deploy": "npm run build && gh-pages -d public -m \"Deploying $(git rev-parse --short HEAD)\"",
"dev:cljs": "shadow-cljs watch app test", "dev:cljs": "shadow-cljs watch app test",
"dev:sass": "npm run build:sass; node-sass -w src/sass/app.sass public/app/style.css", "dev:sass": "npm run build:sass; node-sass -w src/sass/app.sass public/app/style.css",
"dev:test": "karma start --reporters growl,progress --auto-watch", "dev:test": "karma start --reporters growl,progress --auto-watch",
"dev": "npm-run-all copy:* -p dev:*", "dev": "rm -r public/*; npm-run-all copy:* -p dev:*",
"test": "run-s test:compile test:run", "test": "run-s test:compile test:run",
"test:compile": "shadow-cljs compile test", "test:compile": "shadow-cljs compile test",
"test:run": "karma start --single-run" "test:run": "karma start --single-run"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -53,7 +53,7 @@
^{:key :shuffle-button} [shuffle-button {:on-click (toggle-shuffle playback-mode)} [icon :random]] ^{:key :shuffle-button} [shuffle-button {:on-click (toggle-shuffle playback-mode)} [icon :random]]
^{:key :repeat-button} [repeat-button {:on-click (advance-repeat-mode repeat-mode)} [icon :loop]]])) ^{:key :repeat-button} [repeat-button {:on-click (advance-repeat-mode repeat-mode)} [icon :loop]]]))
(def logo-url "https://airsonic.github.io/airsonic-ui/assets/images/logo/airsonic-light-350x100.png") (def logo-url "./img/airsonic-light-350x100.png")
(defn audio-player [] (defn audio-player []
(let [current-song @(subscribe [:audio/current-song]) (let [current-song @(subscribe [:audio/current-song])