diff --git a/src/plugins/unlockedAvatarZoom/README.md b/src/plugins/unlockedAvatarZoom/README.md new file mode 100644 index 0000000..9ecd0b1 --- /dev/null +++ b/src/plugins/unlockedAvatarZoom/README.md @@ -0,0 +1,5 @@ +# UnlockedAvatarZoom + +Allows you to zoom in further in the image crop tool when changing your avatar + +![](https://raw.githubusercontent.com/Vencord/plugin-assets/main/UnlockedAvatarZoom/demo.avif) diff --git a/src/plugins/unlockedAvatarZoom/index.ts b/src/plugins/unlockedAvatarZoom/index.ts new file mode 100644 index 0000000..08503eb --- /dev/null +++ b/src/plugins/unlockedAvatarZoom/index.ts @@ -0,0 +1,35 @@ +/* + * Vencord, a Discord client mod + * Copyright (c) 2024 Vendicated and contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +import { definePluginSettings } from "@api/Settings"; +import { makeRange } from "@components/PluginSettings/components"; +import { Devs } from "@utils/constants"; +import definePlugin, { OptionType } from "@utils/types"; + +const settings = definePluginSettings({ + zoomMultiplier: { + type: OptionType.SLIDER, + description: "Zoom multiplier", + markers: makeRange(2, 16), + default: 4, + }, +}); + +export default definePlugin({ + name: "UnlockedAvatarZoom", + description: "Allows you to zoom in further in the image crop tool when changing your avatar", + authors: [Devs.nakoyasha], + settings, + patches: [ + { + find: ".Messages.AVATAR_UPLOAD_EDIT_MEDIA", + replacement: { + match: /maxValue:\d/, + replace: "maxValue:$self.settings.store.zoomMultiplier", + } + } + ] +}); diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 04a4f67..3098e29 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -426,6 +426,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({ name: "newwares", id: 421405303951851520n }, + nakoyasha: { + name: "nakoyasha", + id: 222069018507345921n + }, Sqaaakoi: { name: "Sqaaakoi", id: 259558259491340288n