new plugin UnlockedAvatarZoom: allows crop zooming in further (#2287)
Co-authored-by: V <vendicated@riseup.net>main
parent
38ffdd7d94
commit
34c74b43bd
@ -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)
|
@ -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",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
Loading…
Reference in new issue