Skip to content

Fix JsonRPC Plugins Environment Issue & Improve Environment Selection #3407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 1, 2025

Conversation

Jack251970
Copy link
Contributor

@Jack251970 Jack251970 commented Apr 1, 2025

Fix theme select initialization issue

Issue from onesounds.

Screenshot 2025-03-31 185331

Fix application dispose issue

Follow on with #3093.

Because new message box api uses MessageBoxEx window, if it is created and closed before main window is created, it will cause the application to exit. So we should set ShutdownMode to OnExplicitShutdown to prevent the application from shutting down before main window is created.

Improve Environment Selection

If users' selected environment path is invalid, FL will prompt users to select the path again or download until they select a valid path or choose to download.

image

@Jack251970 Jack251970 added the Dev branch only An issue or fix for the Dev branch build label Apr 1, 2025
@prlabeler prlabeler bot added the bug Something isn't working label Apr 1, 2025
@Jack251970 Jack251970 requested a review from Copilot April 1, 2025 00:53
@Jack251970 Jack251970 requested a review from onesounds April 1, 2025 00:53
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR addresses issues related to theme selection initialization and application dispose behavior while also refining environment path handling.

  • Refactored ThemeSelector to use lazy initialization for the Theme dependency.
  • Updated App.xaml.cs to set the ShutdownMode to OnExplicitShutdown to prevent premature application exit.
  • Improved environment plugin configurations by updating translation calls, using static methods, and enhancing file path handling.

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs Refactors theme initialization by replacing the _theme field with a lazily initialized property.
Flow.Launcher/App.xaml.cs Adds explicit ShutdownMode setting to prevent unintended application exit.
Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs Refactors and streamlines translation calls, file dialogs, and file path operations.
Comments suppressed due to low confidence (1)

Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs:16

  • [nitpick] Consider renaming the private field 'theme' to a more explicit name (e.g., '_themeInstance') to clearly differentiate it from the property 'Theme'.
private Theme theme = null;

This comment has been minimized.

Copy link
Contributor

coderabbitai bot commented Apr 1, 2025

📝 Walkthrough

Walkthrough

This pull request introduces several modifications across multiple files. The AbstractPluginEnvironment class has reordered using directives, added comments for clarity, and made minor logic and formatting adjustments, including an update to the translation retrieval method and a method signature change. The App.xaml.cs file now explicitly sets the application's shutdown mode to prevent premature termination when using a custom message box. The ThemeSelector class has transitioned to lazy initialization for the theme instance, improving dependency management. Additional changes include the addition of a new string resource for user feedback.

Changes

File(s) Changes Summary
Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs - Reordered using directives
- Added comment in Setup method for clarity
- Updated translation method to use API.GetTranslation
- Reformatted conditionals and path handling logic
- Changed GetFileFromDialog to static
Flow.Launcher/App.xaml.cs - Added comment regarding MessageBoxEx lifecycle
- Set ShutdownMode to OnExplicitShutdown in OnStartup to control app shutdown
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs - Removed private readonly _theme field
- Introduced lazy initialization for Theme using dependency injection
- Updated property and method logic to utilize the new lazy pattern
Flow.Launcher/Languages/en.xaml - Added new string resource runtimeExecutableInvalidChooseDownload for user feedback on executable selection
Flow.Launcher.Core/ExternalPlugins/Environments/PythonEnvironment.cs - Added using directives for System.Collections.Generic and System.IO
- Refactored PluginsSettingsFilePath property to full definition
Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptEnvironment.cs - Reordered using directives
- Refactored PluginsSettingsFilePath property to full definition
Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptV2Environment.cs - Reordered using directives
- Refactored PluginsSettingsFilePath property to full definition
Flow.Launcher.Core/Plugin/PluginManager.cs - Reordered using directives
- Added using System.Text.Json for JSON handling

Suggested reviewers

  • taooceros
  • onesounds

Poem

I’m a rabbit in the code, light on my feet,
Hopping through changes, making logic neat.
Startup now delays a hasty goodbye,
Themes load lazily, as the services fly.
In this code garden, bugs retreat, oh so sweet!
🐇🌟


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6a2b349 and f9c1b6a.

