Skip to content

Commit

Permalink
Release fixes for Discord update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Oct 29, 2023
1 parent a7c0ee6 commit 47fba09
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/bd/BetterFolders.plugin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @name BetterFolders
* @version 3.4.5
* @version 3.4.6
* @author Zerthox
* @authorLink https://github.com/Zerthox
* @description Adds new functionality to server folders. Custom Folder Icons. Close other folders on open.
Expand Down Expand Up @@ -566,7 +566,7 @@ const index = createPlugin({
}
});
triggerRerender(guildsOwner);
waitFor(bySource$1("GUILD_FOLDER_NAME"), { entries: true }).then((FolderSettingsModal) => {
waitFor(bySource$1(".GUILD_FOLDER_NAME"), { entries: true }).then((FolderSettingsModal) => {
if (FolderSettingsModal) {
after(FolderSettingsModal.prototype, "render", (data) => folderModalPatch(data, FolderIcon), { name: "GuildFolderSettingsModal" });
}
Expand Down
7 changes: 5 additions & 2 deletions dist/bd/NoReplyMention.plugin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @name NoReplyMention
* @version 0.2.1
* @version 0.2.2
* @author Zerthox
* @authorLink https://github.com/Zerthox
* @description Suppresses reply mentions.
Expand Down Expand Up @@ -223,7 +223,10 @@ const createPlugin = (plugin) => (meta) => {
};
};

const ReplyActions = demangle({ createPendingReply: bySource(".shouldMention") }, null, true);
const ReplyActions = demangle({
createPendingReply: bySource("shouldMention", "CREATE_PENDING_REPLY"),
deletePendingReply: bySource("DELETE_PENDING_REPLY")
}, null, true);
const index = createPlugin({
start() {
before(ReplyActions, "createPendingReply", ({ args: [options] }) => {
Expand Down
4 changes: 2 additions & 2 deletions dist/bd/OnlineFriendCount.plugin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @name OnlineFriendCount
* @version 3.1.2
* @version 3.1.3
* @author Zerthox
* @authorLink https://github.com/Zerthox
* @description Adds the old online friend count and similar counters back to server list. Because nostalgia.
Expand Down Expand Up @@ -222,7 +222,7 @@ const GuildsNav = /* @__PURE__ */ bySource(["guildsnav"], { entries: true });

const { Link, NavLink, LinkRouter } = /* @__PURE__ */ demangle({
NavLink: bySource$1(".sensitive", ".to"),
Link: bySource$1(".component"),
Link: bySource$1(".component", ".to"),
LinkRouter: bySource$1("this.history")
}, ["NavLink", "Link"]);

Expand Down
4 changes: 2 additions & 2 deletions dist/bd/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [BetterFolders](https://betterdiscord.app/plugin/BetterFolders) <sub><sup>`v3.4.5` *(Updated: 25/09/2023)*</sup></sub>
## [BetterFolders](https://betterdiscord.app/plugin/BetterFolders) <sub><sup>`v3.4.6` *(Updated: 29/10/2023)*</sup></sub>
Adds new functionality to server folders. Custom Folder Icons. Close other folders on open.

## [BetterVolume](https://betterdiscord.app/plugin/BetterVolume) <sub><sup>`v2.5.0` *(Updated: 25/09/2023)*</sup></sub>
Expand All @@ -7,7 +7,7 @@ Set user volume values manually instead of using a slider. Allows setting volume
## [CollapseEmbeds](https://betterdiscord.app/plugin/CollapseEmbeds) <sub><sup>`v1.0.3` *(Updated: 26/09/2023)*</sup></sub>
Adds a button to collapse embeds & attachments.

## [OnlineFriendCount](https://betterdiscord.app/plugin/OnlineFriendCount) <sub><sup>`v3.1.2` *(Updated: 25/09/2023)*</sup></sub>
## [OnlineFriendCount](https://betterdiscord.app/plugin/OnlineFriendCount) <sub><sup>`v3.1.3` *(Updated: 29/10/2023)*</sup></sub>
Adds the old online friend count and similar counters back to server list. Because nostalgia.

## [VoiceEvents](https://betterdiscord.app/plugin/VoiceEvents) <sub><sup>`v2.6.1` *(Updated: 25/09/2023)*</sup></sub>
Expand Down

0 comments on commit 47fba09

Please sign in to comment.