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.

Add nextcloud appinfo file

+18 -1
+16
src/Static/Manifests/Nextcloud/appinfo.xml
··· 1 + <?xml version="1.0"?> 2 + <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" 3 + xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> 4 + <id>diffuse</id> 5 + <name>Diffuse</name> 6 + <summary>A music player that connects to your cloud/distributed storage</summary> 7 + <description>A music player that connects to your cloud/distributed storage</description> 8 + <version>2.5.0</version> 9 + <licence>agpl</licence> 10 + <author>Steven Vandevelde</author> 11 + <category>multimedia</category> 12 + <bugs>https://github.com/icidasset/diffuse/issues</bugs> 13 + <dependencies> 14 + <nextcloud max-version="99" min-version="10"/> 15 + </dependencies> 16 + </info>
+2 -1
system/Build/Main.hs
··· 67 67 , ( Hosting, list "Static/Hosting/**/*" ) 68 68 , ( Html, list "Static/Html/**/*.html" ) 69 69 , ( Images, list "Static/Images/**/*.*" ) 70 - , ( Manifests, list "Static/Manifests/*.*" ) 70 + , ( Manifests, list "Static/Manifests/**/*.*" ) 71 71 72 72 -- About Pages 73 73 , ( AboutPages, list "Static/About/**/*.md" ) ··· 94 94 flow _ (Manifests, dict) = 95 95 dict 96 96 |> clone "manifest.json" "site.webmanifest" 97 + |> rename "Nextcloud/appinfo.xml" "appinfo/info.xml" 97 98 98 99 99 100 {-| About Pages -}