Skip to content

Commit e4621a5

Browse files
Fix calculator typo
1 parent 27392a5 commit e4621a5

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

Plugins/Flow.Launcher.Plugin.Calculator/DecimalSeparator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.ComponentModel;
22
using Flow.Launcher.Core.Resource;
33

4-
namespace Flow.Launcher.Plugin.Caculator
4+
namespace Flow.Launcher.Plugin.Calculator
55
{
66
[TypeConverter(typeof(LocalizationConverter))]
77
public enum DecimalSeparator

Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<TargetFramework>net7.0-windows</TargetFramework>
66
<ProjectGuid>{59BD9891-3837-438A-958D-ADC7F91F6F7E}</ProjectGuid>
77
<AppDesignerFolder>Properties</AppDesignerFolder>
8-
<RootNamespace>Flow.Launcher.Plugin.Caculator</RootNamespace>
9-
<AssemblyName>Flow.Launcher.Plugin.Caculator</AssemblyName>
8+
<RootNamespace>Flow.Launcher.Plugin.Calculator</RootNamespace>
9+
<AssemblyName>Flow.Launcher.Plugin.Calculator</AssemblyName>
1010
<UseWPF>true</UseWPF>
1111
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

Plugins/Flow.Launcher.Plugin.Calculator/Main.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
using System.Windows;
77
using System.Windows.Controls;
88
using Mages.Core;
9-
using Flow.Launcher.Plugin.Caculator.ViewModels;
10-
using Flow.Launcher.Plugin.Caculator.Views;
9+
using Flow.Launcher.Plugin.Calculator.ViewModels;
10+
using Flow.Launcher.Plugin.Calculator.Views;
1111

12-
namespace Flow.Launcher.Plugin.Caculator
12+
namespace Flow.Launcher.Plugin.Calculator
1313
{
1414
public class Main : IPlugin, IPluginI18n, ISettingProvider
1515
{

Plugins/Flow.Launcher.Plugin.Calculator/NumberTranslator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Text;
33
using System.Text.RegularExpressions;
44

5-
namespace Flow.Launcher.Plugin.Caculator
5+
namespace Flow.Launcher.Plugin.Calculator
66
{
77
/// <summary>
88
/// Tries to convert all numbers in a text from one culture format to another.

Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
namespace Flow.Launcher.Plugin.Caculator
2+
namespace Flow.Launcher.Plugin.Calculator
33
{
44
public class Settings
55
{

Plugins/Flow.Launcher.Plugin.Calculator/ViewModels/SettingsViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Linq;
33

4-
namespace Flow.Launcher.Plugin.Caculator.ViewModels
4+
namespace Flow.Launcher.Plugin.Calculator.ViewModels
55
{
66
public class SettingsViewModel : BaseModel
77
{

Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<UserControl
2-
x:Class="Flow.Launcher.Plugin.Caculator.Views.CalculatorSettings"
2+
x:Class="Flow.Launcher.Plugin.Calculator.Views.CalculatorSettings"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5-
xmlns:calculator="clr-namespace:Flow.Launcher.Plugin.Caculator"
5+
xmlns:calculator="clr-namespace:Flow.Launcher.Plugin.Calculator"
66
xmlns:core="clr-namespace:Flow.Launcher.Core.Resource;assembly=Flow.Launcher.Core"
77
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
88
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
99
xmlns:ui="clr-namespace:Flow.Launcher.Infrastructure.UI;assembly=Flow.Launcher.Infrastructure"
10-
xmlns:viewModels="clr-namespace:Flow.Launcher.Plugin.Caculator.ViewModels"
10+
xmlns:viewModels="clr-namespace:Flow.Launcher.Plugin.Calculator.ViewModels"
1111
d:DesignHeight="450"
1212
d:DesignWidth="800"
1313
Loaded="CalculatorSettings_Loaded"

Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Windows;
22
using System.Windows.Controls;
3-
using Flow.Launcher.Plugin.Caculator.ViewModels;
3+
using Flow.Launcher.Plugin.Calculator.ViewModels;
44

5-
namespace Flow.Launcher.Plugin.Caculator.Views
5+
namespace Flow.Launcher.Plugin.Calculator.Views
66
{
77
/// <summary>
88
/// Interaction logic for CalculatorSettings.xaml

Plugins/Flow.Launcher.Plugin.Calculator/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"Version": "3.1.1",
88
"Language": "csharp",
99
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
10-
"ExecuteFileName": "Flow.Launcher.Plugin.Caculator.dll",
10+
"ExecuteFileName": "Flow.Launcher.Plugin.Calculator.dll",
1111
"IcoPath": "Images\\calculator.png"
1212
}

0 commit comments

Comments
 (0)