diff options
author | cryptofyre <cryptofyre@cryptofyre.org> | 2023-02-08 14:48:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 21:48:12 +0100 |
commit | 8a5218937838a9bc7e40304b885af2a30adfbff1 (patch) | |
tree | 5c85d11168ea1097d87aa0646b786701c4005379 /src/plugins/richerCider.tsx | |
parent | 70278f64a96af32d69de25ae1cef38294a640158 (diff) | |
download | Vencord-8a5218937838a9bc7e40304b885af2a30adfbff1.tar.gz Vencord-8a5218937838a9bc7e40304b885af2a30adfbff1.tar.bz2 Vencord-8a5218937838a9bc7e40304b885af2a30adfbff1.zip |
feat(plugin): richerCider (#471)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/richerCider.tsx')
-rw-r--r-- | src/plugins/richerCider.tsx | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/plugins/richerCider.tsx b/src/plugins/richerCider.tsx new file mode 100644 index 0000000..08b0096 --- /dev/null +++ b/src/plugins/richerCider.tsx @@ -0,0 +1,67 @@ +/*
+ * Vencord, a modification for Discord's desktop app
+ * Copyright (c) 2022 OpenAsar
+ *
+ * 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 { Link } from "@components/Link";
+import definePlugin from "@utils/types";
+import { Forms } from "@webpack/common";
+const appIds = [
+ "911790844204437504",
+ "886578863147192350",
+ "1020414178047041627",
+ "1032800329332445255"
+];
+export default definePlugin({
+ name: "richerCider",
+ description: "Enhances Cider (More details in info button) by adding the \"Listening to\" type prefix to the user's rich presence when an applicable ID is found.",
+ authors: [{
+ id: 191621342473224192n,
+ name: "cryptofyre",
+ }],
+ patches: [
+ {
+ find: '.displayName="LocalActivityStore"',
+ replacement: {
+ match: /LOCAL_ACTIVITY_UPDATE:function\((\i)\)\{/,
+ replace: "$&$self.patchActivity($1.activity);",
+ }
+ }
+ ],
+ settingsAboutComponent: () => (
+ <>
+ <Forms.FormTitle tag="h3">Install Cider to use this Plugin</Forms.FormTitle>
+ <Forms.FormText>
+ <Link href="https://cider.sh">Follow the link to our website</Link> to get Cider up and running, and then enable the plugin.
+ </Forms.FormText>
+ <br></br>
+ <Forms.FormTitle tag="h3">What is Cider?</Forms.FormTitle>
+ <Forms.FormText>
+ Cider is an open-source and community oriented Apple Music client for Windows, macOS, and Linux.
+ </Forms.FormText>
+ <br></br>
+ <Forms.FormTitle tag="h3">Recommended Optional Plugins</Forms.FormTitle>
+ <Forms.FormText>
+ I'd recommend using TimeBarAllActivities alongside this plugin to give off a much better visual to the eye (Keep in mind this only affects your client and will not show for other users)
+ </Forms.FormText>
+ </>
+ ),
+ patchActivity(activity: any) {
+ if (appIds.includes(activity.application_id)) {
+ activity.type = 2; /* LISTENING type */
+ }
+ },
+});
|