Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
744b9d5
Added new features, bump djs
xNickyDev Aug 23, 2025
1168427
Added $arrayUnique and $hasComponents
xNickyDev Aug 23, 2025
da276bc
Added $guildInvites and many missing properties
xNickyDev Aug 24, 2025
d37fb2f
fix $eval not fetching enviroment variables on escaped code.
aggelos-007 Aug 26, 2025
6aaacf4
fix \$eval not fetching enviroment variables on escaped code.
aggelos-007 Aug 26, 2025
fef30f5
Fix paths
aggelos-007 Aug 26, 2025
0358b7f
Added $getPoll, fixed $botMutualGuilds
xNickyDev Aug 27, 2025
23df167
Fixed disabling mentions
xNickyDev Aug 28, 2025
526b93d
Added $setAuditLogReason
xNickyDev Aug 29, 2025
b3bdd9b
Forum tags overhall and addition
xNickyDev Aug 30, 2025
02cb059
fix \$setTimeout & \$setInterval
aggelos-007 Sep 2, 2025
5b10c89
fix \$async
aggelos-007 Sep 2, 2025
6cae6f2
Added $getTextSplitIndex
aggelos-007 Sep 4, 2025
3d91573
Update paths.json cuz i changed by accident again
aggelos-007 Sep 5, 2025
dcd65f5
Remove ready event in favor of clientReady
xNickyDev Sep 5, 2025
1cd1729
fix $ issue on commits and fixed generateMetadata
aggelos-007 Sep 5, 2025
d3b28c8
better fix of commit command
aggelos-007 Sep 5, 2025
ab497be
Update guide, ran eslint
xNickyDev Sep 5, 2025
dd514eb
Added int param to $rolePerms and $memberPerms
xNickyDev Sep 5, 2025
881804c
Added $channelThreadIDs and $fetchThreads
xNickyDev Sep 6, 2025
6a05b36
Update README.md
avonrylew Sep 10, 2025
b269196
Merge pull request #391 from avonryle/patch-1
xNickyDev Sep 10, 2025
da1b709
Added new functions and made small adjustments
xNickyDev Sep 19, 2025
3bb99dd
Added new events, optimized fetching app emojis
xNickyDev Sep 23, 2025
df6d486
Renamed $fetchGuildPreview to $getGuildPreview
xNickyDev Sep 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
*.sqlite
\.env
act.exe
PUBLISHING.md
PUBLISHING.md
__tests__
8 changes: 5 additions & 3 deletions EXTENSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ import { execSync } from "child_process"
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs"
import prompt from "./functions/prompt"
import { join } from "path"
import { platform } from "os"

const path = "./metadata"
if (!existsSync(path)) mkdirSync(path)
Expand Down Expand Up @@ -121,18 +122,19 @@ async function main() {
const fileName = join(path, "changelogs.json")
const json: Record<string, object[]> = existsSync(fileName) ? JSON.parse(readFileSync(fileName, "utf-8")) : {}
json[version] ??= []

const author = execSync("git config user.name").toString().trim()
if (!skip) {
json[version].unshift({
message: msg,
timestamp: new Date(),
author: execSync("git config user.name").toString().trim()
author
})
writeFileSync(fileName, JSON.stringify(json), "utf-8")
}

const branch = await prompt("Write the branch name to push to (defaults to dev): ") || "dev"
const escapedMsg = msg.replace(/\$/g, "\\$")
let escapedMsg = msg
if (platform() === "darwin") escapedMsg = escapedMsg.replace(/\$/g, "\\$")

execSync("git branch -M " + branch + " && git add . && git commit -m \"" + escapedMsg + "\" && git push -u origin " + branch, {
stdio: "inherit"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const client = new ForgeClient({
],
events: [
"messageCreate",
"ready"
"clientReady"
], // Events our bot will act on
prefixes: [
"!",
Expand Down
8 changes: 6 additions & 2 deletions dist/commit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commit.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/core/ForgeClient.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading