-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Rayandevs/codespace-solid-space-train-4jqj…
…46q9j5xg2jq9q Codespace solid space train 4jqj46q9j5xg2jq9q
- Loading branch information
Showing
54 changed files
with
4,297 additions
and
774 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
color=always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,107 @@ | |
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [1.4.0] - 2024-10-19 | ||
|
||
### 🚀 Features | ||
|
||
- V1.0.1 | ||
- Moderation | ||
- Mongodb | ||
- Cases moderator / user | ||
- Moderation - warn | ||
- Custom-emojis | ||
- Automoderation [base] | ||
- Automoderation - invite-links | ||
- [lib] 0.0.1 | ||
- [lib] 0.0.2 Generic Type | ||
- [lib] 0.0.3 default to true | ||
- [lib] 0.0.5 setRunType() | ||
- [scripts] 0.0.1 TS | ||
- 1.0.3 | ||
- *(/member whois)* Basic command logic | ||
- GetCases() fix: createCase() | ||
- NeetButton | ||
- Welcome! | ||
- Added farewell | ||
- Neet-canvas | ||
|
||
### 🐛 Bug Fixes | ||
|
||
- Emoji() | ||
- /settings welcome fix | ||
|
||
### 🎨 Styling | ||
|
||
- Simpler logged | ||
|
||
### ⚙️ Miscellaneous Tasks | ||
|
||
- .ignore | ||
- [lib] 0.0.6 Types & Enums | ||
- Ignore test files. | ||
- [lib] 0.0.7 Type Fixes | ||
- *(neet)* Release [email protected] | ||
- *(neet)* Release [email protected] | ||
- Require -> import | ||
- *(neet)* Release [email protected] | ||
- Prettier | ||
- Vscode / scripts | ||
- *(neet)* Release [email protected] | ||
- Moved settings separate | ||
- Moderation Case Edits | ||
- *(neet)* Release [email protected] | ||
- Style ✨ | ||
- Fix my stupidity | ||
- Welcome uodate | ||
- Migrate to Typegoose | ||
- Type fixes / style | ||
|
||
### Auto-Moderation | ||
|
||
- Invites | ||
|
||
### Schema | ||
|
||
- Type string -> boolean | ||
|
||
### [mongoose] | ||
|
||
- Fixes | ||
|
||
### [scripts] | ||
|
||
- 0.03 | ||
|
||
### Add | ||
|
||
- (/whois): Cases | ||
|
||
### Break | ||
|
||
- 1.0.3 Changed to Typescript | ||
|
||
### Dev | ||
|
||
- Scripts | ||
|
||
### Helper | ||
|
||
- Emoji() | ||
|
||
### New | ||
|
||
- /automod settings | ||
|
||
### Rm | ||
|
||
- Config | ||
- Settings | ||
|
||
### Utils | ||
|
||
- Matching for third party links. | ||
|
||
## [1.3.1] - 2024-10-13 | ||
|
||
### 🐛 Bug Fixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Documentation | ||
|
||
| Neet | ChangeLogs | Development | | ||
| ---------- | ---------- | ---------------------------------------- | | ||
| [@LTS](/) | [1.4.1](/) | [Code Style](./development/codestyle.md) | | ||
| [@next](/) | | ||
| [1.4.1](/) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Changelog For V1.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Next Version (PLN) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Code Style | ||
|
||
## Variables | ||
|
||
_A variable name should be **CamelCase**._ | ||
|
||
```js | ||
const ThisVariable = "smile"; // IsOkay(): true | ||
const Variable = "i guess!"; // IsOkay(): true | ||
const variableHappy = "NO!"; // IsOkay(): false | ||
const ISSMILING = true; // IsOkay(): false | ||
const GAME_POINTS = 2591; // IsOkay(): false | ||
``` | ||
|
||
## Functions | ||
|
||
_Function names need to be **CamelCase**._ | ||
|
||
```js | ||
function sum(a, b) { | ||
const result = a + b; | ||
return result; | ||
} // IsOkay(): true | ||
|
||
function CheckEmoji(name) { | ||
const emojis = new Emojis({ useApp: true }); | ||
if (!emojis[name]) return false; | ||
return emojis[name]; | ||
} // IsOkay(): true | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[ | ||
{ | ||
"id": "1283480421543317607", | ||
"name": "left_arrow", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283480432272343081", | ||
"name": "right_arrow", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283727603638992929", | ||
"name": "plus", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283727619258450012", | ||
"name": "minus", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283761136982032450", | ||
"name": "on", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283761153285165149", | ||
"name": "off", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283761169810853949", | ||
"name": "checkmark", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283761191159857237", | ||
"name": "xmark", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283764031043276800", | ||
"name": "member", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283833956877471798", | ||
"name": "line", | ||
"animated": false | ||
}, | ||
{ | ||
"id": "1283834008773329021", | ||
"name": "dash", | ||
"animated": false | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.