mastoradio-fork/src/components/About.svelte

33 lines
2.1 KiB
Svelte
Raw Normal View History

2020-02-29 00:02:49 +01:00
<button class="header__sideBtn" on:click={() => openPage()}>About</button>
<Portal target="{document.body}">
<ContextPage name="About" open={open} on:close={closePage}>
2020-03-09 12:00:48 +01:00
<p class="txtbig">This radio is powered by the publications made on the social media platform <a href="https://joinmastodon.org/" target="_blank">Mastodon</a>. The goal behind it is to make a place to discover music outside your usual bubble. Hope you enjoy it!</p>
2020-02-29 00:02:49 +01:00
<hr>
<h2>Where does the music come from?</h2>
2020-03-09 12:00:48 +01:00
<p>The app gets all the public publications that contain a media link and a music hashtag (you can configure it in the Settings). We support only Youtube links for now, but more platforms are planned in the future.<br>
2020-02-29 00:02:49 +01:00
We dont own the musics rights so the songs are played on the original platform player.</p>
<h2>How can I get my song be played on the radio?</h2>
2020-03-07 19:14:46 +01:00
<p>You have to make a public toot containing one of the hashtags configured on the app and a Youtube link.</p>
2020-02-29 00:02:49 +01:00
<h2>Can I use the radio on my phone?</h2>
2020-03-09 12:00:48 +01:00
<p>Its a webapp so it should be working, however since the Youtube Player allows us to play a song only when youre on the web and stops when the screen turns off or when youre on another app, its kind of unusable.<br>
Its kind of shitty but as long Youtube has this behavior we dont see a way to make a great experience for the radio on mobile devices.</p>
<h2>How can I contact you? Ive detected a problem, have an idea, or a kind message.</h2>
If youre a developer you can create an issue on the <a href="https://github.com/EldritchCafe/radio" target="_blank">Github repo</a>. For anything else you can contact the maintainers <a href="https://eldritch.cafe/@milia" target="_blank">Milia</a> & <a href="https://glitch.social/@tixie" target="_blank">Tixie</a> on their Mastodon accounts.
2020-02-29 00:02:49 +01:00
</ContextPage>
</Portal>
<script>
import Portal from 'svelte-portal'
2021-11-07 00:11:15 +01:00
import ContextPage from '/src/components/ContextPage'
2020-02-29 00:02:49 +01:00
let open = false
let openPage = () => {
open = true
}
let closePage = () => {
open = false
}
2020-03-09 12:00:48 +01:00
</script>