Ui Improvements
This commit is contained in:
parent
e1351cc756
commit
826e6823a1
5 changed files with 12 additions and 23 deletions
19
.github/workflows/dotnet-framework.yml
vendored
19
.github/workflows/dotnet-framework.yml
vendored
|
@ -30,17 +30,6 @@ jobs:
|
|||
run: |
|
||||
msbuild.exe WeeXnes.sln /p:DeleteExistingFiles=True /p:platform="Any CPU" /p:configuration="Release"
|
||||
|
||||
- name: List Folder 1
|
||||
run: dir D:\a\WeeXnesSuite\WeeXnesSuite\WeeXnes\bin\Release\
|
||||
- name: List Folder 2
|
||||
run: dir D:\a\WeeXnesSuite\WeeXnesSuite\WeeXnes_UAC\bin\Release\
|
||||
- name: List Folder 3
|
||||
run: dir D:\a\WeeXnesSuite\WeeXnesSuite\Autostart\bin\Release\
|
||||
- name: List Folder 4
|
||||
run: dir D:\a\WeeXnesSuite\WeeXnesSuite\Update\bin\Release\
|
||||
- name: List Folder 5
|
||||
run: dir D:\a\WeeXnesSuite\WeeXnesSuite\Release_Tool\bin\Release\
|
||||
|
||||
|
||||
- name: Format Xaml to XML
|
||||
run: (gc Weexnes\WeeXnes.csproj) -replace ' ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"', '' | Out-File -encoding ASCII formatted.csproj
|
||||
|
@ -68,12 +57,8 @@ jobs:
|
|||
shell: pwsh
|
||||
|
||||
|
||||
- name: Check for Zip
|
||||
run: dir
|
||||
|
||||
|
||||
|
||||
- name: release
|
||||
- name: Create Release
|
||||
uses: actions/create-release@v1
|
||||
id: create_release
|
||||
with:
|
||||
|
@ -83,7 +68,7 @@ jobs:
|
|||
tag_name: ${{ steps.get_version.outputs.version }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
- name: upload windows artifact
|
||||
- name: Upload windows artifact
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
|
|
|
@ -28,8 +28,11 @@ namespace WeeXnes
|
|||
private static void GlobalUnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs e)
|
||||
{
|
||||
Exception ex = (Exception)e.ExceptionObject;
|
||||
DateTime currentDateTime = DateTime.Now;
|
||||
string formattedDateTime = currentDateTime.ToString("dddd, dd MMMM yyyy HH:mm:ss");
|
||||
using (StreamWriter writer = new StreamWriter("error_log.txt"))
|
||||
{
|
||||
writer.WriteLine(formattedDateTime);
|
||||
writer.WriteLine(ex.ToString());
|
||||
}
|
||||
new FluentMessageBox(ex.Message).ShowDialog();
|
||||
|
|
|
@ -8,7 +8,7 @@ namespace WeeXnes.Core
|
|||
{
|
||||
public class Information
|
||||
{
|
||||
public const string Version = "4.3.4";
|
||||
public const string Version = "4.3.5";
|
||||
public const string EncryptionHash = "8zf5#RdyQ]$4x4_";
|
||||
public const string ApiUrl = "https://api.github.com/repos/weexnes/weexnessuite/releases/latest";
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:WeeXnes.Views.KeyManager"
|
||||
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
||||
mc:Ignorable="d"
|
||||
Title="KeyManagerView" Height="Auto" Width="Auto"
|
||||
Loaded="KeyManagerView_OnLoaded">
|
||||
|
@ -57,14 +58,14 @@
|
|||
<ColumnDefinition Width="2*"/>
|
||||
<ColumnDefinition Width="100px"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<TextBox
|
||||
<ui:TextBox
|
||||
Grid.Column="0"
|
||||
Margin="0,0,5,0"
|
||||
Name="tb_keyname"/>
|
||||
<TextBox
|
||||
Name="tb_keyname" PlaceholderText="Name"/>
|
||||
<ui:TextBox
|
||||
Grid.Column="1"
|
||||
Margin="5,0,0,0"
|
||||
Name="tb_keyvalue"/>
|
||||
Name="tb_keyvalue" PlaceholderText="Key"/>
|
||||
<Button Grid.Column="2"
|
||||
Content="Add"
|
||||
Height="35px"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<Version>4.3.4</Version>
|
||||
<Version>4.3.5</Version>
|
||||
<ProjectGuid>{4B33CEE7-C74D-43B9-B99A-8B273D5195BC}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>WeeXnes</RootNamespace>
|
||||
|
|
Loading…
Add table
Reference in a new issue