···471471 <button id="export-image" class="button is-primary">Export</button>
472472 </div>
473473 <div class="navbar-item">
474474+ <button id="view-changelog" class="button is-primary">Changelog</button>
475475+ </div>
476476+ <div class="navbar-item">
474477 <label class="checkbox">
475478 <input id="dark-theme" type="checkbox">
476479 Dark theme
···502505 <button class="modal-close is-large" aria-label="close"></button>
503506 </div>
504507508508+ <div id="changelog-modal-container" class="modal">
509509+ <div class="modal-background"></div>
510510+ <div class="modal-content">
511511+ <div class="box content">
512512+ <h1>Changelog</h2>
513513+514514+ <h2>Version 9 - June 15th 2021</h2>
515515+ <ul>
516516+ <li>Add Macrophilia, Microphilia, Detachable body parts, Oviposition, Rope bondage, Suspension bondage, Cages, Gaping, Fear play and Water bondage (both types) to the list</li>
517517+ <li>Added a distinction between Futanari/Transfeminine and Futanari/Hermaphrodite</li>
518518+ <li>Removed Hate sex from the list</li>
519519+ <li>Added support for descriptions, and added descriptions to most of the kinks (and some categories)</li>
520520+ <li>Add light/dark theme detection and toggle</li>
521521+ <li>Add Self/Partner to Bodies category</li>
522522+ <li>Rename Interactions to Interactions & Groupings</li>
523523+ <li>Moved fantasy roleplay scenarios to a new Fantasy / Interactions category</li>
524524+ <li>Add website logo and Twitter/Discord embed code</li>
525525+ <li>Add this changelog</li>
526526+ </ul>
527527+528528+ <h2>Version 8 - April 27th 2021</h2>
529529+ <ul>
530530+ <li>Align legend to the left on mobile devices. Thanks to anonymous contributor for this fix.</li>
531531+ </ul>
532532+533533+ <h2>Version 7 - November 9th 2020</h2>
534534+ <ul>
535535+ <li>Add Scat to the list</li>
536536+ </ul>
537537+538538+ <h2>Version 6 - October 9th 2020</h2>
539539+ <ul>
540540+ <li>Rewrite the entire list, using Bulma, in order to completely eliminate scrolling issues</li>
541541+ </ul>
542542+543543+ <h2>Version 5 - September 21st 2020</h2>
544544+ <ul>
545545+ <li>Add Clown, Hate sex and Choking to list</li>
546546+ <li>Remove "Handholding" meme entry from list</li>
547547+ </ul>
548548+549549+ <h2>Version 4 - August 17th 2020</h2>
550550+ <ul>
551551+ <li>Add Zettai ryoiki, Gas masks, Hypnoplay, Droneplay and Kitsunemimi to list</li>
552552+ </ul>
553553+554554+ <h2>Version 3 - August 9th 2020</h2>
555555+ <ul>
556556+ <li>Add Beard, Hairy body, Shaven body, Bimbofication, Excessive cum and Gas to list</li>
557557+ </ul>
558558+559559+ <h2>Version 2 - July 11th 2020</h2>
560560+ <ul>
561561+ <li>Many internal changes</li>
562562+ <li>Fix issues with hotkeys</li>
563563+ <li>Add "Autosave" checkbox, as an attempt to stop scrolling issues in Android Chrome webview</li>
564564+ </ul>
565565+566566+ <h2>Version 1 - July 10th 2020</h2>
567567+ <ul>
568568+ <li>Initial GitLab release</li>
569569+ </ul>
570570+ </div>
571571+ </div>
572572+ <button class="modal-close is-large" aria-label="close"></button>
573573+ </div>
574574+505575 <script type="module">
506576 import * as DOMTools from 'https://rawcdn.githack.com/uwx/dom-tools/0ffaa4212dee3fbd1e15a211aa3f470bed65f29b/out/browser/dom-tools.js';
507577···515585 <script src="https://unpkg.com/masonry-layout@4.2.2/dist/masonry.pkgd.min.js"></script>
516586517587 <!-- defer is used here so that DOMTools is loaded in time as it's async -->
518518- <script src="themeswitcher.js" async></script>
588588+ <script src="pageinfo.js" async></script>
519589 <script src="kinklist.js" defer></script>
520590 <script src="exporter.js" defer></script>
591591+ <script>
592592+ // Handle closing modals universally
593593+ for (const e of document.querySelectorAll('.modal-close')) {
594594+ e.addEventListener('click', () => {
595595+ e.parentElement.classList.remove('is-active');
596596+ });
597597+ }
598598+ </script>
521599</body>
522600523601</html>