feat: rebrand from Dyad to MoreMinimore

- Update package.json description to reflect new branding
- Add fix_chat_input function to update Pro URL references
- Rename all Dyad-related functions and tags to MoreMinimore
- Update test files to use new function names
- Remove Pro restrictions from Annotator component
- Update branding text throughout the application
This commit is contained in:
Kunthawat Greethong
2025-12-19 17:26:32 +07:00
parent 6bb756fdd7
commit 29248688f3
68 changed files with 544 additions and 1435 deletions

View File

@@ -4,7 +4,7 @@ import { registerIpcHandlers } from "./ipc/ipc_host";
import dotenv from "dotenv";
// @ts-ignore
import started from "electron-squirrel-startup";
// import { updateElectronApp, UpdateSourceType } from "update-electron-app"; // Removed - Dyad API dependency
// import { updateElectronApp, UpdateSourceType } from "update-electron-app"; // Removed - MoreMinimore API dependency
import log from "electron-log";
import {
getSettingsFilePath,
@@ -12,7 +12,7 @@ import {
writeSettings,
} from "./main/settings";
import { handleSupabaseOAuthReturn } from "./supabase_admin/supabase_return_handler";
import { handleDyadProReturn } from "./main/pro";
import { handleMoreMinimoreProReturn } from "./main/pro";
import { IS_TEST_BUILD } from "./ipc/utils/test_utils";
import { BackupManager } from "./backup_manager";
import { getDatabasePath, initializeDatabase } from "./db";
@@ -107,8 +107,8 @@ export async function onReady() {
await onFirstRunMaybe(settings);
createWindow();
logger.info("Auto-update disabled - removed Dyad API dependency");
// Auto-update functionality removed to eliminate Dyad API dependency
logger.info("Auto-update disabled - removed MoreMinimore API dependency");
// Auto-update functionality removed to eliminate MoreMinimore API dependency
// Users can manually update by downloading new releases from GitHub
}
@@ -356,7 +356,7 @@ function handleDeepLinkReturn(url: string) {
dialog.showErrorBox("Invalid URL", "Expected key");
return;
}
handleDyadProReturn({
handleMoreMinimoreProReturn({
apiKey,
});
// Send message to renderer to trigger re-render