Skip to content

Commit

Permalink
add new section to about arona, fix autoplay
Browse files Browse the repository at this point in the history
- added "Fetching Videos" section to About Arona page.
- fixed autoplay to working on some browsers.
  • Loading branch information
SethClydesdale committed Oct 2, 2024
1 parent 83ae0c1 commit 56f0af6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions arona/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ <h2>About Arona</h2>
<li><a href="#helping">Helping</a></li>
<li><a href="#teasing">Teasing</a></li>
<li><a href="#playing-music">Playing Music</a></li>
<li><a href="#fetching-videos">Fetching Videos</a></li>
<li><a href="#idling-and-sleeping">Idling and Sleeping</a></li>
<li><a href="#writing">Writing</a></li>
</ul>
Expand Down Expand Up @@ -181,6 +182,14 @@ <h3 id="teasing">Teasing</h3>
<h3 id="playing-music">Playing Music</h3>
<p>Arona can play her favorite music for you on the <a href="../">homepage</a> if you click the <img src="../resources/images/mute.png" alt="music" style="vertical-align:middle; height:20px;"> icon. Give it a try if you want something to listen to while you encode/decode!</p>

<h3 id="fetching-videos">Fetching Videos</h3>
<p>If you encode or decode a YouTube video link, Arona will automatically fetch and play it for you! You can give it a try below.</p>
<div class="columns-2 clear">
<div style="width:80%;margin-bottom:5px;"><code class="block">Arona.encode("youtu.be/VSKIGdbf5Fg");</code></div>
<div style="width:20%;margin-bottom:5px;"><button onclick="Arona.say(Arona.speech.special.youtube[0].replace('{ID}', 'VSKIGdbf5Fg'), Arona.speech.special.youtube[1], 36000, function () { Arona.idlingStop = false; }); Arona.idlingStop = true;"><i>Run</i></button></div>
</div>
<p>※ Autoplay may not work depending on the browser and its settings. Also, certain videos may not work on the offline version.</p>

<h3 id="idling-and-sleeping">Idling and Sleeping</h3>
<p>If you're inactive for 30 seconds, Arona will wonder where her dear Sensei went. After 3 minutes and a half she'll eventually fall asleep and wait for your return while sleep talking about various things. When you finally return, Arona will welcome you back!</p>
<p>You can also force her to fall alseep by encoding or decoding the phrase "Goodnight, Arona." or using the following function via the console.</p>
Expand Down
6 changes: 3 additions & 3 deletions resources/javascript/arona.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
how_are_you : ["I'm doing good!<br>I hope you are as well, {Sensei}!", 32],
goodnight : ["Goodnight, Sensei...", 34],
goodbye : ["Aww... You're leaving already, Sensei? I wanted to spend more time with you...", 24],
youtube : ['Here\'s your YouTube video, Sensei!<br><iframe id="video" src="https://www.youtube.com/embed/{ID}?autoplay=1" frameborder="0"></iframe>', 32],
youtube : ['Here\'s your YouTube video, Sensei!<br><iframe id="video" src="https://www.youtube.com/embed/{ID}?autoplay=1" frameborder="0" allow="autoplay"></iframe>', 32],

// memey
uoh : ["What are you uoh'ing at, Sensei?", 2],
Expand All @@ -295,8 +295,8 @@
kms : ["Please don't do that, {Sensei}! Arona would be lonely without you...", 28],
seggs : ["S-S-S-Se...!?", 17],
sixty_nine : ["Why does everybody say 69 is a nice number, Sensei?", 2],
rickroll : ['Never gonna let you down🎵<br><iframe id="video" src="https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1" frameborder="0"></iframe>', 32, Infinity],
mutsuki : ['Wouldn\'t you rather watch Arona dance? ...No? Fine...here\'s your dumb Mutsuki dance.<br><iframe id="video" src="https://www.youtube.com/embed/GfKkSmQrVJw?autoplay=1" frameborder="0"></iframe>', 10, Infinity],
rickroll : ['Never gonna let you down🎵<br><iframe id="video" src="https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1" frameborder="0" allow="autoplay"></iframe>', 32, Infinity],
mutsuki : ['Wouldn\'t you rather watch Arona dance? ...No? Fine...here\'s your dumb Mutsuki dance.<br><iframe id="video" src="https://www.youtube.com/embed/GfKkSmQrVJw?autoplay=1" frameborder="0" allow="autoplay"></iframe>', 10, Infinity],

// first public cunny code message
// https://x.com/SethC1995/status/1839472034721456176
Expand Down
Loading

0 comments on commit 56f0af6

Please sign in to comment.