From 9ce4d7bdd3342b34c316981b0024e9f06c654846 Mon Sep 17 00:00:00 2001 From: victornpb <3372598+victornpb@users.noreply.github.com> Date: Tue, 4 Jul 2023 11:48:20 -0300 Subject: [PATCH] v5.2.3 --- CONTRIBUTING.md | 12 +++++------- deleteDiscordMessages.user.js | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bfa46adf..b2695482 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,11 +29,6 @@ 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 @@ -41,7 +36,11 @@ If you're unfamilliar with compiled Javascript, this is how you do it: 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. @@ -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. ---------------------------------------------------------------- - diff --git a/deleteDiscordMessages.user.js b/deleteDiscordMessages.user.js index 89c00e0e..a5f86f08 100644 --- a/deleteDiscordMessages.user.js +++ b/deleteDiscordMessages.user.js @@ -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 @@ -19,7 +19,7 @@ 'use strict'; /* rollup-plugin-baked-env */ - const VERSION = "5.2.2"; + const VERSION = "5.2.3"; var themeCss = (` /* undiscord window */ diff --git a/package.json b/package.json index fc2e9f70..948fc324 100755 --- a/package.json +++ b/package.json @@ -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",