├── .dockerignore ├── .gitignore ├── CHANGELOG.md ├── CloudronManifest.json ├── DESCRIPTION.md ├── Dockerfile ├── LICENSE.md ├── POSTINSTALL.md ├── README.md ├── develop.sh ├── logo.png ├── logo.svg ├── renovate.json5 ├── screenshots ├── img01.png ├── img02.png └── img03.png ├── start.sh └── test ├── index.html ├── package-lock.json ├── package.json ├── test.js ├── test.txt └── testfiles ├── 04 - Wormlust - Sex Augu, Tólf Stjörnur.flac ├── 07 - Nyiþ - Visni Þitt Hold Svo Betur Megi Hæfa Þeim Hug Sem Það Hýsir.flac ├── 09 - Misþyrming - Ég Byggði Dyr í Eyðimökinni.flac └── ? ! + #folder ├── 10 - Polonaise in Ab major Op 53 Héroique.flac ├── 13 ワンダーランド.flac ├── Fancy - +!"#$&'()*+,:;=?@ - Filename └── évènementfacebook-1.pdf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test/node_modules/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CloudronManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/CloudronManifest.json -------------------------------------------------------------------------------- /DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/DESCRIPTION.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /POSTINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/POSTINSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/README.md -------------------------------------------------------------------------------- /develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/develop.sh -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/logo.svg -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/renovate.json5 -------------------------------------------------------------------------------- /screenshots/img01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/screenshots/img01.png -------------------------------------------------------------------------------- /screenshots/img02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/screenshots/img02.png -------------------------------------------------------------------------------- /screenshots/img03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/screenshots/img03.png -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/start.sh -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/test/index.html -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/test/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- 1 | Foobar -------------------------------------------------------------------------------- /test/testfiles/04 - Wormlust - Sex Augu, Tólf Stjörnur.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/07 - Nyiþ - Visni Þitt Hold Svo Betur Megi Hæfa Þeim Hug Sem Það Hýsir.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/09 - Misþyrming - Ég Byggði Dyr í Eyðimökinni.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/? ! + #folder/10 - Polonaise in Ab major Op 53 Héroique.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/? ! + #folder/13 ワンダーランド.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/? ! + #folder/Fancy - +!"#$&'()*+,:;=?@ - Filename: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testfiles/? ! + #folder/évènementfacebook-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudron-io/surfer/HEAD/test/testfiles/? ! + #folder/évènementfacebook-1.pdf --------------------------------------------------------------------------------