diff --git a/src/equicordplugins/betterMicrophone/components/MicrophoneSettingsModal.tsx b/src/equicordplugins/betterMicrophone/components/MicrophoneSettingsModal.tsx index d28f1038..b031fc0d 100644 --- a/src/equicordplugins/betterMicrophone/components/MicrophoneSettingsModal.tsx +++ b/src/equicordplugins/betterMicrophone/components/MicrophoneSettingsModal.tsx @@ -31,8 +31,8 @@ import { SettingsModalProfilesCard, validateNumberInput, validateTextInputNumber -} from "../../philsPluginLibrary.discordDesktop"; -import { Styles } from "../../philsPluginLibrary.discordDesktop/styles"; +} from "../../philsPluginLibrary"; +import { Styles } from "../../philsPluginLibrary/styles"; import { MicrophoneProfile, MicrophoneStore } from "../stores"; const simpleVoiceBitrates: readonly SelectOption[] = [ diff --git a/src/equicordplugins/betterMicrophone/constants/constants.ts b/src/equicordplugins/betterMicrophone/constants/constants.ts index 136a3204..961c3d20 100644 --- a/src/equicordplugins/betterMicrophone/constants/constants.ts +++ b/src/equicordplugins/betterMicrophone/constants/constants.ts @@ -18,7 +18,7 @@ import { Devs } from "@utils/constants"; -import { types } from "../../philsPluginLibrary.discordDesktop"; +import { types } from "../../philsPluginLibrary"; export const PluginInfo = { PLUGIN_NAME: "BetterMicrophone", diff --git a/src/equicordplugins/betterMicrophone/index.tsx b/src/equicordplugins/betterMicrophone/index.tsx index 11a66ad8..f4cd29a8 100644 --- a/src/equicordplugins/betterMicrophone/index.tsx +++ b/src/equicordplugins/betterMicrophone/index.tsx @@ -19,7 +19,7 @@ import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; -import { addSettingsPanelButton, Emitter, MicrophoneSettingsIcon, removeSettingsPanelButton } from "../philsPluginLibrary.discordDesktop"; +import { addSettingsPanelButton, Emitter, MicrophoneSettingsIcon, removeSettingsPanelButton } from "../philsPluginLibrary"; import { PluginInfo } from "./constants"; import { openMicrophoneSettingsModal } from "./modals"; import { MicrophonePatcher } from "./patchers"; diff --git a/src/equicordplugins/betterMicrophone/patchers/microphone.ts b/src/equicordplugins/betterMicrophone/patchers/microphone.ts index d345c89a..69bbadf1 100644 --- a/src/equicordplugins/betterMicrophone/patchers/microphone.ts +++ b/src/equicordplugins/betterMicrophone/patchers/microphone.ts @@ -16,8 +16,8 @@ * along with this program. If not, see . */ -import { Emitter, MediaEngineStore, Patcher, types } from "../../philsPluginLibrary.discordDesktop"; -import { patchConnectionAudioTransportOptions } from "../../philsPluginLibrary.discordDesktop/patches/audio"; +import { Emitter, MediaEngineStore, Patcher, types } from "../../philsPluginLibrary"; +import { patchConnectionAudioTransportOptions } from "../../philsPluginLibrary/patches/audio"; import { PluginInfo } from "../constants"; import { logger } from "../logger"; import { microphoneStore } from "../stores"; diff --git a/src/equicordplugins/betterMicrophone/stores/microphoneStore.ts b/src/equicordplugins/betterMicrophone/stores/microphoneStore.ts index 13be536b..f0a16a26 100644 --- a/src/equicordplugins/betterMicrophone/stores/microphoneStore.ts +++ b/src/equicordplugins/betterMicrophone/stores/microphoneStore.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary.discordDesktop"; +import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary"; import { PluginInfo } from "../constants"; diff --git a/src/equicordplugins/betterScreenshare/components/AudioSourceSelect.tsx b/src/equicordplugins/betterScreenshare/components/AudioSourceSelect.tsx index 02351b4d..01bc9f92 100644 --- a/src/equicordplugins/betterScreenshare/components/AudioSourceSelect.tsx +++ b/src/equicordplugins/betterScreenshare/components/AudioSourceSelect.tsx @@ -19,7 +19,7 @@ import { Select, useEffect, useState } from "@webpack/common"; import React from "react"; -import { MediaEngineStore, types } from "../../philsPluginLibrary.discordDesktop"; +import { MediaEngineStore, types } from "../../philsPluginLibrary"; import { screenshareStore } from "../stores"; export const AudioSourceSelect = (props?: typeof Select["defaultProps"]) => { diff --git a/src/equicordplugins/betterScreenshare/components/MicrophoneSettingsModal.tsx b/src/equicordplugins/betterScreenshare/components/MicrophoneSettingsModal.tsx index d28f1038..b031fc0d 100644 --- a/src/equicordplugins/betterScreenshare/components/MicrophoneSettingsModal.tsx +++ b/src/equicordplugins/betterScreenshare/components/MicrophoneSettingsModal.tsx @@ -31,8 +31,8 @@ import { SettingsModalProfilesCard, validateNumberInput, validateTextInputNumber -} from "../../philsPluginLibrary.discordDesktop"; -import { Styles } from "../../philsPluginLibrary.discordDesktop/styles"; +} from "../../philsPluginLibrary"; +import { Styles } from "../../philsPluginLibrary/styles"; import { MicrophoneProfile, MicrophoneStore } from "../stores"; const simpleVoiceBitrates: readonly SelectOption[] = [ diff --git a/src/equicordplugins/betterScreenshare/components/ScreenshareSettingsModal.tsx b/src/equicordplugins/betterScreenshare/components/ScreenshareSettingsModal.tsx index 9aee528e..42e1cbdc 100644 --- a/src/equicordplugins/betterScreenshare/components/ScreenshareSettingsModal.tsx +++ b/src/equicordplugins/betterScreenshare/components/ScreenshareSettingsModal.tsx @@ -34,8 +34,8 @@ import { types, validateNumberInput, validateTextInputNumber -} from "../../philsPluginLibrary.discordDesktop"; -import { Styles } from "../../philsPluginLibrary.discordDesktop/styles"; +} from "../../philsPluginLibrary"; +import { Styles } from "../../philsPluginLibrary/styles"; import { PluginInfo } from "../constants"; import { ScreenshareAudioProfile, ScreenshareAudioStore, ScreenshareProfile, ScreenshareStore } from "../stores"; import { MicrophoneSettingsModal } from "."; diff --git a/src/equicordplugins/betterScreenshare/constants/constants.ts b/src/equicordplugins/betterScreenshare/constants/constants.ts index 34f80fd0..32d9d44c 100644 --- a/src/equicordplugins/betterScreenshare/constants/constants.ts +++ b/src/equicordplugins/betterScreenshare/constants/constants.ts @@ -18,7 +18,7 @@ import { Devs } from "@utils/constants"; -import { types } from "../../philsPluginLibrary.discordDesktop"; +import { types } from "../../philsPluginLibrary"; export const PluginInfo = { PLUGIN_NAME: "BetterScreenshare", diff --git a/src/equicordplugins/betterScreenshare/index.tsx b/src/equicordplugins/betterScreenshare/index.tsx index 9c891a5f..0002b105 100644 --- a/src/equicordplugins/betterScreenshare/index.tsx +++ b/src/equicordplugins/betterScreenshare/index.tsx @@ -19,7 +19,7 @@ import { Devs, EquicordDevs } from "@utils/constants"; import definePlugin from "@utils/types"; -import { addSettingsPanelButton, Emitter, removeSettingsPanelButton, ScreenshareSettingsIcon } from "../philsPluginLibrary.discordDesktop"; +import { addSettingsPanelButton, Emitter, removeSettingsPanelButton, ScreenshareSettingsIcon } from "../philsPluginLibrary"; import { PluginInfo } from "./constants"; import { openScreenshareModal } from "./modals"; import { ScreenshareAudioPatcher, ScreensharePatcher } from "./patchers"; diff --git a/src/equicordplugins/betterScreenshare/patchers/screenshare.ts b/src/equicordplugins/betterScreenshare/patchers/screenshare.ts index c8c6a2ac..51aadbed 100644 --- a/src/equicordplugins/betterScreenshare/patchers/screenshare.ts +++ b/src/equicordplugins/betterScreenshare/patchers/screenshare.ts @@ -18,8 +18,8 @@ import { UserStore } from "@webpack/common"; -import { Emitter, MediaEngineStore, Patcher, types } from "../../philsPluginLibrary.discordDesktop"; -import { patchConnectionVideoSetDesktopSourceWithOptions, patchConnectionVideoTransportOptions } from "../../philsPluginLibrary.discordDesktop/patches/video"; +import { Emitter, MediaEngineStore, Patcher, types } from "../../philsPluginLibrary"; +import { patchConnectionVideoSetDesktopSourceWithOptions, patchConnectionVideoTransportOptions } from "../../philsPluginLibrary/patches/video"; import { PluginInfo } from "../constants"; import { logger } from "../logger"; import { screenshareStore } from "../stores"; diff --git a/src/equicordplugins/betterScreenshare/patchers/screenshareAudio.ts b/src/equicordplugins/betterScreenshare/patchers/screenshareAudio.ts index 88a6479c..64205057 100644 --- a/src/equicordplugins/betterScreenshare/patchers/screenshareAudio.ts +++ b/src/equicordplugins/betterScreenshare/patchers/screenshareAudio.ts @@ -18,7 +18,7 @@ import { UserStore } from "@webpack/common"; -import { Emitter, MediaEngineStore, patchConnectionAudioTransportOptions, Patcher, types } from "../../philsPluginLibrary.discordDesktop"; +import { Emitter, MediaEngineStore, patchConnectionAudioTransportOptions, Patcher, types } from "../../philsPluginLibrary"; import { PluginInfo } from "../constants"; import { logger } from "../logger"; import { screenshareAudioStore } from "../stores/screenshareAudioStore"; diff --git a/src/equicordplugins/betterScreenshare/patches/screenshareModal.tsx b/src/equicordplugins/betterScreenshare/patches/screenshareModal.tsx index e14d1e40..4b069df0 100644 --- a/src/equicordplugins/betterScreenshare/patches/screenshareModal.tsx +++ b/src/equicordplugins/betterScreenshare/patches/screenshareModal.tsx @@ -20,7 +20,7 @@ import { Flex } from "@components/Flex"; import { React } from "@webpack/common"; import { Settings } from "Vencord"; -import { SettingsModalCard, SettingsModalCardItem } from "../../philsPluginLibrary.discordDesktop"; +import { SettingsModalCard, SettingsModalCardItem } from "../../philsPluginLibrary"; import Plugin from ".."; import { AudioSourceSelect, OpenScreenshareSettingsButton } from "../components"; import { PluginInfo } from "../constants"; diff --git a/src/equicordplugins/betterScreenshare/stores/microphoneStore.ts b/src/equicordplugins/betterScreenshare/stores/microphoneStore.ts index 13be536b..f0a16a26 100644 --- a/src/equicordplugins/betterScreenshare/stores/microphoneStore.ts +++ b/src/equicordplugins/betterScreenshare/stores/microphoneStore.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary.discordDesktop"; +import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary"; import { PluginInfo } from "../constants"; diff --git a/src/equicordplugins/betterScreenshare/stores/screenshareAudioStore.ts b/src/equicordplugins/betterScreenshare/stores/screenshareAudioStore.ts index 5749d6a3..29b2edaa 100644 --- a/src/equicordplugins/betterScreenshare/stores/screenshareAudioStore.ts +++ b/src/equicordplugins/betterScreenshare/stores/screenshareAudioStore.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import { createPluginStore, ProfilableStore, profileable } from "../../philsPluginLibrary.discordDesktop"; +import { createPluginStore, ProfilableStore, profileable } from "../../philsPluginLibrary"; import { PluginInfo } from "../constants"; import { defaultMicrophoneProfiles as defaultScreenshareAudioProfiles, diff --git a/src/equicordplugins/betterScreenshare/stores/screenshareStore.ts b/src/equicordplugins/betterScreenshare/stores/screenshareStore.ts index 9dd0323a..7b9d0ed0 100644 --- a/src/equicordplugins/betterScreenshare/stores/screenshareStore.ts +++ b/src/equicordplugins/betterScreenshare/stores/screenshareStore.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary.discordDesktop"; +import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary"; import { PluginInfo } from "../constants";