changed all references of qrmbot to qrm2. Fixes #96

This commit is contained in:
Abigail Gold 2019-12-08 15:35:58 -05:00
parent ea44f223c8
commit 12dc87ae9b
No known key found for this signature in database
GPG Key ID: CF88335E873C3FB4
16 changed files with 20 additions and 20 deletions

View File

@ -4,8 +4,8 @@ A sample `docker-compose.yml` file:
version: '3' version: '3'
services: services:
bot: bot:
image: "classabbyamp/discord-qrm-bot:latest" image: "classabbyamp/discord-qrm2:latest"
container_name: "qrmbot" container_name: "discord-qrm2"
volumes: volumes:
- "./data:/app/data:rw" - "./data:/app/data:rw"
``` ```

View File

@ -1,4 +1,4 @@
# Discord QRM Bot # qrm, a Bot for Discord
A discord bot with ham radio functionalities. A discord bot with ham radio functionalities.

View File

@ -3,7 +3,7 @@ Common tools for the bot.
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
--- ---

View File

@ -2,6 +2,6 @@ version: '3'
services: services:
bot: bot:
build: . build: .
container_name: "qrmbot" container_name: "discord-qrm2"
volumes: volumes:
- "./data:/app/data:rw" - "./data:/app/data:rw"

View File

@ -3,7 +3,7 @@ ae7q extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
--- ---
Test callsigns: Test callsigns:

View File

@ -3,7 +3,7 @@ Base extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """
@ -142,7 +142,7 @@ class BaseCog(commands.Cog):
"""Show what has changed in recent bot versions.""" """Show what has changed in recent bot versions."""
embed = discord.Embed(title="qrm Changelog", embed = discord.Embed(title="qrm Changelog",
description=("For a full listing, visit [Github](https://" description=("For a full listing, visit [Github](https://"
"github.com/classabbyamp/discord-qrm-bot/blob/master/CHANGELOG.md)."), "github.com/classabbyamp/discord-qrm2/blob/master/CHANGELOG.md)."),
colour=cmn.colours.neutral, colour=cmn.colours.neutral,
timestamp=datetime.utcnow()) timestamp=datetime.utcnow())
embed.set_footer(text=ctx.author.name, embed.set_footer(text=ctx.author.name,

View File

@ -3,7 +3,7 @@ Fun extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ Grid extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ Ham extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """
import json import json

View File

@ -3,7 +3,7 @@ Image extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ Morse Code extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ QRZ extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """
from collections import OrderedDict from collections import OrderedDict
@ -101,7 +101,7 @@ class QRZCog(commands.Cog):
async def qrz_login(user: str, passwd: str, session: aiohttp.ClientSession): async def qrz_login(user: str, passwd: str, session: aiohttp.ClientSession):
url = f'http://xmldata.qrz.com/xml/current/?username={user};password={passwd};agent=qrmbot' url = f'http://xmldata.qrz.com/xml/current/?username={user};password={passwd};agent=discord-qrm2'
async with session.get(url) as resp: async with session.get(url) as resp:
if resp.status != 200: if resp.status != 200:
raise ConnectionError(f'Unable to connect to QRZ (HTTP Error {resp.status})') raise ConnectionError(f'Unable to connect to QRZ (HTTP Error {resp.status})')

View File

@ -3,7 +3,7 @@ Study extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ Weather extension for qrm
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """

View File

@ -3,7 +3,7 @@ Static info about the bot.
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
--- ---
@ -23,5 +23,5 @@ General Public License, version 2.
authors = ("@ClassAbbyAmplifier#2229", "@0x5c#0639") authors = ("@ClassAbbyAmplifier#2229", "@0x5c#0639")
description = """A bot with various useful ham radio-related functions, written in Python.""" description = """A bot with various useful ham radio-related functions, written in Python."""
license = "Released under the GNU General Public License v2" license = "Released under the GNU General Public License v2"
contributing = "Check out the source on GitHub, contributions welcome: https://github.com/classabbyamp/discord-qrm-bot" contributing = "Check out the source on GitHub, contributions welcome: https://github.com/classabbyamp/discord-qrm2"
release = '1.0.0' release = '1.0.0'

View File

@ -4,7 +4,7 @@ qrm, a bot for Discord
--- ---
Copyright (C) 2019 Abigail Gold, 0x5c Copyright (C) 2019 Abigail Gold, 0x5c
This file is part of discord-qrmbot and is released under the terms of the GNU This file is part of discord-qrm2 and is released under the terms of the GNU
General Public License, version 2. General Public License, version 2.
""" """