Skip to content

Commit b3eb82a

Browse files
authored
Merge pull request #218 from Flow-Launcher/dev
Release 1.6.0 | Plugin 1.3.1
2 parents 8d6915a + 5f345e1 commit b3eb82a

File tree

80 files changed

+1358
-1308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1358
-1308
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,4 +300,8 @@ migrateToAutomaticPackageRestore.ps1
300300
*.pyc
301301
*.diagsession
302302
Output-Performance.txt
303-
*.diff
303+
*.diff
304+
305+
# vscode
306+
.vscode
307+
.history

Flow.Launcher.Core/Flow.Launcher.Core.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
<ItemGroup>
5656
<PackageReference Include="FSharp.Core" Version="4.7.1" />
5757
<PackageReference Include="squirrel.windows" Version="1.5.2" />
58-
<PackageReference Include="SharpZipLib" Version="1.2.0" />
5958
</ItemGroup>
6059

6160
<ItemGroup>

Flow.Launcher.Core/Plugin/PluginInstaller.cs

Lines changed: 0 additions & 169 deletions
This file was deleted.

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,6 @@ public static void InitializePlugins(IPublicAPI api)
133133
}
134134
}
135135

136-
public static void InstallPlugin(string path)
137-
{
138-
PluginInstaller.Install(path);
139-
}
140-
141136
public static List<PluginPair> ValidPluginsForQuery(Query query)
142137
{
143138
if (NonGlobalPlugins.ContainsKey(query.ActionKeyword))

Flow.Launcher.Core/Resource/Internationalization.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ public void ChangeLanguage(Language language)
8888
{
8989
language = language.NonNull();
9090

91-
Settings.Language = language.LanguageCode;
9291

9392
RemoveOldLanguageFiles();
9493
if (language != AvailableLanguages.English)
9594
{
9695
LoadLanguage(language);
9796
}
9897
UpdatePluginMetadataTranslations();
98+
Settings.Language = language.LanguageCode;
9999

100100
}
101101

0 commit comments

Comments
 (0)