├── .github ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── publish-release.yml │ ├── release-macos.yml │ ├── release-windows.yml │ └── semantic-pr-title.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── backend ├── api │ ├── cookies.go │ ├── dependencies.go │ ├── downtasks.go │ ├── llm.go │ ├── paths.go │ ├── subtitles.go │ └── utils.go ├── consts │ ├── browser.go │ ├── default.go │ ├── event.go │ ├── mirrors.go │ ├── names.go │ ├── subtitle_prompts.go │ └── task.go ├── core │ ├── downtasks │ │ ├── cookies.go │ │ ├── dependencyManager.go │ │ ├── service.go │ │ └── task.go │ ├── imageproxies │ │ └── service.go │ └── subtitles │ │ ├── analysis.go │ │ ├── batch_translate.go │ │ ├── conversation_sync.go │ │ ├── format.go │ │ ├── interfaces.go │ │ ├── language_detector.go │ │ ├── llm_chat_log.go │ │ ├── llm_translate.go │ │ ├── quality_assessor.go │ │ ├── service.go │ │ ├── text_processor.go │ │ └── zhconvert.go ├── embedded │ └── embedded.go ├── mcpserver │ ├── service.go │ └── ytdlp.go ├── pkg │ ├── browercookies │ │ ├── dependencyManager.go │ │ ├── interfaces.go │ │ ├── path.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ └── service.go │ ├── dependencies │ │ ├── downloader.go │ │ ├── downloader_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── interfaces.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── providers │ │ │ ├── base.go │ │ │ ├── ffmpeg.go │ │ │ ├── paths.go │ │ │ └── ytdlp.go │ │ ├── pushEvent.go │ │ ├── validator.go │ │ ├── validator_test.go │ │ ├── validator_unix.go │ │ └── validator_windows.go │ ├── downinfo │ │ └── downinfo.go │ ├── events │ │ ├── event.go │ │ └── events.go │ ├── logger │ │ ├── config.go │ │ ├── logger.go │ │ └── wails.go │ ├── provider │ │ ├── anthropic │ │ │ └── client.go │ │ ├── openai │ │ │ └── client.go │ │ ├── service.go │ │ └── usage.go │ ├── proxy │ │ ├── interfaces.go │ │ ├── manager.go │ │ ├── proxy.go │ │ ├── proxyEvents.go │ │ ├── proxy_others.go │ │ └── proxy_windows.go │ ├── rate │ │ └── limiter.go │ ├── textmetrics │ │ └── calculator.go │ ├── websockets │ │ └── service.go │ └── zhconvert │ │ ├── consts.go │ │ ├── types.go │ │ └── zhconvert.go ├── services │ ├── preferences │ │ ├── downinfo.go │ │ ├── paths.go │ │ ├── proxy.go │ │ └── service.go │ └── systems │ │ ├── open_default.go │ │ ├── open_windows.go │ │ └── service.go ├── storage │ ├── bbolt.go │ ├── localStorage.go │ ├── preferences.go │ └── providers.go ├── types │ ├── browsercookies.go │ ├── dependencies.go │ ├── downtasks.go │ ├── formats.go │ ├── glossary.go │ ├── imageproxies.go │ ├── jsResp.go │ ├── llm.go │ ├── preferences.go │ ├── subtitleFormats.go │ ├── subtitleOptions.go │ ├── subtitles.go │ ├── translate.go │ └── websocket.go └── utils │ ├── colls.go │ ├── constrains.go │ ├── slices.go │ ├── version.go │ ├── win_backdrop.go │ ├── win_backdrop_stub.go │ ├── win_elev.go │ └── win_elev_stub.go ├── frontend ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── package.json.md5 ├── postcss.config.js ├── scripts │ └── sync-open-symbols.mjs ├── src │ ├── App.vue │ ├── AppContent.vue │ ├── assets │ │ ├── images │ │ │ └── icon.png │ │ └── open-symbols │ │ │ ├── README.md │ │ │ ├── arrow-left-right.svg │ │ │ ├── captions.svg │ │ │ ├── check.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-download.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── database.svg │ │ │ ├── download.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye.svg │ │ │ ├── file-code.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-text.svg │ │ │ ├── filter-x.svg │ │ │ ├── filter.svg │ │ │ ├── flashlight.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── github.svg │ │ │ ├── globe.svg │ │ │ ├── heart.svg │ │ │ ├── home.svg │ │ │ ├── image.svg │ │ │ ├── info.svg │ │ │ ├── languages.svg │ │ │ ├── layers.svg │ │ │ ├── leaf.svg │ │ │ ├── link.svg │ │ │ ├── loader.svg │ │ │ ├── mail.svg │ │ │ ├── minus.svg │ │ │ ├── moon.svg │ │ │ ├── package.svg │ │ │ ├── panel-left-close.svg │ │ │ ├── panel-left-open.svg │ │ │ ├── panel-right-close.svg │ │ │ ├── panel-right-open.svg │ │ │ ├── panel-right.svg │ │ │ ├── pencil.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── refresh-cw.svg │ │ │ ├── search-check.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── shield-check.svg │ │ │ ├── square-arrow-out-up-right.svg │ │ │ ├── sun-moon.svg │ │ │ ├── sun.svg │ │ │ ├── terminal.svg │ │ │ ├── trash.svg │ │ │ ├── triangle-alert.svg │ │ │ ├── twitter.svg │ │ │ ├── video.svg │ │ │ ├── wrench.svg │ │ │ └── x.svg │ ├── components │ │ ├── base │ │ │ └── Icon.vue │ │ ├── chat │ │ │ ├── ChatMessageBubble.vue │ │ │ └── ChatMessageList.vue │ │ ├── common │ │ │ ├── BrowserChips.vue │ │ │ ├── DownloadOptions.vue │ │ │ ├── ModalTrafficLights.vue │ │ │ ├── ModePicker.vue │ │ │ ├── PopoverMenu.vue │ │ │ ├── ProxiedImage.vue │ │ │ ├── ToolbarControlWidget.vue │ │ │ ├── ToolbarTrafficLights.vue │ │ │ └── UrlCookiesBar.vue │ │ ├── download │ │ │ └── DownloadTaskCard.vue │ │ ├── inspector │ │ │ └── Inspector.vue │ │ ├── modal │ │ │ ├── AnalysisModal.vue │ │ │ ├── CookiesManagerModal.vue │ │ │ ├── CookiesSearchModal.vue │ │ │ ├── GlossaryTermsModal.vue │ │ │ ├── ManualCookiesModal.vue │ │ │ ├── ProfilesModal.vue │ │ │ ├── SubtitleAddLanguageModal.vue │ │ │ ├── SubtitleImportModal.vue │ │ │ ├── SubtitleLLMChatModal.vue │ │ │ ├── SubtitleMetricsModal.vue │ │ │ ├── SubtitlePickerModal.vue │ │ │ ├── TargetLanguageModal.vue │ │ │ └── VideoDownloadModal.vue │ │ ├── panels │ │ │ ├── CookiesPanel.vue │ │ │ ├── DownloadTaskPanel.vue │ │ │ ├── GlossaryPanel.vue │ │ │ ├── InspectorHomePanel.vue │ │ │ ├── ProfilesPanel.vue │ │ │ ├── SubtitleExportPanel.vue │ │ │ ├── SubtitleTasksPanel.vue │ │ │ └── TargetLanguagesPanel.vue │ │ ├── sidebar │ │ │ └── Ribbon.vue │ │ ├── subtitle │ │ │ ├── SubtitleDetailPanel.vue │ │ │ ├── SubtitleEditorShell.vue │ │ │ ├── SubtitleEditorToolbar.vue │ │ │ ├── SubtitleExportConfig.vue │ │ │ ├── SubtitleHub.vue │ │ │ └── SubtitleList.vue │ │ └── window-controls │ │ │ ├── WindowClose.vue │ │ │ ├── WindowMax.vue │ │ │ ├── WindowMin.vue │ │ │ └── WindowRestore.vue │ ├── consts │ │ ├── global.js │ │ └── websockets.js │ ├── icons │ │ └── registry.js │ ├── index.css │ ├── langs │ │ ├── en-us.json │ │ ├── index.js │ │ └── zh-cn.json │ ├── layouts │ │ └── AppLayout.vue │ ├── main.js │ ├── services │ │ ├── llmProviderService.js │ │ ├── subtitleService.js │ │ └── websocket.js │ ├── stores │ │ ├── dependencies.js │ │ ├── downloadTasks.js │ │ ├── inspector.js │ │ ├── layout.js │ │ ├── llm.js │ │ ├── logger.js │ │ ├── nav.js │ │ ├── preferences.js │ │ ├── settings.js │ │ ├── subtitle.js │ │ ├── subtitleTasks.js │ │ └── targetLanguages.js │ ├── styles │ │ ├── macos-components.scss │ │ ├── macos-tokens.scss │ │ ├── style.scss │ │ └── subtitle.scss │ ├── utils │ │ ├── autoSave.js │ │ ├── chatMarkdown.js │ │ ├── clipboard.js │ │ ├── discrete.js │ │ ├── eventBus.js │ │ ├── format.js │ │ ├── i18n.js │ │ ├── message.js │ │ ├── platform.js │ │ ├── telemetry.js │ │ ├── theme.js │ │ └── version.js │ └── views │ │ ├── DependencyPage.vue │ │ ├── DownloadPage.vue │ │ ├── ProvidersPage.vue │ │ ├── SettingsPage.vue │ │ ├── SubtitlePage.vue │ │ └── subtitle │ │ └── SubtitleHubView.vue ├── tailwind.config.js ├── vendor │ └── open-symbols │ │ └── .gitkeep └── vite.config.js ├── go.mod ├── go.sum ├── images └── download_page.png ├── main.go ├── scripts └── fetch-embedded-binaries.sh └── wails.json /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/workflows/release-macos.yml -------------------------------------------------------------------------------- /.github/workflows/release-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/workflows/release-windows.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.github/workflows/semantic-pr-title.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/README_en.md -------------------------------------------------------------------------------- /backend/api/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/cookies.go -------------------------------------------------------------------------------- /backend/api/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/dependencies.go -------------------------------------------------------------------------------- /backend/api/downtasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/downtasks.go -------------------------------------------------------------------------------- /backend/api/llm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/llm.go -------------------------------------------------------------------------------- /backend/api/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/paths.go -------------------------------------------------------------------------------- /backend/api/subtitles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/subtitles.go -------------------------------------------------------------------------------- /backend/api/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/api/utils.go -------------------------------------------------------------------------------- /backend/consts/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/browser.go -------------------------------------------------------------------------------- /backend/consts/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/default.go -------------------------------------------------------------------------------- /backend/consts/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/event.go -------------------------------------------------------------------------------- /backend/consts/mirrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/mirrors.go -------------------------------------------------------------------------------- /backend/consts/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/names.go -------------------------------------------------------------------------------- /backend/consts/subtitle_prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/subtitle_prompts.go -------------------------------------------------------------------------------- /backend/consts/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/consts/task.go -------------------------------------------------------------------------------- /backend/core/downtasks/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/downtasks/cookies.go -------------------------------------------------------------------------------- /backend/core/downtasks/dependencyManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/downtasks/dependencyManager.go -------------------------------------------------------------------------------- /backend/core/downtasks/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/downtasks/service.go -------------------------------------------------------------------------------- /backend/core/downtasks/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/downtasks/task.go -------------------------------------------------------------------------------- /backend/core/imageproxies/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/imageproxies/service.go -------------------------------------------------------------------------------- /backend/core/subtitles/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/analysis.go -------------------------------------------------------------------------------- /backend/core/subtitles/batch_translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/batch_translate.go -------------------------------------------------------------------------------- /backend/core/subtitles/conversation_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/conversation_sync.go -------------------------------------------------------------------------------- /backend/core/subtitles/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/format.go -------------------------------------------------------------------------------- /backend/core/subtitles/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/interfaces.go -------------------------------------------------------------------------------- /backend/core/subtitles/language_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/language_detector.go -------------------------------------------------------------------------------- /backend/core/subtitles/llm_chat_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/llm_chat_log.go -------------------------------------------------------------------------------- /backend/core/subtitles/llm_translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/llm_translate.go -------------------------------------------------------------------------------- /backend/core/subtitles/quality_assessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/quality_assessor.go -------------------------------------------------------------------------------- /backend/core/subtitles/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/service.go -------------------------------------------------------------------------------- /backend/core/subtitles/text_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/text_processor.go -------------------------------------------------------------------------------- /backend/core/subtitles/zhconvert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/core/subtitles/zhconvert.go -------------------------------------------------------------------------------- /backend/embedded/embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/embedded/embedded.go -------------------------------------------------------------------------------- /backend/mcpserver/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/mcpserver/service.go -------------------------------------------------------------------------------- /backend/mcpserver/ytdlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/mcpserver/ytdlp.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/dependencyManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/dependencyManager.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/interfaces.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/path.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/path_unix.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/path_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/path_windows.go -------------------------------------------------------------------------------- /backend/pkg/browercookies/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/browercookies/service.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/downloader.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/downloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/downloader_test.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/errors.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/errors_test.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/interfaces.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/manager.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/manager_test.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/providers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/providers/base.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/providers/ffmpeg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/providers/ffmpeg.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/providers/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/providers/paths.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/providers/ytdlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/providers/ytdlp.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/pushEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/pushEvent.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/validator.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/validator_test.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/validator_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/validator_unix.go -------------------------------------------------------------------------------- /backend/pkg/dependencies/validator_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/dependencies/validator_windows.go -------------------------------------------------------------------------------- /backend/pkg/downinfo/downinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/downinfo/downinfo.go -------------------------------------------------------------------------------- /backend/pkg/events/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/events/event.go -------------------------------------------------------------------------------- /backend/pkg/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/events/events.go -------------------------------------------------------------------------------- /backend/pkg/logger/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/logger/config.go -------------------------------------------------------------------------------- /backend/pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/logger/logger.go -------------------------------------------------------------------------------- /backend/pkg/logger/wails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/logger/wails.go -------------------------------------------------------------------------------- /backend/pkg/provider/anthropic/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/provider/anthropic/client.go -------------------------------------------------------------------------------- /backend/pkg/provider/openai/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/provider/openai/client.go -------------------------------------------------------------------------------- /backend/pkg/provider/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/provider/service.go -------------------------------------------------------------------------------- /backend/pkg/provider/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/provider/usage.go -------------------------------------------------------------------------------- /backend/pkg/proxy/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/interfaces.go -------------------------------------------------------------------------------- /backend/pkg/proxy/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/manager.go -------------------------------------------------------------------------------- /backend/pkg/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/proxy.go -------------------------------------------------------------------------------- /backend/pkg/proxy/proxyEvents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/proxyEvents.go -------------------------------------------------------------------------------- /backend/pkg/proxy/proxy_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/proxy_others.go -------------------------------------------------------------------------------- /backend/pkg/proxy/proxy_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/proxy/proxy_windows.go -------------------------------------------------------------------------------- /backend/pkg/rate/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/rate/limiter.go -------------------------------------------------------------------------------- /backend/pkg/textmetrics/calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/textmetrics/calculator.go -------------------------------------------------------------------------------- /backend/pkg/websockets/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/websockets/service.go -------------------------------------------------------------------------------- /backend/pkg/zhconvert/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/zhconvert/consts.go -------------------------------------------------------------------------------- /backend/pkg/zhconvert/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/zhconvert/types.go -------------------------------------------------------------------------------- /backend/pkg/zhconvert/zhconvert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/pkg/zhconvert/zhconvert.go -------------------------------------------------------------------------------- /backend/services/preferences/downinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/preferences/downinfo.go -------------------------------------------------------------------------------- /backend/services/preferences/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/preferences/paths.go -------------------------------------------------------------------------------- /backend/services/preferences/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/preferences/proxy.go -------------------------------------------------------------------------------- /backend/services/preferences/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/preferences/service.go -------------------------------------------------------------------------------- /backend/services/systems/open_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/systems/open_default.go -------------------------------------------------------------------------------- /backend/services/systems/open_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/systems/open_windows.go -------------------------------------------------------------------------------- /backend/services/systems/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/services/systems/service.go -------------------------------------------------------------------------------- /backend/storage/bbolt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/storage/bbolt.go -------------------------------------------------------------------------------- /backend/storage/localStorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/storage/localStorage.go -------------------------------------------------------------------------------- /backend/storage/preferences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/storage/preferences.go -------------------------------------------------------------------------------- /backend/storage/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/storage/providers.go -------------------------------------------------------------------------------- /backend/types/browsercookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/browsercookies.go -------------------------------------------------------------------------------- /backend/types/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/dependencies.go -------------------------------------------------------------------------------- /backend/types/downtasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/downtasks.go -------------------------------------------------------------------------------- /backend/types/formats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/formats.go -------------------------------------------------------------------------------- /backend/types/glossary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/glossary.go -------------------------------------------------------------------------------- /backend/types/imageproxies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/imageproxies.go -------------------------------------------------------------------------------- /backend/types/jsResp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/jsResp.go -------------------------------------------------------------------------------- /backend/types/llm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/llm.go -------------------------------------------------------------------------------- /backend/types/preferences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/preferences.go -------------------------------------------------------------------------------- /backend/types/subtitleFormats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/subtitleFormats.go -------------------------------------------------------------------------------- /backend/types/subtitleOptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/subtitleOptions.go -------------------------------------------------------------------------------- /backend/types/subtitles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/subtitles.go -------------------------------------------------------------------------------- /backend/types/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/translate.go -------------------------------------------------------------------------------- /backend/types/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/types/websocket.go -------------------------------------------------------------------------------- /backend/utils/colls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/colls.go -------------------------------------------------------------------------------- /backend/utils/constrains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/constrains.go -------------------------------------------------------------------------------- /backend/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/slices.go -------------------------------------------------------------------------------- /backend/utils/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/version.go -------------------------------------------------------------------------------- /backend/utils/win_backdrop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/win_backdrop.go -------------------------------------------------------------------------------- /backend/utils/win_backdrop_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/win_backdrop_stub.go -------------------------------------------------------------------------------- /backend/utils/win_elev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/win_elev.go -------------------------------------------------------------------------------- /backend/utils/win_elev_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/backend/utils/win_elev_stub.go -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/package.json.md5: -------------------------------------------------------------------------------- 1 | 9f92be734c4fa9fcd08ee9648d5dd4d6 -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/scripts/sync-open-symbols.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/scripts/sync-open-symbols.mjs -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/AppContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/AppContent.vue -------------------------------------------------------------------------------- /frontend/src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/images/icon.png -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/README.md -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/arrow-left-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/arrow-left-right.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/captions.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/check.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/chevron-down.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/chevron-up.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/clock.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/cloud-download.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/compass.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/copy.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/database.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/download.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/eye-off.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/eye.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/file-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/file-code.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/file-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/file-plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/file-text.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/filter-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/filter-x.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/filter.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/flashlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/flashlight.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/folder-open.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/folder.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/github.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/globe.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/heart.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/home.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/image.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/info.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/languages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/languages.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/layers.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/leaf.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/link.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/loader.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/mail.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/minus.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/moon.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/package.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/panel-left-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/panel-left-close.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/panel-left-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/panel-left-open.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/panel-right-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/panel-right-close.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/panel-right-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/panel-right-open.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/panel-right.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/pencil.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/play-circle.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/play.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/refresh-cw.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/search-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/search-check.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/search.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/settings.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/shield-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/shield-check.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/square-arrow-out-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/square-arrow-out-up-right.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/sun-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/sun-moon.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/sun.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/terminal.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/trash.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/triangle-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/triangle-alert.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/twitter.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/video.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/wrench.svg -------------------------------------------------------------------------------- /frontend/src/assets/open-symbols/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/assets/open-symbols/x.svg -------------------------------------------------------------------------------- /frontend/src/components/base/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/base/Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/ChatMessageBubble.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/chat/ChatMessageBubble.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/ChatMessageList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/chat/ChatMessageList.vue -------------------------------------------------------------------------------- /frontend/src/components/common/BrowserChips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/BrowserChips.vue -------------------------------------------------------------------------------- /frontend/src/components/common/DownloadOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/DownloadOptions.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ModalTrafficLights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/ModalTrafficLights.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ModePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/ModePicker.vue -------------------------------------------------------------------------------- /frontend/src/components/common/PopoverMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/PopoverMenu.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ProxiedImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/ProxiedImage.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ToolbarControlWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/ToolbarControlWidget.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ToolbarTrafficLights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/ToolbarTrafficLights.vue -------------------------------------------------------------------------------- /frontend/src/components/common/UrlCookiesBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/common/UrlCookiesBar.vue -------------------------------------------------------------------------------- /frontend/src/components/download/DownloadTaskCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/download/DownloadTaskCard.vue -------------------------------------------------------------------------------- /frontend/src/components/inspector/Inspector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/inspector/Inspector.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/AnalysisModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/AnalysisModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/CookiesManagerModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/CookiesManagerModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/CookiesSearchModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/CookiesSearchModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/GlossaryTermsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/GlossaryTermsModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/ManualCookiesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/ManualCookiesModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/ProfilesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/ProfilesModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/SubtitleAddLanguageModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/SubtitleAddLanguageModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/SubtitleImportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/SubtitleImportModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/SubtitleLLMChatModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/SubtitleLLMChatModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/SubtitleMetricsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/SubtitleMetricsModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/SubtitlePickerModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/SubtitlePickerModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/TargetLanguageModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/TargetLanguageModal.vue -------------------------------------------------------------------------------- /frontend/src/components/modal/VideoDownloadModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/modal/VideoDownloadModal.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/CookiesPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/CookiesPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/DownloadTaskPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/DownloadTaskPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/GlossaryPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/GlossaryPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/InspectorHomePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/InspectorHomePanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/ProfilesPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/ProfilesPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/SubtitleExportPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/SubtitleExportPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/SubtitleTasksPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/SubtitleTasksPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/panels/TargetLanguagesPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/panels/TargetLanguagesPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/sidebar/Ribbon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/sidebar/Ribbon.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleDetailPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleDetailPanel.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleEditorShell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleEditorShell.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleEditorToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleEditorToolbar.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleExportConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleExportConfig.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleHub.vue -------------------------------------------------------------------------------- /frontend/src/components/subtitle/SubtitleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/subtitle/SubtitleList.vue -------------------------------------------------------------------------------- /frontend/src/components/window-controls/WindowClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/window-controls/WindowClose.vue -------------------------------------------------------------------------------- /frontend/src/components/window-controls/WindowMax.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/window-controls/WindowMax.vue -------------------------------------------------------------------------------- /frontend/src/components/window-controls/WindowMin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/window-controls/WindowMin.vue -------------------------------------------------------------------------------- /frontend/src/components/window-controls/WindowRestore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/components/window-controls/WindowRestore.vue -------------------------------------------------------------------------------- /frontend/src/consts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/consts/global.js -------------------------------------------------------------------------------- /frontend/src/consts/websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/consts/websockets.js -------------------------------------------------------------------------------- /frontend/src/icons/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/icons/registry.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/langs/en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/langs/en-us.json -------------------------------------------------------------------------------- /frontend/src/langs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/langs/index.js -------------------------------------------------------------------------------- /frontend/src/langs/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/langs/zh-cn.json -------------------------------------------------------------------------------- /frontend/src/layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/layouts/AppLayout.vue -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/services/llmProviderService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/services/llmProviderService.js -------------------------------------------------------------------------------- /frontend/src/services/subtitleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/services/subtitleService.js -------------------------------------------------------------------------------- /frontend/src/services/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/services/websocket.js -------------------------------------------------------------------------------- /frontend/src/stores/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/dependencies.js -------------------------------------------------------------------------------- /frontend/src/stores/downloadTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/downloadTasks.js -------------------------------------------------------------------------------- /frontend/src/stores/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/inspector.js -------------------------------------------------------------------------------- /frontend/src/stores/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/layout.js -------------------------------------------------------------------------------- /frontend/src/stores/llm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/llm.js -------------------------------------------------------------------------------- /frontend/src/stores/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/logger.js -------------------------------------------------------------------------------- /frontend/src/stores/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/nav.js -------------------------------------------------------------------------------- /frontend/src/stores/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/preferences.js -------------------------------------------------------------------------------- /frontend/src/stores/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/settings.js -------------------------------------------------------------------------------- /frontend/src/stores/subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/subtitle.js -------------------------------------------------------------------------------- /frontend/src/stores/subtitleTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/subtitleTasks.js -------------------------------------------------------------------------------- /frontend/src/stores/targetLanguages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/stores/targetLanguages.js -------------------------------------------------------------------------------- /frontend/src/styles/macos-components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/styles/macos-components.scss -------------------------------------------------------------------------------- /frontend/src/styles/macos-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/styles/macos-tokens.scss -------------------------------------------------------------------------------- /frontend/src/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/styles/style.scss -------------------------------------------------------------------------------- /frontend/src/styles/subtitle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/styles/subtitle.scss -------------------------------------------------------------------------------- /frontend/src/utils/autoSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/autoSave.js -------------------------------------------------------------------------------- /frontend/src/utils/chatMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/chatMarkdown.js -------------------------------------------------------------------------------- /frontend/src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/clipboard.js -------------------------------------------------------------------------------- /frontend/src/utils/discrete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/discrete.js -------------------------------------------------------------------------------- /frontend/src/utils/eventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/eventBus.js -------------------------------------------------------------------------------- /frontend/src/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/format.js -------------------------------------------------------------------------------- /frontend/src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/i18n.js -------------------------------------------------------------------------------- /frontend/src/utils/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/message.js -------------------------------------------------------------------------------- /frontend/src/utils/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/platform.js -------------------------------------------------------------------------------- /frontend/src/utils/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/telemetry.js -------------------------------------------------------------------------------- /frontend/src/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/theme.js -------------------------------------------------------------------------------- /frontend/src/utils/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/utils/version.js -------------------------------------------------------------------------------- /frontend/src/views/DependencyPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/DependencyPage.vue -------------------------------------------------------------------------------- /frontend/src/views/DownloadPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/DownloadPage.vue -------------------------------------------------------------------------------- /frontend/src/views/ProvidersPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/ProvidersPage.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/SettingsPage.vue -------------------------------------------------------------------------------- /frontend/src/views/SubtitlePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/SubtitlePage.vue -------------------------------------------------------------------------------- /frontend/src/views/subtitle/SubtitleHubView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/src/views/subtitle/SubtitleHubView.vue -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/vendor/open-symbols/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/go.sum -------------------------------------------------------------------------------- /images/download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/images/download_page.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/main.go -------------------------------------------------------------------------------- /scripts/fetch-embedded-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/scripts/fetch-embedded-binaries.sh -------------------------------------------------------------------------------- /wails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoldhao/dreamcreator/HEAD/wails.json --------------------------------------------------------------------------------