Skip to content

Commit

Permalink
CEmu v2.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
adriweb committed Oct 8, 2024
1 parent fbb3f66 commit 5d96f7a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 30 deletions.
4 changes: 2 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ <h5 class="white-text">Support</h5>
<ul>
<li><a class="white-text" href="https://github.com/CE-Programming/CEmu/wiki">Read Wiki Documentation</a></li>
<li><a class="white-text" href="https://github.com/CE-Programming/CEmu/issues">Report a Bug / Request a Feature</a></li>
<li><a class="white-text" href="http://chat.efnet.org/irc.cgi?adv=1&nick=cemu-user&chan=%23cemu-dev">Chat with Developers on IRC (EFNet @ #cemu-dev)</a></li>
<li><a class="white-text" href="https://discord.gg/CyUmEx9zmQ">Chat with the developers on Discord</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
&copy; 2015-2020 CEmu. Made with <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>.
&copy; 2015-2024 CE-Programming contributors. Website made with <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>.
<span class="right right-align">
{% if build_time and commit_hash and repo_url %}<a class="cemu-color-text" target="_blank" href="{{ repo_url }}/commit/{{ commit_hash }}">{{ commit_hash[:7] }} @ {{ build_time }}</a>{% endif %}
</span>
Expand Down
24 changes: 1 addition & 23 deletions templates/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,15 @@
<div class="divider"></div>
<div class="row">
<h3>Download Stable Version</h3>
<p>This is your best bet if you want to get up and running quickly without any issues. If you want the cutting edge, click the above tab for a development build.</p>
<p>This is your best bet if you want to get up and running quickly without any issues. If you want the cutting edge, click the section below for a development build.</p>
<a href="https://github.com/CE-Programming/CEmu/releases/latest" id="download-button" class="btn-large waves-effect waves-light cemu-color-lighter"><i class="material-icons left">file_download</i>Download For All Platforms</a>
</div>
<div class="divider"></div>
<div class="row">
<h3>Download Development Builds</h3>
<p>Note that these are automated "bleeding-edge" versions - they are probably stable enough, but may break at any time! Recommended only if you want to try new features, and don't mind occasional bugs.</p>
<p>For now, this is the version that has TI-Basic "debugging", "USB transfers" (i.e. being able to transfers files such as OSes and apps), etc.</p>
<a href="https://github.com/CE-Programming/CEmu/releases/tag/nightly" id="download-button" class="btn-large waves-effect waves-light cemu-color-lighter"><i class="material-icons left">file_download</i>Download For All Platforms</a>
</div>
</div>
</div>
{% endblock content %}

{% block scripts %}
<script type="text/javascript">
$.ajaxPrefilter( function (options) {
if (options.crossDomain && jQuery.support.cors) {
var http = (window.location.protocol === 'http:' ? 'http:' : 'https:');
options.url = http + '//cors-anywhere.herokuapp.com/' + options.url;
//options.url = "http://cors.corsproxy.io/url=" + options.url;
}
});
$(document).ready(function(){
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
$('.modal').modal();
});
</script>
<script src="js/artifactory-hunter.js"></script>
<script src="js/cemu-dl.js"></script>
<script type="text/javascript">
CEmuDownloader.init();
</script>
{% endblock scripts %}
17 changes: 12 additions & 5 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@ <h5 class="center">Standard features</h5>
<li>Customizable speed/throttling</li>
<li>Resizable calculator screen</li>
<li>"Always-on-top" window option</li>
<li>Screen capture (PNG)</li>
<li>Screen capture, copy, and drag'n'drop (PNG)</li>
<li>Screen recording (animated PNG)</li>
<li>File sending/receiving (not for Apps/OS yet)</li>
<li>Multiple keybinding presets</li>
<li>File sending/receiving (including for Apps/OS yet)</li>
<li>Multiple keybinding presets (customizable)</li>
<li>Keypress history</li>
<li>Full-screen modes</li>
<li>Emulation states for efficient saving / restoring</li>
<li>Color skins (like the real devices)</li>
<li>Available in English, French, Spanish, and Dutch</li>
<li>Available in English, French, Spanish, Dutch, and Chinese</li>
</ul>
</p>
</div>
Expand All @@ -72,7 +74,9 @@ <h5 class="center">Developer features</h5>
<ul class="browser-default">
<li>Main options available via CLI arguments</li>
<li>IPC features when launching several CEmus</li>
<li>Custom display refresh rate</li>
<li>Choice of ASIC / HW revision emulation (A, pre-I, M+...)</li>
<li>Import/Export RAM/ROM/images...</li>
<li>Custom display refresh rate, FPS indicator</li>
<li>Custom emulation speed/throttling</li>
<li>Code stepping, jumping...</li>
<li>R/W/X breakpoints</li>
Expand All @@ -82,7 +86,10 @@ <h5 class="center">Developer features</h5>
<li>Memory viewer/editor</li>
<li>CPU state/registers viewer/editor</li>
<li>LCD state/parameters viewer/editor</li>
<li>Advanced LCD paramters emulation</li>
<li>User/System variables viewer</li>
<li>Memory visualizer (as customizable virtual LCDs)</li>
<li>TI-Basic debugging with code stepping</li>
<li>Variable list with preview and program launcher</li>
<li>Cycle counter for benchmarking/profiling</li>
<li>Emulation of DMA and SPI (for optimal accuracy)</li>
Expand Down

0 comments on commit 5d96f7a

Please sign in to comment.