From ff4351e1e40de0430af15aa62103c96b27d0ef7a Mon Sep 17 00:00:00 2001 From: LostLuma Date: Wed, 7 Apr 2021 16:06:36 +0200 Subject: [PATCH] Replace all mentions of old username with LostLuma --- package.json | 8 ++-- packages/api/src/app.py | 2 +- packages/bot/requirements.txt | 2 +- packages/bot/src/bot.py | 2 +- packages/bot/src/plugins/about/plugin.py | 2 +- packages/bot/src/plugins/utility/plugin.py | 4 +- packages/dashboard/package.json | 8 ++-- packages/dashboard/public/keybase.txt | 56 ---------------------- packages/dashboard/public/security.txt | 29 ----------- 9 files changed, 14 insertions(+), 99 deletions(-) delete mode 100644 packages/dashboard/public/keybase.txt delete mode 100644 packages/dashboard/public/security.txt diff --git a/package.json b/package.json index 53e0bca..0ad387a 100644 --- a/package.json +++ b/package.json @@ -8,14 +8,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/SnowyLuma/Mousey.git" + "url": "git+https://github.com/LostLuma/Mousey.git" }, - "author": "Lilly Rose Berner (https://snowyluma.dev)", + "author": "Lilly Rose Berner (https://lostluma.dev)", "license": "AGPL-3.0", "bugs": { - "url": "https://github.com/SnowyLuma/Mousey/issues" + "url": "https://github.com/LostLuma/Mousey/issues" }, - "homepage": "https://github.com/SnowyLuma/Mousey#readme", + "homepage": "https://github.com/LostLuma/Mousey#readme", "devDependencies": { "prettier": "^2.2.1" } diff --git a/packages/api/src/app.py b/packages/api/src/app.py index 2c23bc9..953cc6a 100644 --- a/packages/api/src/app.py +++ b/packages/api/src/app.py @@ -51,7 +51,7 @@ async def on_startup(): app.redis = aredis.StrictRedis.from_url(str(REDIS_URL)) app.db = await asyncpg.create_pool(str(PSQL_DSN), init=init_pg_connection) - app.session = aiohttp.ClientSession(headers={'User-Agent': f'Mousey/4.0 (+https://github.com/SnowyLuma/Mousey)'}) + app.session = aiohttp.ClientSession(headers={'User-Agent': f'Mousey/4.0 (+https://github.com/LostLuma/Mousey)'}) @app.on_event('shutdown') diff --git a/packages/bot/requirements.txt b/packages/bot/requirements.txt index c86e0d7..a441957 100644 --- a/packages/bot/requirements.txt +++ b/packages/bot/requirements.txt @@ -3,7 +3,7 @@ aredis==1.1.8 asyncpg==0.22.0 cryptography==3.4.7 # discord.py @ git+https://github.com/Rapptz/discord.py@master -discord.py @ git+https://github.com/SnowyLuma/discord.py@ef3b7e08df5bf4dff6b6d344806385ce67bd98de +discord.py @ git+https://github.com/LostLuma/discord.py@ef3b7e08df5bf4dff6b6d344806385ce67bd98de hiredis==2.0.0 # jishaku==1.20.0.220 jishaku @ git+https://github.com/Gorialis/jishaku@1d7905a6984597176c1b7e3817c9f5c13934d29a diff --git a/packages/bot/src/bot.py b/packages/bot/src/bot.py index f73d060..cc00075 100644 --- a/packages/bot/src/bot.py +++ b/packages/bot/src/bot.py @@ -104,7 +104,7 @@ class Mousey(commands.Bot): await wait_redis_connected(redis) # :blobpain: self.session = aiohttp.ClientSession( - headers={'User-Agent': f'Mousey/{__version__} (+https://github.com/SnowyLuma/Mousey)'} + headers={'User-Agent': f'Mousey/{__version__} (+https://github.com/LostLuma/Mousey)'} ) self.api = APIClient(self.session) diff --git a/packages/bot/src/plugins/about/plugin.py b/packages/bot/src/plugins/about/plugin.py index da173bb..2f16524 100644 --- a/packages/bot/src/plugins/about/plugin.py +++ b/packages/bot/src/plugins/about/plugin.py @@ -95,7 +95,7 @@ class About(Plugin): async def source(self, ctx): """Displays a link to my source code on GitHub.""" - await ctx.send('You can find my source code here: ') + await ctx.send('You can find my source code here: ') @command() @commands.has_permissions(manage_guild=True) diff --git a/packages/bot/src/plugins/utility/plugin.py b/packages/bot/src/plugins/utility/plugin.py index 3561b94..8e0429a 100644 --- a/packages/bot/src/plugins/utility/plugin.py +++ b/packages/bot/src/plugins/utility/plugin.py @@ -91,7 +91,7 @@ class Utility(Plugin): User can be specified as a mention, ID, DiscordTag, name or will default to the author. - Example: `{prefix}joined SnowyLuma#0001` + Example: `{prefix}joined LostLuma#7931` """ user = user or ctx.author @@ -110,7 +110,7 @@ class Utility(Plugin): User can be specified as a mention, ID, DiscordTag, name or will default to the author. - Example: `{prefix}seen SnowyLuma#0001` + Example: `{prefix}seen LostLuma#7931` """ user = user or ctx.author diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 1a0371b..1a0a29c 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -11,14 +11,14 @@ }, "repository": { "type": "git", - "url": "git+ssh://git@github.com/SnowyLuma/Mousey.git" + "url": "git+ssh://git@github.com/LostLuma/Mousey.git" }, - "author": "Lilly Rose Berner (https://snowyluma.dev)", + "author": "Lilly Rose Berner (https://lostluma.dev)", "license": "AGPL-3.0", "bugs": { - "url": "https://github.com/SnowyLuma/Mousey/issues" + "url": "https://github.com/LostLuma/Mousey/issues" }, - "homepage": "https://github.com/SnowyLuma/Mousey#readme", + "homepage": "https://github.com/LostLuma/Mousey#readme", "devDependencies": { "eslint": "^7.18.0", "parcel-bundler": "^1.3.1", diff --git a/packages/dashboard/public/keybase.txt b/packages/dashboard/public/keybase.txt deleted file mode 100644 index df719a3..0000000 --- a/packages/dashboard/public/keybase.txt +++ /dev/null @@ -1,56 +0,0 @@ -================================================================== -https://keybase.io/snowyluma --------------------------------------------------------------------- - -I hereby claim: - - * I am an admin of https://mousey.app - * I am snowyluma (https://keybase.io/snowyluma) on keybase. - * I have a public key ASBGccs61JXAFK-gARnf64lloiuPxDWNDdIo9S5PVFCqqAo - -To do so, I am signing this object: - -{ - "body": { - "key": { - "eldest_kid": "01204671cb3ad495c014afa00119dfeb8965a22b8fc4358d0dd228f52e4f5450aaa80a", - "host": "keybase.io", - "kid": "01204671cb3ad495c014afa00119dfeb8965a22b8fc4358d0dd228f52e4f5450aaa80a", - "uid": "c5a2995809c385260e8245e665f61819", - "username": "snowyluma" - }, - "merkle_root": { - "ctime": 1526001017, - "hash": "e790b7a04294ae2699858f5ea8d59de28bd591362eb79720ad53b63d0b8aeb7ee4aeecbf8b54fceecf907fe83d3516518044cb9914a3d7483cad6928198e8b87", - "hash_meta": "daeb320298f2744283d879ab269bb2ab5353197414a6f2121a8291b6d62d669a", - "seqno": 2620717 - }, - "service": { - "entropy": "eKI4SiuSeOdujH78Saxf+Pve", - "hostname": "mousey.app", - "protocol": "https:" - }, - "type": "web_service_binding", - "version": 2 - }, - "client": { - "name": "keybase.io go client", - "version": "1.0.47" - }, - "ctime": 1526001089, - "expire_in": 504576000, - "prev": "d88c7f74b662431d06b0aaafd6c2688073a15a5e6c6cc804a8ad037715c37b74", - "seqno": 23, - "tag": "signature" -} - -which yields the signature: - -hKRib2R5hqhkZXRhY2hlZMOpaGFzaF90eXBlCqNrZXnEIwEgRnHLOtSVwBSvoAEZ3+uJZaIrj8Q1jQ3SKPUuT1RQqqgKp3BheWxvYWTESpcCF8Qg2Ix/dLZiQx0GsKqv1sJogHOhWl5sbMgEqK0DdxXDe3TEIJbZ2cfuSGkUK2hna0j/hmnGiIoqib7yIG2AB+y5UI1aAgHCo3NpZ8RAY0e8AdqxsTzv9pnr3n2msA+XCNVizT6DSSA/ZbZhln7VcSM5jMXc6VdO5x/iAeOrTRSWrVxGfyVw3c9PrmZ4CqhzaWdfdHlwZSCkaGFzaIKkdHlwZQildmFsdWXEINUlMBgtQB4iaBJi7GGy22Ut61Br5DQX7Azs2plnT90oo3RhZ80CAqd2ZXJzaW9uAQ== - -And finally, I am proving ownership of this host by posting or -appending to this document. - -View my publicly-auditable identity here: https://keybase.io/snowyluma - -================================================================== diff --git a/packages/dashboard/public/security.txt b/packages/dashboard/public/security.txt deleted file mode 100644 index 316a4f8..0000000 --- a/packages/dashboard/public/security.txt +++ /dev/null @@ -1,29 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA512 - -# beep boop :blobpeek: - -Preferred-Languages: en, de -Contact: mailto:lilly@snowyluma.dev - -Canonical: https://mousey.app/security.txt - -Encryption: https://files.snowyluma.dev/pgp.txt -Encryption: openpgp4fpr:4EFEA4EA85CE267F83A6CCD7014BEA900E05897F - ------BEGIN PGP SIGNATURE----- - -iQIzBAEBCgAdFiEETv6k6oXOJn+DpszXAUvqkA4FiX8FAmAHAW8ACgkQAUvqkA4F -iX9kqRAA1rNHekKV9HAA73mensp5yCSdn7vVxxpV4gxrMVZ0W2QR8r/4aVs9JLnx -r5X5qaJgLM04xSIiFvnnnD6SPowBo3fkUlJFbFwsZruZnxreUPgd36IyzXeQ7EgT -9T5NXqsFYUoKQ05Y/76qIQzg+EHxznFeT9l926JIWd39OwCC7gMaVftUGpDxsuc+ -fiLPC6PLSpkjlAEMyWnQyhBV38WfakeMAkIjJx7izEZWcTeCzI5f7oDVlVUi6wxU -BIkZ1oeTX7hdLHaUU6DzSJTyTjZdfHV/rLsgpi3D1s9dmstldQT36hSfacLxNyl5 -YjDHA8KP/smcK2LJN3+iFiyYUqP07BrYdUh+JI1NT3wz4rUk7AwRdpAzPjnC+KRJ -bLEWeFBXreg9BXZxDVJ3jlq/uMgA6cIkrKU0y77/wLLaAgEEC5xZOjBQJzcZxYP2 -R1g/DJP6Mw2V0Ja+99+b+KqTxh01rzxFKqt/EbZRqnwW+ZnzDVslrXk12+iXhwO9 -Lcyfu3cHfK8wpFYYbZDBIia1X4phkTQn/uDnwXGC8IGywWEplQeHWKE6rWM1TTVL -ENZo0T+/axuRSXEOyDeJ7W0WF1eyTPcLsN9N3KFEGBrj/UwDSwVKQrAr7/Oxd5+v -GPvrSFPV+Vz0peyisZxkIv4lj7C1/RPnOy/lxG4da+kIGYpjZ1o= -=WukE ------END PGP SIGNATURE-----