Skip to content

Commit

Permalink
Merge pull request #218 from Flow-Launcher/dev
Browse files Browse the repository at this point in the history
Release 1.6.0 | Plugin 1.3.1
  • Loading branch information
jjw24 authored Dec 31, 2020
2 parents 8d6915a + 5f345e1 commit b3eb82a
Show file tree
Hide file tree
Showing 80 changed files with 1,358 additions and 1,308 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -300,4 +300,8 @@ migrateToAutomaticPackageRestore.ps1
*.pyc
*.diagsession
Output-Performance.txt
*.diff
*.diff

# vscode
.vscode
.history
1 change: 0 additions & 1 deletion Flow.Launcher.Core/Flow.Launcher.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.7.1" />
<PackageReference Include="squirrel.windows" Version="1.5.2" />
<PackageReference Include="SharpZipLib" Version="1.2.0" />
</ItemGroup>

<ItemGroup>
Expand Down
169 changes: 0 additions & 169 deletions Flow.Launcher.Core/Plugin/PluginInstaller.cs

This file was deleted.

5 changes: 0 additions & 5 deletions Flow.Launcher.Core/Plugin/PluginManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,6 @@ public static void InitializePlugins(IPublicAPI api)
}
}

public static void InstallPlugin(string path)
{
PluginInstaller.Install(path);
}

public static List<PluginPair> ValidPluginsForQuery(Query query)
{
if (NonGlobalPlugins.ContainsKey(query.ActionKeyword))
Expand Down
2 changes: 1 addition & 1 deletion Flow.Launcher.Core/Resource/Internationalization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ public void ChangeLanguage(Language language)
{
language = language.NonNull();

Settings.Language = language.LanguageCode;

RemoveOldLanguageFiles();
if (language != AvailableLanguages.English)
{
LoadLanguage(language);
}
UpdatePluginMetadataTranslations();
Settings.Language = language.LanguageCode;

}

Expand Down
Loading

0 comments on commit b3eb82a

Please sign in to comment.