Skip to content

Commit

Permalink
update: 3.3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elpwc committed Jun 21, 2024
1 parent c82f53e commit f1da9b3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<script type="text/javascript">
// refresh cashed js/css.
const VERSION = '3.3.1.0'; // current version, !!! update this in EVERY PUBLISH when js/css contents has been changed !!!
const VERSION = '3.3.1.1'; // current version, !!! update this in EVERY PUBLISH when js/css contents has been changed !!!
const in_dev = false; // is in dev
const DEV_CODE = ~~(10000000 * Math.random()); // devCode which updates when page reloads while in_dev is true
const params = '?ver=' + VERSION + (in_dev && '&dev=' + DEV_CODE); // Parameters after css/js filename
Expand Down
9 changes: 9 additions & 0 deletions src/components/UpdateContentModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@

<div class="update">
<p class="updateTitle"><date>{config.default.lastUpdated}</date> 的更新<br />(ver {config.default.currentVer})</p>
<div class="updateSection">
<p>加入了幽影树碎片和灵灰这两个DLC道具</p>
</div>
</div>

<hr />

<div class="update">
<p class="updateTitle"><date>2024-6-21 5:57 UT+8</date> 的更新<br />(ver 3.3.1.0)</p>
<div class="updateSection" style={isMobile ? '' : 'display: flex; gap: 10px; '}>
{#if isMobile}
<img style="max-width: 100%;height: fit-content; " src="./resource/images/dlc1.png" alt="dlc1 Shadow of the Erdtree" />
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/
const Config = {
APIBaseURL: './api/',
currentVer: '3.3.1.0', // 本来想着稳定到3.1415926的,果然还是跳过了阿...
lastUpdated: '2024-6-21 5:57 UT+8',
currentVer: '3.3.1.1', // 本来想着稳定到3.1415926的,果然还是跳过了阿...
lastUpdated: '2024-6-21 17:53 UT+8',
/** 是否锁定所有地标 */
isLockAllMarkers: false,
/** 是否在开发中,为true会导致一些界面上测试按钮被显示出来 */
Expand Down

0 comments on commit f1da9b3

Please sign in to comment.