📒 Files selected for processing (5)
  • Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs (8 hunks)
  • Flow.Launcher.Core/ExternalPlugins/Environments/PythonEnvironment.cs (2 hunks)
  • Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptEnvironment.cs (2 hunks)
  • Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptV2Environment.cs (2 hunks)
  • Flow.Launcher.Core/Plugin/PluginManager.cs (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • Flow.Launcher.Core/Plugin/PluginManager.cs
🚧 Files skipped from review as they are similar to previous changes (1)
  • Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
🔇 Additional comments (6)
Flow.Launcher.Core/ExternalPlugins/Environments/PythonEnvironment.cs (2)

1-2: Added necessary using directives.

Adding back the required namespaces for System.Collections.Generic and System.IO is appropriate since they are used directly in this file. List<PluginMetadata> needs the Collections.Generic namespace, and Path operations require the IO namespace.


25-29: Property implementation improved for clarity.

Changing from an expression-bodied member to a full property with explicit get and set accessors improves readability and maintainability while preserving the same functionality. This style is also consistent with similar changes in other environment classes.

Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptEnvironment.cs (2)

1-7: Improved organization of using directives.

The reordering of using directives follows a more logical pattern with system namespaces first, followed by project-specific ones. This enhances code readability and maintains consistency with other files in the project.


22-26: Enhanced property definition clarity.

Refactoring from an expression-bodied member to a full property with explicit get and set accessors improves readability without changing functionality. This change aligns with the PR objective of improving environment selection by making the code more maintainable.

Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptV2Environment.cs (2)

1-7: Improved organization of using directives.

The reordering follows the same pattern applied in TypeScriptEnvironment.cs, maintaining consistency across similar files in the project.


22-26: Enhanced property definition clarity.

The refactoring to a full property definition with explicit accessors is consistent with the changes in TypeScriptEnvironment.cs, ensuring a uniform approach across related environment classes. This improves code readability and maintainability without altering functionality.

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs (1)

36-36: Consider caching the themes list.

The Themes property now calls Theme.LoadAvailableThemes() on every access, which might be inefficient if this method is expensive or creates a new list each time. Consider caching the result in a field that's initialized on first access.

-private List<Theme.ThemeData> Themes => Theme.LoadAvailableThemes();
+private List<Theme.ThemeData> _themes;
+private List<Theme.ThemeData> Themes => _themes ??= Theme.LoadAvailableThemes();
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 0e4e95a and bf259dc.

📒 Files selected for processing (3)
  • Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs (8 hunks)
  • Flow.Launcher/App.xaml.cs (1 hunks)
  • Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs (1)
Learnt from: jjw24
PR: Flow-Launcher/Flow.Launcher#2448
File: Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs:16-20
Timestamp: 2025-03-30T07:42:06.567Z
Learning: In Flow Launcher's plugin system, the PluginInitContext parameter passed to plugin constructors is guaranteed to be non-null by the plugin initialization system, making null checks unnecessary.
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
🔇 Additional comments (11)
Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs (6)

1-12: Organized imports improve readability

The reorganization of the using directives improves code readability by grouping related imports together.


45-49: Improved code clarity with explanatory comment

Adding a comment to explain the purpose of the conditional check improves code clarity. The consistent formatting of the conditional block also enhances readability.


61-62: Good practice: using API.GetTranslation instead of singleton

Switching from InternationalizationManager.Instance.GetTranslation to API.GetTranslation is a better approach as it leverages dependency injection rather than relying on a singleton. This improves testability and adheres to better architectural practices.

Also applies to: 68-68, 88-88


126-126: Correctly marked method as static

Making GetFileFromDialog static is appropriate since it doesn't use any instance members. This follows the principle that methods not accessing instance state should be static.


201-201: Improved path handling with Path.Combine

Using Path.Combine for path construction is a good practice as it ensures proper handling of path separators across different platforms.


218-218: Modern C# syntax for substring extraction

Using the C# range operator (..) for substring extraction is more concise and readable than the traditional substring method.

Flow.Launcher/App.xaml.cs (1)

141-144: Good fix for premature application shutdown issue.

The explicit setting of ShutdownMode.OnExplicitShutdown addresses the issue where the application exits unexpectedly when a message box is created and closed before the main window. This aligns with the PR objective to fix the application disposal issue mentioned in the PR description.

Just ensure that the application is properly shutdown elsewhere in the codebase when needed. The current implementation using exit event handlers in RegisterExitEvents() method seems to handle this correctly.

Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs (4)

14-17: Good improvement to theme initialization logic.

The lazy initialization pattern prevents potential null reference exceptions during application startup, addressing the theme select initialization issue mentioned in the PR objectives. By deferring theme initialization until it's actually needed, you avoid the issue when Application.Current.Resources.MergedDictionaries might not be fully initialized.


26-26: LGTM - Updated to use new Theme property.

Correctly updated to use the lazily initialized Theme property.


30-30: LGTM - Updated to use new Theme property.

Correctly updated to use the lazily initialized Theme property.


32-32: LGTM - Updated to use new Theme property.

Correctly updated to use the lazily initialized Theme property.

@Jack251970 Jack251970 changed the title Fix JsonRPC Plugins Environment Issue Fix JsonRPC Plugins Environment Issue & Improve Environment Selection Apr 1, 2025

This comment has been minimized.

@Jack251970 Jack251970 added enhancement New feature or request kind/ui related to UI, icons, themes, etc and removed bug Something isn't working labels Apr 1, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
Flow.Launcher/Languages/en.xaml (1)

12-16: Fix typo in the new string resource.

There's a typo in the message: "agian" should be "again" in line 15.

- Click yes if you would like select the {0} executable agian. Click no if you would like to download {1}
+ Click yes if you would like select the {0} executable again. Click no if you would like to download {1}

Additionally, there's a slight grammar issue - "would like select" should be "would like to select".

- Click yes if you would like select the {0} executable again. Click no if you would like to download {1}
+ Click yes if you would like to select the {0} executable again. Click no if you would like to download {1}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between bf259dc and 6a2b349.

📒 Files selected for processing (2)
  • Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs (8 hunks)
  • Flow.Launcher/Languages/en.xaml (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm

@prlabeler prlabeler bot added the bug Something isn't working label Apr 1, 2025
@Jack251970 Jack251970 removed the bug Something isn't working label Apr 1, 2025
@Jack251970 Jack251970 requested a review from Copilot April 1, 2025 01:32
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR fixes issues related to theme initialization and application disposal and enhances the environment selection process for external plugins. Key changes include:

  • Delaying theme initialization in ThemeSelector.cs via lazy instantiation.
  • Preventing premature application shutdown in App.xaml.cs by setting ShutdownMode to OnExplicitShutdown.
  • Improving file path handling and user prompts for environment selection in AbstractPluginEnvironment.cs.

Reviewed Changes

Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.

File Description
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs Uses lazy instantiation for Theme to avoid null reference issues.
Flow.Launcher/App.xaml.cs Sets ShutdownMode to OnExplicitShutdown to prevent application exit due to early message box disposal.
Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs Refactors file dialog handling and environment path updates, and improves user prompt loop logic.
Files not reviewed (1)
  • Flow.Launcher/Languages/en.xaml: Language not supported
Comments suppressed due to low confidence (1)

Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs:252

  • [nitpick] Variable 'ExecutablePathSubstring' does not follow typical C# camelCase conventions. Consider renaming it to 'executablePathSubstring'.
var ExecutablePathSubstring = filePath[(index + DataLocation.PluginEnvironments.Length)..];

@prlabeler prlabeler bot added the bug Something isn't working label Apr 1, 2025

This comment has been minimized.

@Jack251970 Jack251970 requested a review from Copilot April 1, 2025 01:58
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR addresses three issues: fixing a theme selection initialization bug, preventing premature application shutdown by setting an explicit shutdown mode, and improving the environment selection workflow for plugins by prompting or downloading a valid executable path.

  • Fixes a null reference issue in theme initialization by deferring Theme retrieval via lazy loading.
  • Prevents the application from exiting before the main window is created by setting ShutdownMode to OnExplicitShutdown.
  • Enhances the environment selection process within plugin environments by refining file path management and user prompts.

Reviewed Changes

Copilot reviewed 7 out of 8 changed files in this pull request and generated no comments.

Show a summary per file
File Description
Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs Refactors theme initialization to lazy-load the Theme service and updates theme-related method calls.
Flow.Launcher/App.xaml.cs Sets ShutdownMode to OnExplicitShutdown to resolve premature application disposal.
Flow.Launcher.Core/Plugin/PluginManager.cs Reorders using directives and consolidates dependency injections.
Flow.Launcher.Core/ExternalPlugins/Environments/*.cs Updates PluginsSettingsFilePath properties and refines file path handling and user prompts.
Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs Improves the environment setup flow and updates error messaging to use the new API translations.
Files not reviewed (1)
  • Flow.Launcher/Languages/en.xaml: Language not supported
Comments suppressed due to low confidence (2)

Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs:16

  • [nitpick] Consider renaming the private field 'theme' to something like '_themeInstance' to clearly differentiate it from the public property 'Theme'.
private Theme theme = null;

Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs:252

  • Consider checking that 'index' is not -1 before using the range operator for substring extraction to avoid potential exceptions if the expected substring is not found in filePath.
var executablePathSubstring = filePath[(index + DataLocation.PluginEnvironments.Length)..];

Copy link

github-actions bot commented Apr 1, 2025

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors Count
❌ forbidden-pattern 22
⚠️ non-alpha-in-dictionary 19

See ❌ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

@Jack251970 Jack251970 removed the bug Something isn't working label Apr 1, 2025
@Jack251970 Jack251970 merged commit ee662ab into Flow-Launcher:dev Apr 1, 2025
6 checks passed
@coderabbitai coderabbitai bot mentioned this pull request Apr 2, 2025
@jjw24 jjw24 removed the Dev branch only An issue or fix for the Dev branch build label Apr 5, 2025
@jjw24 jjw24 added this to the 1.20.0 milestone Apr 5, 2025
Copy link

gitstream-cm bot commented Apr 5, 2025

🥷 Code experts: jjw24

Jack251970 has most 👩‍💻 activity in the files.
Jack251970, jjw24 have most 🧠 knowledge in the files.

See details

Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs

Activity based on git-commit:

Jack251970
APR 39 additions & 5 deletions
MAR 24 additions & 26 deletions
FEB 8 additions & 4 deletions
JAN 10 additions & 7 deletions
DEC
NOV 6 additions & 6 deletions

Knowledge based on git-blame:
jjw24: 41%
Jack251970: 28%

Flow.Launcher.Core/ExternalPlugins/Environments/PythonEnvironment.cs

Activity based on git-commit:

Jack251970
APR 8 additions & 4 deletions
MAR
FEB
JAN 2 additions & 2 deletions
DEC
NOV 1 additions & 1 deletions

Knowledge based on git-blame:
jjw24: 60%
Jack251970: 17%

Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptEnvironment.cs

Activity based on git-commit:

Jack251970
APR 8 additions & 4 deletions
MAR
FEB
JAN 2 additions & 2 deletions
DEC
NOV 1 additions & 1 deletions

Knowledge based on git-blame:
jjw24: 58%
Jack251970: 19%

Flow.Launcher.Core/ExternalPlugins/Environments/TypeScriptV2Environment.cs

Activity based on git-commit:

Jack251970
APR 8 additions & 4 deletions
MAR
FEB
JAN 2 additions & 2 deletions
DEC
NOV 1 additions & 1 deletions

Knowledge based on git-blame:
Jack251970: 19%

Flow.Launcher.Core/Plugin/PluginManager.cs

Activity based on git-commit:

Jack251970
APR 5 additions & 6 deletions
MAR 42 additions & 37 deletions
FEB 276 additions & 198 deletions
JAN 5 additions & 5 deletions
DEC
NOV 1 additions & 1 deletions

Knowledge based on git-blame:
Jack251970: 20%
jjw24: 3%

Flow.Launcher/App.xaml.cs

Activity based on git-commit:

Jack251970
APR 13 additions & 0 deletions
MAR 168 additions & 94 deletions
FEB 79 additions & 40 deletions
JAN 86 additions & 66 deletions
DEC
NOV

Knowledge based on git-blame:
Jack251970: 62%
jjw24: 5%

Flow.Launcher/Languages/en.xaml

Activity based on git-commit:

Jack251970
APR 9 additions & 1 deletions
MAR 67 additions & 42 deletions
FEB 15 additions & 9 deletions
JAN 1 additions & 0 deletions
DEC
NOV

Knowledge based on git-blame:
Jack251970: 10%
jjw24: 7%

Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs

Activity based on git-commit:

Jack251970
APR
MAR 141 additions & 120 deletions
FEB
JAN
DEC
NOV

Knowledge based on git-blame:
Jack251970: 58%

To learn more about /:\ gitStream - Visit our Docs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request kind/ui related to UI, icons, themes, etc
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants