mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 12:33:12 +00:00
Patch assembly version
This commit is contained in:
parent
88b84a9a8d
commit
795d6702ed
3 changed files with 6 additions and 4 deletions
|
@ -348,8 +348,7 @@ namespace LayoutBXLYT.Cafe
|
||||||
reader.SeekBegin(StartPosition + userDataOffset);
|
reader.SeekBegin(StartPosition + userDataOffset);
|
||||||
reader.ReadUInt32();//magic
|
reader.ReadUInt32();//magic
|
||||||
reader.ReadUInt32();//section size
|
reader.ReadUInt32();//section size
|
||||||
|
UserData = new USD1(reader, header);
|
||||||
// UserData = new USD1(reader, header);
|
|
||||||
}
|
}
|
||||||
if (panelInfoOffset != 0)
|
if (panelInfoOffset != 0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,7 +17,6 @@ using System.Reflection;
|
||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using Toolbox.Library.NodeWrappers;
|
using Toolbox.Library.NodeWrappers;
|
||||||
using Toolbox.Library.Rendering;
|
using Toolbox.Library.Rendering;
|
||||||
using Toolbox.Library.Forms;
|
|
||||||
|
|
||||||
namespace Toolbox
|
namespace Toolbox
|
||||||
{
|
{
|
||||||
|
@ -615,8 +614,10 @@ namespace Toolbox
|
||||||
{
|
{
|
||||||
string commit = $"Commit: {Runtime.CommitInfo}";
|
string commit = $"Commit: {Runtime.CommitInfo}";
|
||||||
|
|
||||||
|
var asssemblyVersion = Assembly.GetExecutingAssembly().GetName().Version;
|
||||||
|
|
||||||
if (DisplayVersion)
|
if (DisplayVersion)
|
||||||
Text = $"{Application.ProductName} | Version: {Runtime.ProgramVersion} | {commit} | Compile Date: {Runtime.CompileDate}";
|
Text = $"{Application.ProductName} | Version: {Runtime.ProgramVersion} | {commit} | Compile Date: {Runtime.CompileDate} Assembly {asssemblyVersion}";
|
||||||
else
|
else
|
||||||
Text = $"{Application.ProductName}";
|
Text = $"{Application.ProductName}";
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,8 @@ image:
|
||||||
build:
|
build:
|
||||||
project: Toolbox.sln
|
project: Toolbox.sln
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
assembly_info:
|
||||||
|
patch: true
|
||||||
deploy:
|
deploy:
|
||||||
- provider: GitHub
|
- provider: GitHub
|
||||||
tag: EXPERIMENTAL_LATEST
|
tag: EXPERIMENTAL_LATEST
|
||||||
|
|
Loading…
Reference in a new issue