Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
920162f
Use Flow.Launcher.Localization to improve code quality
Jack251970 Sep 21, 2025
343b65c
Merge dev branch
Jack251970 Sep 21, 2025
62abf67
Code cleanup
Jack251970 Sep 23, 2025
6b5e20b
Improve code quality
Jack251970 Sep 23, 2025
071914e
Improve code quality
Jack251970 Sep 23, 2025
479d665
Use internal static Context & Improve code quality
Jack251970 Sep 23, 2025
a3ee3ec
Use Flow.Launcher.Localization to improve code quality
Jack251970 Sep 23, 2025
26ec51c
Code cleanup
Jack251970 Sep 23, 2025
e286143
Use Flow.Launcher.Localization to improve code quality
Jack251970 Sep 23, 2025
5c1c6e9
Improve code quality
Jack251970 Sep 23, 2025
a9364cb
Improve code quality
Jack251970 Sep 23, 2025
41200b8
Use Flow.Launcher.Localization to improve code quality
Jack251970 Sep 23, 2025
2234ed1
Merge branch 'dev' into flow_launcher_localization
Jack251970 Sep 23, 2025
d20dacc
Fix logic issue
Jack251970 Sep 23, 2025
163af5c
Fix the variable name typo
Jack251970 Sep 23, 2025
dad5f5a
Fix redundant boolean cast and ensure consistent default value handling
Jack251970 Sep 23, 2025
af1d11a
Use Flow.Launcher.Localization to improve code quality
Jack251970 Sep 23, 2025
017e1bd
Revert namespace styles
Jack251970 Sep 23, 2025
979f75e
Fix indent format
Jack251970 Sep 23, 2025
d73dedc
Revert namespace style
Jack251970 Sep 23, 2025
0fbfad0
Fix indent format
Jack251970 Sep 23, 2025
e4b8f12
Fix namespace style
Jack251970 Sep 23, 2025
087a169
Fix indent format
Jack251970 Sep 23, 2025
14a0a17
Fix indent format
Jack251970 Sep 23, 2025
742caf2
Merge branch 'dev' into flow_launcher_localization
VictoriousRaptor Sep 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions Plugins/Flow.Launcher.Plugin.Calculator/DecimalSeparator.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
using Flow.Launcher.Localization.Attributes;

namespace Flow.Launcher.Plugin.Calculator
namespace Flow.Launcher.Plugin.Calculator;

[EnumLocalize]
public enum DecimalSeparator
Copy link
Contributor

Choose a reason for hiding this comment

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

Personally I don't like a change like this. It just removes braces and indent and messes up commit history.

Copy link
Member Author

@Jack251970 Jack251970 Sep 23, 2025

Choose a reason for hiding this comment

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

Personally I don't like a change like this. It just removes braces and indent and messes up commit history.

That makes sense. Let us revert it.

Copy link
Member Author

Choose a reason for hiding this comment

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

@VictoriousRaptor All related namespaces are reverted

{
[EnumLocalize]
public enum DecimalSeparator
{
[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_use_system_locale))]
UseSystemLocale,

[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_dot))]
Dot,

[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_comma))]
Comma
}
[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_use_system_locale))]
UseSystemLocale,

[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_dot))]
Dot,

[EnumLocalizeKey(nameof(Localize.flowlauncher_plugin_calculator_decimal_separator_comma))]
Comma
}
Loading
Loading