mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +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.ReadUInt32();//magic
|
||||
reader.ReadUInt32();//section size
|
||||
|
||||
// UserData = new USD1(reader, header);
|
||||
UserData = new USD1(reader, header);
|
||||
}
|
||||
if (panelInfoOffset != 0)
|
||||
{
|
||||
|
|
|
@ -17,7 +17,6 @@ using System.Reflection;
|
|||
using OpenTK.Graphics.OpenGL;
|
||||
using Toolbox.Library.NodeWrappers;
|
||||
using Toolbox.Library.Rendering;
|
||||
using Toolbox.Library.Forms;
|
||||
|
||||
namespace Toolbox
|
||||
{
|
||||
|
@ -615,8 +614,10 @@ namespace Toolbox
|
|||
{
|
||||
string commit = $"Commit: {Runtime.CommitInfo}";
|
||||
|
||||
var asssemblyVersion = Assembly.GetExecutingAssembly().GetName().Version;
|
||||
|
||||
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
|
||||
Text = $"{Application.ProductName}";
|
||||
}
|
||||
|
|
|
@ -8,6 +8,8 @@ image:
|
|||
build:
|
||||
project: Toolbox.sln
|
||||
verbosity: minimal
|
||||
assembly_info:
|
||||
patch: true
|
||||
deploy:
|
||||
- provider: GitHub
|
||||
tag: EXPERIMENTAL_LATEST
|
||||
|
|
Loading…
Reference in a new issue