Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Dev to Main #103

Merged
merged 27 commits into from
Dec 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
203ff7a
moved command descriptions in /help to github wiki due to discord's m…
vb2007 Dec 20, 2024
06cbd52
added commandData table schema
vb2007 Dec 20, 2024
7c70d51
changed id
vb2007 Dec 20, 2024
64c27ec
added data export
vb2007 Dec 20, 2024
568339d
added command option to /help
vb2007 Dec 20, 2024
f81fca6
updated packages
vb2007 Dec 21, 2024
2baf39a
started rewriting /help
vb2007 Dec 21, 2024
b4c4480
moved data.sql to table.sql
vb2007 Dec 21, 2024
61429d6
removed table name from insert queries
vb2007 Dec 21, 2024
67cfa0a
made /help work with specified commands
vb2007 Dec 21, 2024
d9d40c4
added handling commands from specified categories
vb2007 Dec 21, 2024
6a3d945
fixed uppercase category name, other small stuffs
vb2007 Dec 21, 2024
8fa1d9c
listed all commands if a parameter wasn't provided
vb2007 Dec 22, 2024
baefbb8
renamed folder after the table's name
vb2007 Dec 22, 2024
e7f8ddb
rewritten unit test to check the sql script instead of the /help command
vb2007 Dec 22, 2024
75438d0
added wiki references to /help
vb2007 Dec 22, 2024
a6348af
made the command names into a unique key
vb2007 Dec 22, 2024
83ecf0e
fixed sql split in unit test
vb2007 Dec 22, 2024
9a961a4
Merge pull request #101 from vb2007/dev-fixes
vb2007 Dec 22, 2024
7a54462
inserted userName with /pay
vb2007 Dec 22, 2024
6ee0986
added self payment prevention, updated logic
vb2007 Dec 22, 2024
267bd25
made userId unique in db
vb2007 Dec 22, 2024
d4b25c1
updatedt table definition comments
vb2007 Dec 22, 2024
083a246
fixed false logging issues
vb2007 Dec 22, 2024
7f9c104
fixed typo, added logging, decreased time
vb2007 Dec 22, 2024
6eed011
fixed typo in description
vb2007 Dec 22, 2024
0f8773c
Merge pull request #102 from vb2007/dev-pay-fixes
vb2007 Dec 22, 2024
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
Prev Previous commit
Next Next commit
changed id
  • Loading branch information
vb2007 committed Dec 20, 2024
commit 7c70d51e2ca6680b248012867af3a3c3eba14418
2 changes: 1 addition & 1 deletion sql/commandInfo/table.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- discordbot.commandData definition

CREATE TABLE IF NOT EXISTS `commandData` (
`id` varchar(50) NOT NULL,
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` text DEFAULT NOT NULL,
`category` text DEFAULT NULL,
`description` text DEFAULT NULL,
Expand Down