Skip to content
Open
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d917e14
flight tracker regex check
julestheshiba Nov 12, 2025
b5af9ea
flight tracker started
julestheshiba Nov 12, 2025
cde4df3
flight tracker refactored and properly setup
julestheshiba Nov 13, 2025
8b2fd11
more flight tracker
julestheshiba Nov 23, 2025
d3f1dba
basic flight tracking
julestheshiba Nov 24, 2025
352f9ba
planeinfo command working
julestheshiba Nov 24, 2025
1b0e7f8
started flight progress
julestheshiba Nov 24, 2025
a8f6046
current version of flight tracker
julestheshiba Nov 26, 2025
16ca9e5
Add schema and fix config file finding.
coravacav Nov 27, 2025
f89eb64
Updated and fixed errors
julestheshiba Nov 27, 2025
c897916
flight tracker regex check
julestheshiba Nov 12, 2025
1bb08b9
flight tracker started
julestheshiba Nov 12, 2025
f6ef285
flight tracker refactored and properly setup
julestheshiba Nov 13, 2025
72fa72c
more flight tracker
julestheshiba Nov 23, 2025
e3030ba
basic flight tracking
julestheshiba Nov 24, 2025
16e9cf9
planeinfo command working
julestheshiba Nov 24, 2025
e1fa542
started flight progress
julestheshiba Nov 24, 2025
ae3b1c2
current version of flight tracker
julestheshiba Nov 26, 2025
2614a4b
Updated and fixed errors
julestheshiba Nov 27, 2025
b09a95e
Merge branch 'main' of https://github.com/julestheshiba/uofu-cs-disco…
julestheshiba Nov 27, 2025
dd8a452
switched to embed discord prints
julestheshiba Nov 27, 2025
c2167f2
bot working v1
julestheshiba Nov 27, 2025
40987e1
removed guild id
julestheshiba Nov 27, 2025
a79676f
removed local config
julestheshiba Nov 27, 2025
356553e
actually removed
julestheshiba Nov 27, 2025
660407e
added newline in Cargo.toml
julestheshiba Nov 27, 2025
bbb6032
moved airport lookup to if statement to reduce api calls
julestheshiba Nov 28, 2025
c54177f
removed log file
julestheshiba Nov 29, 2025
9651596
deleted
julestheshiba Nov 29, 2025
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
1 change: 0 additions & 1 deletion .cargo/config.toml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ db/
all_backups/

debug.json

# ignore local config files
.cargo/config.toml
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bot-lib = { path = 'bot-lib' }
bot-traits = { path = 'bot-traits' }
bot-db = { path = 'bot-db' }
rand = "0.9"
serde = { version = "1", default-features = false, features = ["derive", "rc"] }
serde = { version = "1", default-features = false, features = ["derive", "rc", "std"] }
itertools = "0.14"
notify = { version = "8", default-features = false, features = [
"macos_kqueue",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion bot-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ poise = { workspace = true }
tracing = { workspace = true }
bot-traits = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
bot-db = { workspace = true }
itertools = { workspace = true }
notify = { workspace = true }
Expand All @@ -20,6 +19,7 @@ chrono = "0.4"
toml = { default-features = false, version = "0.9", features = ["parse", "serde", "std"] }
regex = "1"
nom = "7"
serde = { workspace = true }
serde_with = { version = "3.7", features = ["chrono"] }
futures = "0.3"
parking_lot = "0.12"
Expand Down
2 changes: 2 additions & 0 deletions bot-lib/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ mod set_bot_role;
mod set_dog_role;
mod timeout;
mod yeet;
mod track_flight;

pub use admin::*;
pub use anon_notify::*;
Expand All @@ -37,6 +38,7 @@ pub use set_bot_role::*;
pub use set_dog_role::*;
pub use timeout::*;
pub use yeet::*;
pub use track_flight::*;

use crate::data::PoiseContext;
use color_eyre::eyre::{Context, ContextCompat, OptionExt, Result};
Expand Down
Loading