Skip to content

Commit

Permalink
Merge pull request #129 from lacmus-foundation/dev
Browse files Browse the repository at this point in the history
0.5.0
  • Loading branch information
gosha20777 authored Aug 13, 2021
2 parents 8cb75a9 + 96a51d7 commit 4fc9c5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/LacmusApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Company>Lacmus Foundation</Company>
<AssemblyVersion>0.5.0.1</AssemblyVersion>
<FileVersion>0.5.0.1</FileVersion>
<AssemblyVersion>0.5.0</AssemblyVersion>
<FileVersion>0.5.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Compile Update="**\*.xaml.cs">
Expand All @@ -27,7 +27,7 @@
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.6" />
<PackageReference Include="Citrus.Avalonia" Version="1.5.1" />
<PackageReference Include="Flurl" Version="3.0.2" />
<PackageReference Include="LacmusPlugin" Version="2.0.2" />
<PackageReference Include="LacmusPlugin" Version="2.0.3" />
<PackageReference Include="MessageBox.Avalonia" Version="1.5.1" />
<PackageReference Include="MetadataExtractor" Version="2.7.0" />
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="5.0.8" />
Expand Down
4 changes: 4 additions & 0 deletions src/Services/Plugin/PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ public PluginInfo(IObjectDetectionPlugin plugin)
public string Author { get; set; }
[JsonProperty("company")]
public string Company { get; set; }

[JsonProperty("dependences")]
public IEnumerable<string> Dependences { get; set; }

[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("version")]
Expand Down
2 changes: 1 addition & 1 deletion src/Views/MetadataWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<Border Classes="Card">
<StackPanel>
<TextBlock Grid.Row="0" TextWrapping="Wrap" Classes="Heading"
Text="{Binding LocalizationContext.WizardThirdModelRepository}" />
Text="{Binding LocalizationContext.MetadataHeader}" />

<StackPanel Grid.Row="1" Orientation="Horizontal">
<TextBlock FontWeight="Heavy" Text="{Binding LocalizationContext.MetadataLatitude}" />
Expand Down

0 comments on commit 4fc9c5c

Please sign in to comment.