diff options
author | Chris Xiong <chirs241097@gmail.com> | 2019-02-10 11:16:07 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2019-02-10 11:16:07 +0800 |
commit | 9d3c8c0e6e1a7ba43bf3dc19350d1dca68b657a3 (patch) | |
tree | 339de0698c13e1763d3361d70fb1266621025c91 /QMidiPlayer/doc/miscellaneous.html | |
download | web-9d3c8c0e6e1a7ba43bf3dc19350d1dca68b657a3.tar.xz |
Initial commit.
Diffstat (limited to 'QMidiPlayer/doc/miscellaneous.html')
-rw-r--r-- | QMidiPlayer/doc/miscellaneous.html | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/QMidiPlayer/doc/miscellaneous.html b/QMidiPlayer/doc/miscellaneous.html new file mode 100644 index 0000000..d8e90c3 --- /dev/null +++ b/QMidiPlayer/doc/miscellaneous.html @@ -0,0 +1,87 @@ +<!DOCTYPE html> +<html> +<head> +<title>QMidiPlayer Help</title> +<link rel=stylesheet href='styles.css' type='text/css'> +</head> +<body> + <div id="panel"> + <ul> + <li><a href="index.html">Overview</a></li> + <li><a href="mainwindow.html">Main Window</a></li> + <li><a href="channeldialog.html">Channels Dialog</a></li> + <li><a href="channeleditor.html">Channel Editor</a></li> + <li><a href="plistdialog.html">Playlist</a></li> + <li><a href="efxdialog.html">Effects</a></li> + <li><a href="optionsdialog.html">Settings</a></li> + <li><a href="visualization.html">Visualization</a></li> + <li><a href="cmdargs.html">Commandline arguments</a></li> + <li><a href="troubleshooting.html">Troubleshooting</a></li> + <li><a class="active" href="miscellaneous.html">Miscellaneous</a></li> + <li><a href="version.html">Version Info.</a></li> + <li><a href="license.html">License</a></li> + </ul> + </div> + <div id="content"> + <ul> + <li><a href="#build">Building QMidiPlayer from source</a></li> + <li><a href="#ms">Roadmap/Milestones</a></li> + <li><a href="#faq">FAQs</a></li> + <li><a href="#contact">Contact the author</a></li> + </ul> + <h3 id="build">Building QMidiPlayer from source</h3> + Building QMidiPlayer from source is as easy as any other qmake projects.<br> + 1. Get the dependencies.<br> + Currently QMidiPlayer depends on these libraries:<br> + <pre style="background-color:#eee;padding:0.2em;">qt5, libfluidsynth(FluidSynth), librtmidi(RtMidi)</pre> + If you want to build the lite version as well, you need several QML core modules.<br> + Get the libraries for your platform, open the project with Qt Creator, configure and hit Build! + (You may also use the qmake-make way).<br> + Please note that QMidiPlayer <i>requires</i> C++11 to build. + <h3 id="ms">Roadmap/Milestones</h3> + <ul> + <li>0.5.x Basic functionality</li> + <li>0.6.x Settings and experimental Windows support</li> + <li>0.7.2 MIDI mapping, first stable version</li> + <li>0.7.8 Plugin interface, UI refactoring</li> + <li>0.8.x Visualization (the default visualization plugin).</li> + <li>0.8.5+ File reader plugin API, event filter/modifier API. </li> + <li>0.9.x API Stablization. Revive lite version.</li> + <li>1.x+ Translation, documentation, Maintaince only.</li> + </ul> + <h3 id="faq">FAQs</h3> + <h4>0. (Windows version) It complains about a missing dll!</h4> + <p> + Please download and install <a href="https://www.microsoft.com/en-us/download/details.aspx?id=48145"> + Visual Studio 2015 Runtime Library</a>. + </p> + <h4>1. Can I help translate this program?</h4> + <p> + Of course! Please make a pull request or contact me. + </p> + <h4>2. I have found a bug in this program. Where to report the bug?</h4> + <p> + Please use the <a href="https://github.com/chirs241097/QMidiPlayer/issues"> + github issue tracker</a>. Don't forget to check if the bug has already been + fixed in a newer version! + </p> + <h4>3. On what platform(s) do you develop this project?</h4> + <p> + Major platforms used: + <ul> + <li>Debian GNU/Linux unstable(sid) amd64 on custom machine (i7-2960XM, 16GB RAM, GTX960, X9SCV-QV4)</li> + <li>Arch Linux amd64 on a Lenovo ThinkPad X1 yoga 1st Gen. (i7-6600U, 16GB RAM, HD520)</li> + </ul> + Platforms for building the Windows version: + <ul> + <li>Windows 10 Insider Pro on the ThinkPad X1 yoga mentioned above.</li> + </ul> + </p> + <h3 id="contact">Contact the author</h3> + <p> + E-mail: chirs241097 'at' gmail 'dot' com<br> + Twitter: @chirs241097 + </p> + </div> +</body> +</html> |