Export all of the tweak keys
This commit is contained in:
parent
3bbe8a58ed
commit
ce994f5daf
13 changed files with 13 additions and 13 deletions
|
|
@ -4,7 +4,7 @@ import { Logger } from "../utils/Logger.mjs";
|
|||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
import { registerDevSetting } from "../utils/SubMenuSettings.mjs";
|
||||
|
||||
const key = `addGlobalDocReferrer`;
|
||||
export const key = `addGlobalDocReferrer`;
|
||||
|
||||
export function addGlobalDocReferrer() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { Logger } from "../utils/Logger.mjs";
|
|||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
import { registerDevSetting } from "../utils/SubMenuSettings.mjs";
|
||||
|
||||
const key = `autoUnpauseOnLoad`;
|
||||
export const key = `autoUnpauseOnLoad`;
|
||||
|
||||
export function autoUnpauseOnLoad() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `chatImageLinks`;
|
||||
export const key = `chatImageLinks`;
|
||||
const IMAGE_TYPES = [
|
||||
`png`,
|
||||
`jpg`,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `chatSidebarBackground`;
|
||||
export const key = `chatSidebarBackground`;
|
||||
|
||||
export function chatSidebarBackground() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { Logger } from "../utils/Logger.mjs";
|
|||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
import { registerCategorySetting } from "../utils/SubMenuSettings.mjs";
|
||||
|
||||
const key = `hotbarButtonGap`;
|
||||
export const key = `hotbarButtonGap`;
|
||||
|
||||
export function hotbarButtonGap() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { Logger } from "../utils/Logger.mjs";
|
|||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
import { registerCategorySetting } from "../utils/SubMenuSettings.mjs";
|
||||
|
||||
const key = `hotbarButtonSize`;
|
||||
export const key = `hotbarButtonSize`;
|
||||
|
||||
export function hotbarButtonSize() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `preventMovementHistory`;
|
||||
export const key = `preventMovementHistory`;
|
||||
|
||||
export function preventMovementHistory() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `preventTokenRotation`;
|
||||
export const key = `preventTokenRotation`;
|
||||
|
||||
export function preventTokenRotation() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `preventUserConfigOpen`;
|
||||
export const key = `preventUserConfigOpen`;
|
||||
|
||||
export function preventUserConfigOpen() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { Logger } from "../utils/Logger.mjs";
|
|||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
import { registerCategorySetting } from "../utils/SubMenuSettings.mjs";
|
||||
|
||||
const key = `repositionHotbar`;
|
||||
export const key = `repositionHotbar`;
|
||||
|
||||
export function repositionHotbar() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `startSidebarExpanded`;
|
||||
export const key = `startSidebarExpanded`;
|
||||
|
||||
export function startSidebarExpanded() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `startingSidebarTab`;
|
||||
export const key = `startingSidebarTab`;
|
||||
|
||||
export function startingSidebarTab() {
|
||||
status[key] = SettingStatusEnum.Unknown;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { __ID__ } from "../consts.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
import { preventTweakRegistration } from "../utils/preRegisterTweak.mjs";
|
||||
|
||||
const key = `toggleMouseBroadcast`;
|
||||
export const key = `toggleMouseBroadcast`;
|
||||
|
||||
/** @type {number | null} */
|
||||
let notifID = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue