Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions guides/changelog/2_8_4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `/trigger_auto` will now respect the default screenshot setting.
- Only screenshots sent in DMs will have the delete button.
4 changes: 3 additions & 1 deletion guides/guides.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@
**What's New in Version 2.4.1**: `/guide name:whats_new_version_2_4_1`
**What's New in Version 2.5**: `/guide name:whats_new_version_2_5`
**What's New in Version 2.6**: `/guide name:whats_new_version_2_6`
**What's New in Version 2.7**: `/guide name:whats_new_version_2_7`
**What's New in Version 2.7**: `/guide name:whats_new_version_2_7`
**What's New in Version 2.8**: `/guide name:whats_new_version_2_8`
**What's New in Version 2.8.4**: `/guide name:whats_new_version_2_8_4`
17 changes: 15 additions & 2 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"@types/luxon": "^2.0.8",
"@types/node": "^17.0.7",
"@types/uuid": "^8.3.3",
"@types/walk-asyncgen": "^0.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
Expand Down
7 changes: 3 additions & 4 deletions scripts/automaticallyAddGPLToCode.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import { readFile, writeFile } from "fs/promises";
import { resolve } from "path";

/**
* Copyright (C) 2021 PythonCoderAS
*
Expand All @@ -17,7 +14,9 @@ import { resolve } from "path";
* 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 pathsGenerator = require("walk-asyncgen");
import { readFile, writeFile } from "fs/promises";
import { resolve } from "path";
import pathsGenerator from "walk-asyncgen";

// language=ts
const gplString = `/**
Expand Down
16 changes: 16 additions & 0 deletions src/commands/setCommand/setMenu.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/**
* Copyright (C) 2021 PythonCoderAS
*
* 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 {
Collection,
MessageActionRow,
Expand Down
5 changes: 5 additions & 0 deletions src/data/guideData.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@
"files": ["changelog/2_8"],
"shortTitle": "What's New in Version 2.8"
},
"whats_new_version_2_8_4": {
"title": "What's New in Version 2.8.4",
"files": ["changelog/2_8_4"],
"shortTitle": "What's New in Version 2.8.4"
},
"_send_to_all_whats_new_2_1_and_2_4": {
"title": ["What's New in Version 2.1", "What's New in Version 2.4"],
"files": ["changelog/2_1", "changelog/2_4"],
Expand Down
16 changes: 16 additions & 0 deletions src/utils/formatUserIssue.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/**
* Copyright (C) 2021 PythonCoderAS
*
* 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 { User } from "discord.js";
import { DateTime } from "luxon";

Expand Down