--- layout: page use-site-title: true css: - "/css/index.css" js: - "/js/index.js" meta-title: "Downloads | Cemu Graphic Packs" meta-description: "Largest graphic pack source for Cemu that modify or scale games." --- {% comment %} The javascript is designed to be infinitely scaleable. Just copy-pasting the announcement works. {% endcomment %} <div id="cemu-version-announcement" class="jumbotron notification" hidden> <h2>Cemu 1.14.0 graphic packs are here!</h2> <p>With the texture cache rework, the graphic packs required a rework for all of our "resolution packs".</p> <p>Just bare with us while we rework the missing 1.14.0 graphic packs. Reporting on issues is very helpful!</p> <p class="lead"> <a class="btn btn-primary btn-lg" href="javascript:void(0);" onclick="confirmNotification('cemu-version-announcement');" role="button">Okay!</a> </p> </div> {% comment %} Get the latest release zip {% endcomment %} {% capture newReleaseVersion %} {{ site.github.latest_release.assets[0].browser_download_url | slice: 71, 3}} {% endcapture %} {% assign newReleaseVersion = newReleaseVersion | plus:1 %} <div id="download-gfx-panel" class="jumbotron"> <h2>Downloads</h2> <p>Choose the right download for the Cemu version that you'll use.</p> <p class="lead"> <a class="btn btn-primary btn-lg" target="_self" href="https://github.com/slashiee/cemu_graphic_packs/releases/download/Travis{{ newReleaseVersion }}/graphicPacks{{ newReleaseVersion }}.zip" role="button">Cemu 1.14.0 (version 3)</a> <a class="btn btn-default btn-lg" href="https://github.com/slashiee/cemu_graphic_packs/releases/download/Travis100/graphicPacks100_Uncommon.zip" role="button">Cemu 1.13.2 and older</a> </p> </div> {% comment %} Possible todo's: - https://gitreports.com/ (anonymous github issues so that users can report issues). - Add/extract additional information from the graphic pack (like showing additional packs besides resolution packs). {% endcomment %} <div id="game-list" class="panel panel-info panel-default version3-only"> <div class="panel-heading">List of graphic pack supported titles</div> <ul class="list-group"> {% for gameTitle in site.data.GameTitles %} <li class="list-group-item d-flex justify-content-between align-items-center" {% if gameTitle.version3 == false %}hidden{% endif %}> <a href="{{gameTitle.compatLink}}">{{ gameTitle.title }}</a> <span class="badge badge-primary">{{ gameTitle.nativeRes }}p</span> {% if gameTitle.version3 == true %} <span class="label label-success version-label">Cemu 1.14.0</span> {% endif %} </li> {% endfor %} <div class="panel-footer"> <a id="see-more-footer" href="javascript:document.getElementById('game-list').classList.remove('version3-only');">Also see < Cemu 1.13.2 graphic packs...</a> <a id="see-less-footer" href="javascript:document.getElementById('game-list').classList.add('version3-only');">Only show Cemu 1.14.0 graphic packs...</a> </div> </ul> </div>