Skip to content

Commit

Permalink
Merge branch 'eesast:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ONLOX authored Apr 20, 2024
2 parents 1d71444 + e858be3 commit d79d608
Show file tree
Hide file tree
Showing 8 changed files with 179 additions and 511 deletions.
2 changes: 1 addition & 1 deletion CAPI/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
grpcio==1.62.1
grpcio==1.62.2
grpcio-tools==1.54.2
numpy
2 changes: 1 addition & 1 deletion CAPI/python_exp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
grpcio==1.54.2
grpcio==1.62.2
grpcio-tools==1.54.2
numpy
16 changes: 15 additions & 1 deletion installer/Data/ConfigFileData.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
using installer.ViewModel;
//using installer.ViewModel;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;

namespace installer.Data
{
public abstract class NotificationObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
///<summary>
///announce notification
///</summary>
///<param name="propertyName">property name</param>
public virtual void OnPropertyChanged([CallerMemberName] string propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
public enum LanguageOption
{
cpp = 0, python = 1
Expand Down
11 changes: 8 additions & 3 deletions logic/Client/Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
<None Remove="View\uhlobqco.ueo~" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\..\installer\Data\ConfigFileData.cs" Link="Interact\ConfigFileData.cs" />
<Compile Include="..\..\installer\Model\Logger.cs" Link="Interact\Logger.cs" />
</ItemGroup>


<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
Expand All @@ -76,12 +81,12 @@

<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.20" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="SkiaSharp" Version="2.88.8" />

<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />

<PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="2.88.7" />
<PackageReference Include="SkiaSharp.Views.Maui.Core" Version="2.88.7" />
<PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="2.88.8" />
<PackageReference Include="SkiaSharp.Views.Maui.Core" Version="2.88.8" />

</ItemGroup>

Expand Down
Loading

0 comments on commit d79d608

Please sign in to comment.