Vencord/src/plugins/_api/notices.ts

43 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-10-21 19:17:06 -04:00
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2022 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
2022-09-30 18:42:50 -04:00
export default definePlugin({
name: "NoticesAPI",
2022-09-30 18:42:50 -04:00
description: "Fixes notices being automatically dismissed",
2022-09-30 20:27:28 -04:00
authors: [Devs.Ven],
2022-09-30 18:42:50 -04:00
required: true,
patches: [
{
find: 'displayName="NoticeStore"',
2022-09-30 18:42:50 -04:00
replacement: [
{
2023-10-25 11:19:53 -04:00
match: /\i=null;(?=.{0,80}getPremiumSubscription\(\))/g,
replace: "if(Vencord.Api.Notices.currentNotice)return false;$&"
2022-09-30 18:42:50 -04:00
},
{
2023-10-25 11:19:53 -04:00
match: /(?<=,NOTICE_DISMISS:function\(\i\){)return null!=(\i)/,
replace: "if($1.id==\"VencordNotice\")return($1=null,Vencord.Api.Notices.nextNotice(),true);$&"
2022-09-30 18:42:50 -04:00
}
]
}
],
});