···304304 case tracks of
305305 [ t ] ->
306306 ("__" ++ t.tags.title ++ "__ will be played next")
307307- |> Notifications.success
307307+ |> Notifications.casual
308308309309 list ->
310310 list
311311 |> List.length
312312 |> String.fromInt
313313 |> (\s -> "__" ++ s ++ " tracks__ will be played next")
314314- |> Notifications.success
314314+ |> Notifications.casual
315315 in
316316 { model | playingNext = items ++ cleanedFuture }
317317 |> (if showNotification then
···362362 case tracks of
363363 [ t ] ->
364364 ("__" ++ t.tags.title ++ "__ was added to the queue")
365365- |> Notifications.success
365365+ |> Notifications.casual
366366367367 list ->
368368 list
369369 |> List.length
370370 |> String.fromInt
371371 |> (\s -> "__" ++ s ++ " tracks__ were added to the queue")
372372- |> Notifications.success
372372+ |> Notifications.casual
373373 in
374374 { model | playingNext = newFuture }
375375 |> (if showNotification then
···218218 |> andThen User.saveEnclosedUserData
219219 |> andThen
220220 ("Tracks cache was cleared"
221221- |> Notifications.warning
221221+ |> Notifications.casual
222222 |> Common.showNotification
223223 )
224224···239239download zipName tracks model =
240240 let
241241 notification =
242242- Notifications.stickyWarning "Downloading tracks ..."
242242+ Notifications.stickyCasual "Downloading tracks ..."
243243244244 downloading =
245245 Just { notificationId = Notifications.id notification }
···675675 case tracks of
676676 [ t ] ->
677677 ("__" ++ t.tags.title ++ "__ will be stored in the cache")
678678- |> Notifications.success
678678+ |> Notifications.casual
679679680680 list ->
681681 list
682682 |> List.length
683683 |> String.fromInt
684684 |> (\s -> "__" ++ s ++ " tracks__ will be stored in the cache")
685685- |> Notifications.success
685685+ |> Notifications.casual
686686 in
687687 tracks
688688 |> Json.Encode.list
+1-1
src/Applications/UI/User/State/Import.elm
···7777 I'll try to import data from Diffuse version one.
7878 If this was successful, you'll get a notification.
7979 """
8080- |> Notifications.warning
8080+ |> Notifications.casual
8181 |> Common.showNotification
8282 )
8383