Skip to content

Commit

Permalink
update: 3.3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
elpwc committed Jun 22, 2024
1 parent 59fdc1b commit 65ff1a4
Show file tree
Hide file tree
Showing 3 changed files with 28 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.1'; // current version, !!! update this in EVERY PUBLISH when js/css contents has been changed !!!
const VERSION = '3.3.1.2'; // 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
25 changes: 25 additions & 0 deletions src/components/UpdateContentModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import * as config from '../config';
import { isMobile } from '../stores';
import SubscriptLink7 from '../assets/icons/icon-subscript-link-7.svg';
export let updateVisibility: boolean = false;
export let onOKButtonClick: () => void = () => {};
</script>
Expand All @@ -25,6 +27,29 @@

<div class="update">
<p class="updateTitle"><date>{config.default.lastUpdated}</date> 的更新<br />(ver {config.default.currentVer})</p>
<div class="updateSection">
<p>
连夜引入了更高清晰度的DLC1底图,感谢数据来源<a href="https://www.gamersky.com/tools/map/eldenring/?ref=SEO&pageType=pc" target="_blank">
gamersky
<sup>
<SubscriptLink7 />
</sup>
</a>和
<a href="https://mapgenie.io/elden-ring/maps/the-shadow-realm" target="_blank">
mapgenie
<sup>
<SubscriptLink7 />
</sup>
</a>
</p>
<p>适当增加了地标字体的大小</p>
</div>
</div>

<hr />

<div class="update">
<p class="updateTitle"><date>2024-6-21 17:53 UT+8</date> 的更新<br />(ver 3.3.1.1)</p>
<div class="updateSection">
<p>加入了幽影树碎片和灵灰这两个DLC道具</p>
</div>
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.1', // 本来想着稳定到3.1415926的,果然还是跳过了阿...
lastUpdated: '2024-6-21 17:53 UT+8',
currentVer: '3.3.1.2', // 本来想着稳定到3.1415926的,果然还是跳过了阿...
lastUpdated: '2024-6-23 3:40 UT+8',
/** 是否锁定所有地标 */
isLockAllMarkers: false,
/** 是否在开发中,为true会导致一些界面上测试按钮被显示出来 */
Expand Down

0 comments on commit 65ff1a4

Please sign in to comment.