[codex] Add tweakcn UI theming#4
Draft
cwilson613 wants to merge 1 commit into
Draft
Conversation
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
There was a problem hiding this comment.
lipstyk found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
d35cea5 to
6de2677
Compare
| value.to_string() | ||
| } | ||
|
|
||
| #[cfg(test)] |
| }); | ||
| let operator_settings = current_runtime.omegon.load_operator_settings(); | ||
| let initial_theme = if operator_settings.ui_theme.active_theme.trim().is_empty() { | ||
| current_runtime.project.config.appearance.theme.clone() |
| let initial_theme = if operator_settings.ui_theme.active_theme.trim().is_empty() { | ||
| current_runtime.project.config.appearance.theme.clone() | ||
| } else { | ||
| operator_settings.ui_theme.active_theme.clone() |
| use_context_provider(|| Signal::new(current_runtime.project.config.appearance.font_size)); | ||
| use_context_provider(|| Signal::new(current_runtime.omegon.load_project_profile())); | ||
| use_context_provider(|| Signal::new(current_runtime.omegon.load_operator_settings())); | ||
| use_context_provider(|| Signal::new(operator_settings.clone())); |
| { | ||
| continue; | ||
| } | ||
| seen.insert(imported.id.clone()); |
| merged | ||
| } | ||
|
|
||
| fn complete_vars(vars: BTreeMap<String, String>) -> BTreeMap<String, String> { |
| } | ||
| } | ||
|
|
||
| fn inline_vars(theme: &UiTheme) -> String { |
| } | ||
| } | ||
|
|
||
| fn sanitize_id(value: &str) -> String { |
| let project = ctx.project(); | ||
| let omegon = ctx.omegon(); | ||
| let omegon_for_save = omegon.clone(); | ||
| let omegon_for_file_theme_import = omegon.clone(); |
| let omegon = ctx.omegon(); | ||
| let omegon_for_save = omegon.clone(); | ||
| let omegon_for_file_theme_import = omegon.clone(); | ||
| let omegon_for_remote_theme_import = omegon.clone(); |
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.
Summary
Adds registry-backed tweakcn UI theming for Flynt and bumps the workspace to
0.10.6.Changes
Validation
cargo check -p flynt-appcargo test -p flynt-app theme::cargo test -p flynt-core models::git diff --checkRelease
0.10.5to0.10.6.v0.10.6has been pushed to trigger the release workflow.