Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ OmegaBot is a modular Discord bot designed to support development projects with
- Configuration and feature gating via environment variables (optional features run only when enabled)
- Per-guild configuration backed by persistent storage and admin slash commands
- **Timezone support** – Save your timezone, view it later, and compare times across locations or users
- Now all storage uses SQLite for slash commands!

### Core commands

Expand Down Expand Up @@ -197,8 +198,7 @@ OmegaBot uses discord.js v14 which includes:
├── CHANGELOG.md
├── CONTRIBUTORS.md
├── data
│ ├── fun-usage.json
│ └── timezones.json
│ └── omegabot.db
├── docs
│ ├── commands.md
│ ├── dev-notes.md
Expand All @@ -220,11 +220,10 @@ OmegaBot uses discord.js v14 which includes:
│ ├── pull_request_template.md
│ └── workflows
│ └── OmegaBot.yml
├── github-caching-complete.sh
├── .gitignore
├── .husky
│ ├── pre-commit
│ └── pre-push
├── install-sqlite-simple.sh
├── LICENSE
├── package.json
├── package-lock.json
Expand Down Expand Up @@ -287,6 +286,8 @@ OmegaBot uses discord.js v14 which includes:
│ │ │ ├── guildConfigStore.ts
│ │ │ ├── index.ts
│ │ │ └── types.ts
│ │ ├── database
│ │ │ └── db.ts
│ │ ├── discord
│ │ │ ├── commandLoader.ts
│ │ │ ├── commandMeta.ts
Expand Down
Binary file added data/omegabot.db
Binary file not shown.
15 changes: 0 additions & 15 deletions data/timezones.json

This file was deleted.

Loading