You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v1.6.2: allow message edits, code restructure, and bug fixes (#33)
* add ability for users to edit their embeds (#29)
set "editOnMsgUpdate" to true in settings.json
* remove console.log (oops)
* change editOnMsgUpdate to editMsgGracePeriod
editMsgGracePeriod defines how long (in seconds) one can edit a message and it update on the board
* fix msg undefined error
* fix issue where custom emojis would not fetch correctly on msg edit
* Update README.md (#32)
* Update README.md
added to setting.json readme
- editMsgGracePeriod
- editOnMsgUpdate
Added to table with explaination (might need to be checked my english is bad. )
* Update README.md
Updated with Changes recommended by Naexris
* finalize v1.6.2
---------
Co-authored-by: Mazmol <38956955+Mazmol@users.noreply.github.com>
Copy file name to clipboardExpand all lines: PRIVACYPOLICY.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# Smugboard Privacy Policy
2
-
Last updated May 5th, 2021
2
+
Last updated June 8th, 2023
3
3
4
4
## Introduction
5
5
Smugboard ("this bot" or "me" or "we" or "us" or "our") collects a small amount of data when users ("users" or "you") use this bot through Discord. This Privacy Policy explains how it collects, uses, and safeguards this information. Because this is an open source project, it must be stated that this Privacy Policy strictly pertains to Smugboard (bot administered by me). Any other bots that use this repository may differ slightly from this Privacy Policy and are in no way connected with me. Please read this privacy policy carefully. If you do not agree with the terms, please do not access Discord servers with this bot ("participating servers").
@@ -37,8 +37,8 @@ Your information will never be sold to advertisers or third parties for any reas
37
37
38
38
39
39
## Options regarding your information
40
-
You may at any time request deletion of your stored information. You may do this by messaging me (Rushnett) on participating servers and requesting deletion of your information. You may also create an Issue on this repository ([https://github.com/Rushnett/starboard/issues](https://github.com/Rushnett/starboard/issues)). At the time of requesting, your Discord ID will be collected in order to look up and delete your stored content on our database (searchable by said Discord ID). However, some information will be retained in the participating Discord server (commonly known as the "posting channel").
40
+
You may at any time request deletion of your stored information. You may do this by messaging me (Rushnett) on participating servers and requesting deletion of your information. You may also create an Issue on this repository ([https://github.com/naeruru/starboard/issues](https://github.com/naeruru/starboard/issues)). At the time of requesting, your Discord ID will be collected in order to look up and delete your stored content on our database (searchable by said Discord ID). However, some information will be retained in the participating Discord server (commonly known as the "posting channel").
41
41
42
42
43
43
## Contact
44
-
if you have any questions or comments about this Privacy Policy, you can create an issue on this repository at [https://github.com/Rushnett/starboard/issues](https://github.com/Rushnett/starboard/issues).
44
+
if you have any questions or comments about this Privacy Policy, you can create an issue on this repository at [https://github.com/naeruru/starboard/issues](https://github.com/naeruru/starboard/issues).
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,8 @@ After creating your bot and cloning the repository, the only setup that needs to
19
19
"threshold": 15,
20
20
"hexcolor": "00AE86",
21
21
"dateCutoff": 3,
22
-
"fetchLimit": 100
22
+
"fetchLimit": 100,
23
+
"editMsgGracePeriod": 300
23
24
}
24
25
```
25
26
@@ -34,7 +35,7 @@ After creating your bot and cloning the repository, the only setup that needs to
34
35
|**hexcolor**| String | the color of the embed in hex. if null, this value is generated from an incoming message's channel ID (unique color code per channel). |
35
36
|**dateCutoff**| Integer | how old a message can be, in days, and still be tracked by the bot. if you don't want really old messages getting posted, then keep this number low. |
36
37
|**fetchLimit**| Integer | how many messages from the starboard channel will be loaded in memory. This lets the script know what messages have already been posted. It's recommended to change this with respect to `dateCutoff` and how big your server is. Anything that isn't tracked has the possibility of getting double posted. |
37
-
38
+
|**editMsgGracePeriod**| Integer | how long, in seconds, a message can to be edited to update its board post. disables this feature if set to null or 0. |
38
39
39
40
### Running the Project
40
41
Use `npm install` to download dependencies. Finally, you can run the bot with `npm start`. I recommend using pm2 for continuous uptime.
0 commit comments