Skip to content

Commit

Permalink
v5.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
victornpb committed Jul 4, 2023
1 parent f92ada0 commit 9ce4d7b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 5 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,18 @@ Do not alter the version, because I may have to change this depending on the ord
# Building the project
# Now that you read that, this is what you do

#### Click to watch video (45 seconds):
[![Video Instructions](https://img.youtube.com/vi/AKTCvzvcPig/0.jpg)](https://www.youtube.com/watch?v=AKTCvzvcPig)
https://www.youtube.com/watch?v=AKTCvzvcPig


If you're unfamilliar with compiled Javascript, this is how you do it:

1. Clone the repository to your computer
2. Open the terminal inside the cloned directory
3. Run `npm i` to download the project dependencies
4. Run `npm start` it will automatically compile the project, when you make changes

## Testing locally
## Testing your changes locally

#### Click to watch video (45 seconds):
[![Video Instructions](https://img.youtube.com/vi/AKTCvzvcPig/0.jpg)](https://www.youtube.com/watch?v=AKTCvzvcPig)
https://www.youtube.com/watch?v=AKTCvzvcPig

Open the URL that shows up in your console when you run `npm start` it will ask you to install a development version of Undiscord.
You need to click the update button every time you make changes in TamperMonkey, or reinstall it by opening the URL again.
Expand All @@ -52,4 +51,3 @@ Copy the contents of the `deleteDiscordMessages.user.js` at the top of the repos
and paste it directly into your browser console.

----------------------------------------------------------------

4 changes: 2 additions & 2 deletions deleteDiscordMessages.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Undiscord
// @description Delete all messages in a Discord channel or DM (Bulk deletion)
// @version 5.2.2
// @version 5.2.3
// @author victornpb
// @homepageURL https://github.com/victornpb/undiscord
// @supportURL https://github.com/victornpb/undiscord/discussions
Expand All @@ -19,7 +19,7 @@
'use strict';

/* rollup-plugin-baked-env */
const VERSION = "5.2.2";
const VERSION = "5.2.3";

var themeCss = (`
/* undiscord window */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "undiscord",
"nameFull": "Undiscord",
"version": "5.2.2",
"version": "5.2.3",
"description": "Delete all messages in a Discord channel or DM (Bulk deletion)",
"userScript": {
"namespace": "https://github.com/victornpb/deleteDiscordMessages",
Expand Down

1 comment on commit 9ce4d7b

@CxAbravanel
Copy link

@CxAbravanel CxAbravanel commented on 9ce4d7b Aug 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be possible to remove the 30 delay between one page and another? If yes, is it possible to teach?

Please sign in to comment.