A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Housekeeping

+14 -11
+2 -2
src/Applications/UI/DnD.elm
··· 107 107 , preventDefault = True 108 108 } 109 109 (\event -> 110 - case event.pointer.button of 111 - Mouse.MainButton -> 110 + case ( event.pointer.button, event.isPrimary ) of 111 + ( Mouse.MainButton, True ) -> 112 112 toMsg (Start context) 113 113 114 114 _ ->
+4 -2
src/Applications/UI/List.elm
··· 153 153 [ title action.title ] 154 154 ) 155 155 [ C.lh_0 156 - , T.ml2 156 + , T.ml1 157 + , T.pl1 157 158 , ifThenElse (Maybe.isJust action.msg) T.pointer "" 158 159 ] 159 160 [ fromUnstyled (action.icon 16 action.color) ] ··· 168 169 [ C.disable_selection 169 170 , C.lh_0 170 171 , C.grab_cursor 171 - , T.ml2 172 + , T.ml1 173 + , T.pl1 172 174 , T.pv2 173 175 ] 174 176 [ fromUnstyled (Icons.drag_indicator 16 coloring) ]
+1 -2
src/Javascript/index.js
··· 376 376 377 377 window.addEventListener("resize", () => { 378 378 setTimeout(setVerticalHeightUnit, 0) 379 - setTimeout(setVerticalHeightUnit, 32) 380 379 }) 381 380 382 381 383 382 function setVerticalHeightUnit() { 384 - const vh = window.innerHeight * 0.01 383 + const vh = document.documentElement.clientHeight * 0.01 385 384 document.documentElement.style.setProperty("--vh", `${vh}px`) 386 385 }
+5
src/Static/Css/Application.css
··· 1 + html { 2 + height: calc(var(--vh, 1vh) * 100); 3 + overscroll-behavior: none; 4 + } 5 + 1 6 body { 2 7 background-color: rgb(2, 7, 14); 3 8 background-image: url(images/ep_naturalblack_pattern.jpg);
+2 -5
src/Static/Html/Application.html
··· 1 1 <!DOCTYPE html> 2 - <html 3 - class="fixed left-0 overflow-hidden top-0 vh-100 w-100" 4 - style="height: calc(var(--vh, 1vh) * 100); overscroll-behavior: none;" 5 - > 2 + <html class="fixed left-0 overflow-hidden top-0 vh-100 w-100"> 6 3 <head> 7 4 8 5 <meta charset="utf-8" /> ··· 12 9 <title>Diffuse</title> 13 10 14 11 <!-- Viewport --> 15 - <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9, user-scalable=no" /> 12 + <meta name="viewport" content="width=device-width, initial-scale=0.95, maximum-scale=0.95, user-scalable=no" /> 16 13 17 14 <!-- Favicons & Mobile --> 18 15 <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />