Skip to content
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

Upgrade to .NET Framework Settings System #114

Merged
merged 22 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1658356
Inventory of reg keys and program variables
gbakeman Oct 5, 2023
41d3aa3
Initial work on Prefs upgrading dialog
gbakeman Oct 5, 2023
214a632
Tweaking how paths are handled
gbakeman Oct 8, 2023
79fa3f8
Initial creation of application settings files
gbakeman Oct 20, 2023
0dd0a90
Merge branch 'Dev-2.2' into 100-new-settings
gbakeman Oct 20, 2023
04a4a30
Small project config changes
gbakeman Oct 20, 2023
9b670fc
Upgrade DNF, remove extraneous settings
gbakeman Oct 22, 2023
1380e98
Settings tweak, new string resources
gbakeman Oct 22, 2023
2046dfc
Big Settings integration
gbakeman Oct 22, 2023
a70e2fc
Small solution-level modifications
gbakeman Nov 7, 2023
32aeb67
Common library changes
gbakeman Nov 7, 2023
1872adf
New resources, translations, tweaks
gbakeman Nov 7, 2023
1d6d5ff
Return to .Net Framework 4.8
gbakeman Nov 9, 2023
f318487
Setup tweaks
gbakeman Nov 9, 2023
69ff205
Fix 'nominal in frequency' setting reading in Pref_Gui
gbakeman Jan 27, 2024
b390c63
Handle converting null SerializedProtectedString to string
gbakeman Jan 31, 2024
9988ddb
Check for old preferences earlier in WinNUT startup procedure
gbakeman Jan 31, 2024
7753411
Parameter export & delete updates
gbakeman Jan 31, 2024
4a1ecca
Change to UpgradePrefsDialog_ErrorEncountered string
gbakeman Jan 31, 2024
23f3229
Final UpgradePrefsDialog tweaks
gbakeman Jan 31, 2024
4d9d9bb
Merge branch 'dev-2.3' into 100-new-settings
gbakeman Jan 31, 2024
381ebaa
Handle nominal input frequency calibration setting change
gbakeman Jan 31, 2024
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
36 changes: 34 additions & 2 deletions WinNUT_V2/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,19 @@ dotnet_naming_style.pascal_case_style.capitalization = pascal_case
# Use PascalCase for constant fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
dotnet_naming_symbols.constant_fields.required_modifiers = const
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_compound_assignment = true:suggestion
dotnet_style_prefer_simplified_interpolation = true:suggestion
dotnet_style_namespace_match_folder = true:suggestion
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
end_of_line = crlf
dotnet_style_allow_multiple_blank_lines_experimental = true:silent
dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
###############################
# C# Coding Conventions #
###############################
Expand Down Expand Up @@ -101,7 +110,7 @@ csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_case_contents = true
csharp_indent_switch_labels = true
csharp_indent_labels = flush_left
csharp_indent_labels = one_less_than_current
# Space preferences
csharp_space_after_cast = false
csharp_space_after_keywords_in_control_flow_statements = true
Expand All @@ -117,6 +126,29 @@ csharp_space_between_method_call_empty_parameter_list_parentheses = false
# Wrapping preferences
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = block_scoped:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
csharp_style_prefer_null_check_over_type_check = true:suggestion
csharp_style_prefer_local_over_anonymous_function = true:suggestion
csharp_style_prefer_index_operator = true:suggestion
csharp_style_prefer_range_operator = true:suggestion
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
csharp_style_prefer_tuple_swap = true:suggestion
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
csharp_prefer_static_local_function = true:suggestion
csharp_style_prefer_readonly_struct = true:suggestion
csharp_style_prefer_readonly_struct_member = true:suggestion
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
###############################
# VB Coding Conventions #
###############################
Expand Down
Loading
Loading