REF: Changed EONA to Elysia

DOC: Added Elysia's image
DOC: Updated everything to reflected the new naming.
This commit is contained in:
Dan 2024-08-12 21:23:02 -04:00
parent 5136842c6c
commit 14ba9ceb98
7 changed files with 9 additions and 9 deletions

BIN
Elysia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 KiB

View File

@ -1,3 +1,3 @@
# Eona # Elysia
![Elysia](/Elysia.png)
Eona is (to start) a birthday bot for kenny Elysia is a birthday bot (for now) designed by advtech.bots@gmail.com, it is mainly to be used by the Kennevo's Chaos Community Discord Server. Elysia is open source and can be found [here](https://giteas.fullmooncyberworks.com/advtech/Elysia) and [on GitHub](https://github.com/advtech/Elysia).

View File

@ -7,13 +7,13 @@ logging.basicConfig(
datefmt="%Y-%m-%d %H:%M:%S", datefmt="%Y-%m-%d %H:%M:%S",
) )
log_file = "logs/EONA.log" log_file = "logs/Elysia.log"
handler = RotatingFileHandler(log_file, maxBytes=1e6, backupCount=5) handler = RotatingFileHandler(log_file, maxBytes=1e6, backupCount=5)
formatter = logging.Formatter( formatter = logging.Formatter(
"%(asctime)s:%(levelname)s:%(name)s: %(message)s") "%(asctime)s:%(levelname)s:%(name)s: %(message)s")
handler.setFormatter(formatter) handler.setFormatter(formatter)
logger = logging.getLogger("EONA") logger = logging.getLogger("Elysia")
logger.addHandler(handler) logger.addHandler(handler)
logger.setLevel(logging.INFO) logger.setLevel(logging.INFO)

View File

@ -2,7 +2,7 @@ from config import config
import discord import discord
from logger import logger from logger import logger
logger.info("Starting EONA...") logger.info("Starting Elysia...")
TOKEN = config["TOKEN"] TOKEN = config["TOKEN"]

View File

@ -1,7 +1,7 @@
# Privacy Policy # Privacy Policy
## Introduction ## Introduction
Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **[Your Bot Name]**. By using the bot, you agree to the collection and use of information in accordance with this policy. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **Elysia**. By using the bot, you agree to the collection and use of information in accordance with this policy.
## Data We Collect ## Data We Collect

2
tos.md
View File

@ -1,7 +1,7 @@
# Terms of Service # Terms of Service
## Introduction ## Introduction
Welcome to **[Your Bot Name]**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully. Welcome to **Elysia**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully.
## Use of the Bot ## Use of the Bot
- **Compliance:** You agree to use the bot in compliance with all applicable laws and Discord's Terms of Service. - **Compliance:** You agree to use the bot in compliance with all applicable laws and Discord's Terms of Service.

View File

@ -11,7 +11,7 @@ from user_data.data_access import DataAccessManager
class Birthday: class Birthday:
def __init__(self, client): def __init__(self, client):
self.client = client self.client = client
self.db_path = "data/EONA.db" self.db_path = "data/Elysia.db"
self.logger = logger self.logger = logger
self.consent_manager = ConsentManager(self.db_path) self.consent_manager = ConsentManager(self.db_path)
self.data_access_manager = DataAccessManager(self.db_path) self.data_access_manager = DataAccessManager(self.db_path)