Skip to content

Commit 04d1701

Browse files
committed
Legal Changes
1 parent 77072c9 commit 04d1701

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

impressum.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ <h3>🧑 Verantwortlicher</h3>
105105

106106
<br><br>
107107

108-
📬 E-Mail: <a href="mailto:service@webbyte.studio">service@webbyte.studio</a>
108+
📬 E-Mail: <a href="mailto:contact@timonsh.dev">contact@timonsh.dev</a>
109109
<br><br>
110110
📞 E-Mail: <a href="tel:+491752860635">+49 175 2860635</a>
111111

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ <h1>Code-Eingabe</h1>
14791479
Falls du aufgefordert wurdest einen Code einzugeben, kannst du dies hier tun.
14801480
</p>
14811481

1482-
<a href="https://buymeacoffee.com/timonschroth/extras" target="_blank" class="bmc-btn">
1482+
<a href="https://buymeacoffee.com/timonsh" target="_blank" class="bmc-btn">
14831483
<img src="./src/assets/img/buymeacoffee.png" alt="Buy me a coffee">
14841484
</a>
14851485

src/js/interface-ini.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ function shop_item_ini() {
560560

561561
document.querySelector('#shop .available article').innerHTML += `
562562
<div style="background-color: ${t.display_data.backgroundColor}; border: ${border};" onclick="buy_item_preparation('theme', '${t.name}')">
563-
<button type="button" onclick="buy_theme_preparation">
563+
<button type="button">
564564
<div class="set-icon">paid</div>
565565
<span>${t.price}</span>
566566
</button>
@@ -583,7 +583,7 @@ function shop_item_ini() {
583583

584584
document.querySelector('#shop .limited article').innerHTML += `
585585
<div style="background-color: ${t.display_data.backgroundColor}; border: ${border};" onclick="buy_item_preparation('theme', '${t.name}')">
586-
<button type="button" onclick="buy_theme_preparation">
586+
<button type="button">
587587
<div class="set-icon">paid</div>
588588
<span>${t.price}</span>
589589
</button>
@@ -683,7 +683,7 @@ function shop_item_ini1() {
683683

684684
document.querySelector('#shop .available > article').innerHTML += `
685685
<div style="background-color: ${theme.display_data.backgroundColor}; border: ${border};" onclick="buy_item_preparation('theme', '${theme.name}')">
686-
<button type="button" onclick="buy_theme_preparation">
686+
<button type="button">
687687
<div class="set-icon">paid</div>
688688
<span>${theme.price}</span>
689689
</button>
@@ -705,7 +705,7 @@ function shop_item_ini1() {
705705
if (theme.limited && theme.active) {
706706
document.querySelector(`#shop .limited article`).innerHTML += `
707707
<div style="background-color: ${theme.display_data.backgroundColor}; border: ${border};" onclick="buy_item_preparation('theme', '${theme.name}')">
708-
<button type="button" onclick="buy_theme_preparation">
708+
<button type="button">
709709
<div class="set-icon">paid</div>
710710
<span>${theme.price}</span>
711711
</button>

src/js/main.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,11 @@ let user = JSON.parse(localStorage.getItem('user')) || {
234234

235235
};
236236

237+
// fix: migrate old avatar path from before asset restructure
238+
if (user.avatar === './src/img/account.png') {
239+
user.avatar = './src/assets/img/account.png';
240+
}
241+
237242

238243
const ms_watermark_hash = "MShift|WBStudio2024";
239244

src/js/verified-shop-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const shop_items = {
122122
}
123123
],
124124
limited: true,
125-
active: false
125+
active: true
126126
},
127127
{
128128
name: 'winter-dreamland',

0 commit comments

Comments
 (0)