123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /*
- * Personal website of UltrasonicMadness
- * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <?php
- gen_html_head('MadHelix', 'green');
- ?>
- </head>
-
- <body>
- <?php gen_common_pane(); ?>
-
- <div id="page-pane">
- <main>
- <h1>MadHelix</h1>
- <p>MadHelix is a Java Swing-based graphical frontend for <a target="_blank" href="https://sourceforge.net/projects/soundhelix/">SoundHelix</a>, a program which generates music based on entered (or generated) text and plays it back. It is in an early state of development so please let me know of any issues you have with it.</p>
-
- <h3>Credits</h3>
- <ul>
- <li>SoundHelix is developed by Thomas Schürger.</li>
- <li>MadHelix is developed by UltrasonicMadness.</li>
- <li>The icons are made by the <a target="_blank" href="http://www.gnome.org/">GNOME Project</a> as part of version 44 of the <a target="_blank" href="https://gitlab.gnome.org/GNOME/adwaita-icon-theme">Adwaita Icon Theme</a>.</li>
- </ul>
-
- <h3>License</h3>
- <p>MadHelix is available under the <a target="_blank" href="https://www.gnu.org/licenses/gpl.html">GNU General Public License, version 3 only</a>.</p>
-
- <h3>Source Code</h3>
- <p>Source code is available on <a target="_blank" href="https://notabug.org/UltrasonicMadness/madhelix">NotABug</a>.</p>
-
- <h3>Download</h3>
- <p>Compiled versions are available from <a target="_blank" href="https://notabug.org/UltrasonicMadness/madhelix/releases">NotABug</a>.</p>
-
- <h3>Screenshot</h3>
- <figure>
- <img alt="MadHelix screenshot" src="/common/images/hellohelix.png" />
- <figcaption>Playing a song</figcaption>
- </figure>
- </main>
-
- <?php inc_footer(); ?>
- </div>
- </body>
- </html>
|