Merged
Conversation
fix: comment out setup-environment step in alpha-release workflow
Added Mac Intel Build + Sentry debugging
Merge dev
merge dev
…low-like into feature/llm-exec-controls
merge dev
- Introduced a step-based approach for app creation in CreateAppPage. - Added StepNavigation component for back and next navigation. - Created StepIndicator for visual progress tracking. - Implemented individual step components: ConnectivityStep, AppDetailsStep, ReviewStep. - Removed CreationProgress component as its functionality is integrated into the new structure. - Enhanced code readability and maintainability by organizing related functionalities. - Updated Bit class to improve code formatting for better readability.
…-screen Refactor app creation process: Split into steps and improve navigation
merge dev
… media item management
…indicators - Improved thumbnail and icon upload handlers to include file type and size validation. - Added loading indicators during upload processes for better user feedback. - Updated UI components for thumbnail and icon uploads to display current images or placeholders. - Refactored code for better readability and maintainability. - Introduced a new BubbleActions component for enhanced action menus in the UI. - Updated relevant imports and exports to include the new BubbleActions component.
…te with existing node logic
…rity and runtime hardening
feat: update Entitlements.plist and tauri.conf.json for enhanced secu…
feat: enhance Entitlements.plist with additional security permissions
… tauri configuration
feat: remove unnecessary entitlements and disable hardened runtime in…
…app structure for clarity
feat: update sidebar navigation and add documentation link; refactor …
… and enable hardened runtime in tauri configuration
…le_type - Added `allow-bundle-type` and `deny-bundle-type` permissions to the default permission sets in both desktop-schema.json and macOS-schema.json. - Updated descriptions and markdown descriptions to reflect the new permissions. - Modified the CreateAppPage to redirect to "/library" instead of "/library/apps" after app creation.
feat: update permissions in desktop and macOS schemas to include bund…
… and email fetching - Introduced `mail` module with IMAP support, including connection handling and inbox management. - Implemented `ImapConnectNode` for establishing IMAP connections and caching sessions. - Added `ImapInboxNode` for wrapping IMAP mailboxes and listing available inboxes. - Created `ListMailsNode` to fetch email UIDs based on search filters. - Developed `FetchMailNode` to retrieve full email content, including headers and attachments. - Enhanced email handling with structured data types for emails, mail addresses, and attachments. - Updated `PinOptions` to include a sensitive flag for secure handling of sensitive data. - Adjusted Protobuf definitions to accommodate new fields in `PinOptions`. - Updated dependencies in `Cargo.toml` for compatibility with workspace features.
…and move operations And fixed the Windows initial freeze
... and virtual directories, compatible with all the other stores
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 improvements and refactors across the codebase, focusing on dependency management, image processing logic, CI workflows, and documentation. The most notable changes include moving image processing utilities to a shared crate, updating dependencies, adding a dedicated OpenCV build workflow, and enhancing the project documentation for clarity and onboarding.
Dependency and Image Processing Refactor
is_supported_image_format,resize_image,encode_as_webp) from local definitions inapps/backend/aws/media-transformer/src/event_handler.rsto the sharedflow-like-typescrate for better code reuse and maintainability. All usages in the media transformer now reference the shared crate. [1] [2] [3] [4]Cargo.toml, includingchrono,aws-config, andtokio, and added new dependencies for image processing (image,imageproc,webp,base64,ahash). These are now managed via workspace where possible for consistency. [1] [2] [3] [4]CI/CD and Build Workflow Enhancements
.github/workflows/opencv.ymlworkflow to automate building and packaging static OpenCV libraries for Linux, macOS, and Windows targets. This helps streamline cross-platform development and deployment of image processing features..github/actions/setup-environment/action.ymlto remove redundant or legacy packages, ensuring only required dependencies are installed for CI runs..github/workflows/alpha-release.ymlto consistently include the--verboseflag and simplified target specifications for various platforms, improving build transparency and debugging.Documentation and Onboarding
README.mdto better communicate Flow-Like’s features, ecosystem, and onboarding steps. The new documentation includes clearer quick start instructions, ecosystem overview, contribution guidelines, and visual galleries for improved user and developer experience.These changes collectively improve maintainability, developer experience, and cross-platform support for image processing and workflow automation in the project.