feat: complete release preparation, 10+ ad mediation, CI/CD, and docker deployment
Some checks failed
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / deploy (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Release & Packaging Pipeline / Build & Publish Admin Docker Image (push) Failing after 8s
Release & Code Signing CA Pipeline / build-and-sign-windows (push) Failing after 1m51s
Build macOS / Build & Package (macOS) (push) Failing after 4s
Build macOS / Build & Package (macOS)-1 (push) Failing after 5s
Release & Code Signing CA Pipeline / build-and-sign-macos (push) Failing after 3s
Release & Packaging Pipeline / Package macOS Desktop App (push) Failing after 4s
Release & Packaging Pipeline / Package Windows Desktop App (push) Failing after 2m28s
Release & Packaging Pipeline / Publish Official GitHub Release (push) Has been skipped

This commit is contained in:
Yun Chan 2026-08-20 11:12:05 +09:00
parent 5cd1de6859
commit 708e20f747
406 changed files with 42464 additions and 6199 deletions

36
apps/desktop/dedup.cjs Normal file
View file

@ -0,0 +1,36 @@
const fs = require('fs');
const files = [
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\AppLayout.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\FileDropZone.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\HotkeyRecordModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\LicenseModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\LicenseTab.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\OllamaGuideModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\OnboardingModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\ProBadge.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\SettingsModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\StatusBar.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\TemplateSection.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\TitleBar.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\UpgradePromptModal.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\meeting\\AddDocumentDialog.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\meeting\\ExportMenu.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\meeting\\MarkdownEditor.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\meeting\\MarkdownRenderer.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\meeting\\MeetingChatPanel.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\components\\shared\\HistoryEntryCard.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\pages\\CommandsPage.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\pages\\DashboardPage.tsx",
"d:\\workspace\\D3ROVoice\\apps\\desktop\\src\\renderer\\pages\\HistoryPage.tsx"
];
files.forEach(file => {
let content = fs.readFileSync(file, 'utf8');
const importRegex = /import\s+\{([^}]*)\}\s+from\s+['"]@d3ro\/ui\/theme['"]/;
content = content.replace(importRegex, (match, p1) => {
const tokens = p1.split(',').map(s => s.trim()).filter(s => s.length > 0);
const unique = Array.from(new Set(tokens));
return `import { ${unique.join(', ')} } from '@d3ro/ui/theme'`;
});
fs.writeFileSync(file, content, 'utf8');
});
console.log('done');