Added Mac Intel Build + Sentry debugging#75
Merged
felix-schultz merged 2 commits intoalphafrom May 22, 2025
Merged
Conversation
- Added AI Menu Settings
|
Here's the code health analysis summary for commits Analysis Summary
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several updates across the codebase, focusing on workflow configuration, search functionality enhancements, dependency cleanup, and code simplifications. The most significant changes include improvements to the
SettingsPagesearch functionality, removal of thepandoc.tsscript and related dependencies, and updates to the GitHub Actions workflow for macOS compatibility.Enhancements to search functionality:
apps/desktop/app/settings/ai/page.tsx: Refactored the search functionality inSettingsPageto useuseMiniSearch, replacing the previous implementation with a more efficient and feature-rich approach. This includes fuzzy search, boosted fields, and dynamic updates to the search index. [1] [2] [3] [4] [5]Workflow updates:
.github/workflows/alpha-release.yml: Updated macOS platform specification tomacos-13for Intel-based Macs and adjusted the Rust target installation logic to account for the new platform identifier. [1] [2].github/workflows/alpha-release.yml: AddedSENTRY_AUTH_TOKENandPUBLIC_SENTRY_ENDPOINTsecrets to the workflow environment for integration with Sentry.Dependency cleanup:
apps/desktop/package.json: Removed thepandoc.tsscript frompostinstallandbuildcommands, reflecting the deprecation ofpandocas a dependency.apps/desktop/scripts/pandoc.ts: Fully removed thepandoc.tsscript, including its associated logic for downloading and extracting binaries.apps/desktop/src-tauri/tauri.conf.json: Removedpandocfrom theexternalBinconfiguration.Code simplifications:
packages/ui/components/flow/flow-board.tsx: Removed unusedfilteredNodesstate and the associatedMiniSearchlogic for node filtering, simplifying the component's state management. [1] [2]apps/desktop/app/settings/powered-by/page.tsx: Removed the entry for "Pandoc" from the list of powered-by dependencies.Sentry integration:
apps/desktop/next.config.mjs: Re-enabled Sentry configuration for source map uploads during builds, ensuring better error tracking and debugging capabilities.