refactor: update comments to reflect modifications by AstralRinth

This commit is contained in:
2026-01-27 20:50:55 +03:00
parent 572800d9ca
commit e9bc01b0c7
21 changed files with 53 additions and 51 deletions

View File

@@ -23,7 +23,8 @@ pub(crate) async fn connect() -> crate::Result<Pool<Sqlite>> {
Ok(pool)
}
// [AR] Feature. Implement SQLite3 connection without SQLx migrations.
// This code is modified by AstralRinth
// Implement SQLite3 connection without SQLx migrations.
async fn connect_without_migrate() -> crate::Result<Pool<Sqlite>> {
let settings_dir = DirectoryInfo::get_initial_settings_dir().ok_or(
ErrorKind::FSError("Could not find valid config dir".to_string()),
@@ -72,7 +73,7 @@ async fn stale_data_cleanup(pool: &Pool<Sqlite>) -> crate::Result<()> {
Ok(())
}
/*
// [AR] Patch fix
// This code is modified by AstralRinth
Problem files, view detailed information in .gitattributes:
/packages/app-lib/migrations/20240711194701_init.sql !eol
CRLF -> 4c47e326f16f2b1efca548076ce638d4c90dd610172fe48c47d6de9bc46ef1c5abeadfdea05041ddd72c3819fa10c040

View File

@@ -22,7 +22,7 @@ pub struct DirectoryInfo {
impl DirectoryInfo {
// Get the settings directory
// init() is not needed for this function
// [AR] Patch fix. From PR.
// This code is modified by AstralRinth
pub fn get_initial_settings_dir() -> Option<PathBuf> {
Self::env_path("THESEUS_CONFIG_DIR").or_else(|| {
if std::env::current_dir().ok()?.join("portable.txt").exists() {

View File

@@ -1,17 +1,17 @@
// [AR] Feature
// This code is modified by AstralRinth
use std::{
sync::{atomic::AtomicBool, Arc},
time::{SystemTime, UNIX_EPOCH},
};
use discord_rich_presence::{
activity::{Activity, Assets, Timestamps}, // [AR] Feature
activity::{Activity, Assets, Timestamps}, // This code is modified by AstralRinth
DiscordIpc, DiscordIpcClient,
};
use rand::seq::SliceRandom; // [AR] Feature
use rand::seq::SliceRandom; // This code is modified by AstralRinth
use tokio::sync::RwLock;
use crate::util::utils; // [AR] Feature
use crate::util::utils; // This code is modified by AstralRinth
use crate::State;
pub struct DiscordGuard {

View File

@@ -179,7 +179,7 @@ pub async fn login_finish(
Ok(credentials)
}
// [AR] Feature
// This code is modified by AstralRinth
#[tracing::instrument]
pub async fn offline_auth(
name: &str,
@@ -209,7 +209,7 @@ pub async fn offline_auth(
Ok(credentials)
}
// [AR] Feature
// This code is modified by AstralRinth
#[tracing::instrument]
pub async fn elyby_auth(
uuid: Uuid,
@@ -237,7 +237,7 @@ pub async fn elyby_auth(
Ok(credentials)
}
/// [AR] • Feature
// This code is modified by AstralRinth
#[derive(Deserialize, Debug)]
pub enum AccountType {
Unknown,