front: remove an option to hide new version dot

turns out this option was confusing people (and also didn't do much)
This commit is contained in:
wukko 2024-04-05 11:57:06 +06:00
parent 9973655abe
commit 33a5a60969
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2
4 changed files with 10 additions and 14 deletions

View file

@ -22,7 +22,6 @@ const switchers = {
}; };
const checkboxes = [ const checkboxes = [
"alwaysVisibleButton", "alwaysVisibleButton",
"disableChangelog",
"downloadPopup", "downloadPopup",
"fullTikTokAudio", "fullTikTokAudio",
"muteAudio", "muteAudio",
@ -171,17 +170,21 @@ function notificationCheck(type) {
default: default:
changed = false; changed = false;
} }
if (changed && sGet("changelogStatus") === `${version}` || type === "disable") { if (changed && sGet("changelogStatus") === `${version}`) {
setTimeout(() => { setTimeout(() => {
eid("about-footer").innerHTML = eid("about-footer").innerHTML.replace(notification, ''); eid("about-footer").innerHTML = eid("about-footer").innerHTML.replace(notification, '');
eid("tab-button-about-changelog").innerHTML = eid("tab-button-about-changelog").innerHTML.replace(notification, '') eid("tab-button-about-changelog").innerHTML = eid("tab-button-about-changelog").innerHTML.replace(notification, '')
}, 900) }, 900)
} }
if (sGet("disableChangelog") !== "true") { if (!sGet("seenAbout") && !eid("about-footer").innerHTML.includes(notification)) {
if (!sGet("seenAbout") && !eid("about-footer").innerHTML.includes(notification)) eid("about-footer").innerHTML = `${notification}${eid("about-footer").innerHTML}`; eid("about-footer").innerHTML = `${notification}${eid("about-footer").innerHTML}`;
if (sGet("changelogStatus") !== `${version}`) { }
if (!eid("about-footer").innerHTML.includes(notification)) eid("about-footer").innerHTML = `${notification}${eid("about-footer").innerHTML}`; if (sGet("changelogStatus") !== `${version}`) {
if (!eid("tab-button-about-changelog").innerHTML.includes(notification)) eid("tab-button-about-changelog").innerHTML = `${notification}${eid("tab-button-about-changelog").innerHTML}`; if (!eid("about-footer").innerHTML.includes(notification)) {
eid("about-footer").innerHTML = `${notification}${eid("about-footer").innerHTML}`;
}
if (!eid("tab-button-about-changelog").innerHTML.includes(notification)) {
eid("tab-button-about-changelog").innerHTML = `${notification}${eid("tab-button-about-changelog").innerHTML}`;
} }
} }
} }
@ -298,7 +301,6 @@ function checkbox(action) {
case "reduceTransparency": eid("cobalt-body").classList.toggle('no-transparency'); break; case "reduceTransparency": eid("cobalt-body").classList.toggle('no-transparency'); break;
case "disableAnimations": eid("cobalt-body").classList.toggle('no-animation'); break; case "disableAnimations": eid("cobalt-body").classList.toggle('no-animation'); break;
} }
action === "disableChangelog" && sGet(action) === "true" ? notificationCheck("disable") : notificationCheck();
} }
function changeButton(type, text) { function changeButton(type, text) {
switch (type) { switch (type) {

View file

@ -80,7 +80,6 @@
"Miscellaneous": "miscellaneous", "Miscellaneous": "miscellaneous",
"ModeToggleAuto": "auto", "ModeToggleAuto": "auto",
"ModeToggleAudio": "audio", "ModeToggleAudio": "audio",
"SettingsDisableNotifications": "hide notifications",
"MediaPickerTitle": "pick what to save", "MediaPickerTitle": "pick what to save",
"MediaPickerExplanationPC": "click or right click to download what you want.", "MediaPickerExplanationPC": "click or right click to download what you want.",
"MediaPickerExplanationPhone": "press or press and hold to download what you want.", "MediaPickerExplanationPhone": "press or press and hold to download what you want.",

View file

@ -80,7 +80,6 @@
"Miscellaneous": "разное", "Miscellaneous": "разное",
"ModeToggleAuto": "авто", "ModeToggleAuto": "авто",
"ModeToggleAudio": "аудио", "ModeToggleAudio": "аудио",
"SettingsDisableNotifications": "cкрыть уведомления",
"MediaPickerTitle": "выбери, что сохранить", "MediaPickerTitle": "выбери, что сохранить",
"MediaPickerExplanationPC": "кликни то, что хочешь скачать. также можно скачать правой кнопки мыши.", "MediaPickerExplanationPC": "кликни то, что хочешь скачать. также можно скачать правой кнопки мыши.",
"MediaPickerExplanationPhone": "нажми, или нажми и удерживай, чтобы скачать.", "MediaPickerExplanationPhone": "нажми, или нажми и удерживай, чтобы скачать.",

View file

@ -523,10 +523,6 @@ export default function(obj) {
}, { }, {
action: "disableMetadata", action: "disableMetadata",
name: t("SettingsDisableMetadata") name: t("SettingsDisableMetadata")
}, {
action: "disableChangelog",
name: t("SettingsDisableNotifications"),
padding: "no-margin"
}]) }])
}) })
}] }]