Skip to content

Commit

Permalink
Update tracex installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
bo-ms committed Feb 21, 2024
1 parent 1cb536e commit da0c470
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions installer/tracex_installer_release.iss
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{1D4932BC-ACD4-4292-9530-92C8BE2E58CF}
AppName=TraceX
AppName=Eclipse ThreadX TraceX
AppVersion=6.4.0.0
;AppPublisher=
AppPublisherURL=https://azure.com/rtos
AppSupportURL=https://azure.com/rtos
AppUpdatesURL=https://azure.com/rtos
DefaultDirName={sd}\Azure_RTOS\TraceX_6.4
DefaultGroupName=Azure RTOS
AppPublisher=Eclipse Foundation
AppPublisherURL=https://threadx.io/
AppSupportURL=https://threadx.io/
AppUpdatesURL=https://threadx.io/
DefaultDirName={sd}\Eclipse_ThreadX\TraceX_6.4
DefaultGroupName=Eclipse ThreadX
CloseApplications=no
;LicenseFile=
OutputBaseFilename=tracex_setup
Expand Down Expand Up @@ -55,7 +55,7 @@ Source: "src\MsixPackageProject\TraceFiles\demo_threadx.trx"; DestDir: "{app}/Tr

[Icons]
Name: "{group}\TraceX 6.4\TraceX"; Filename: "{app}\TraceX.exe"
Name: "{group}\TraceX 6.4\TraceX User's Guide"; Filename: "https://aka.ms/azrtos-tracex-user-guide"
Name: "{group}\TraceX 6.4\TraceX User's Guide"; Filename: "https://github.com/eclipse-threadx/rtos-docs"
Name: "{group}\TraceX 6.4\{cm:UninstallProgram,TraceX}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\TraceX 6.4.0.0"; Filename: "{app}\TraceX.exe"; Tasks: desktopicon

Expand Down
12 changes: 6 additions & 6 deletions src/MsixPackageProject/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
IgnorableNamespaces="uap rescap">

<Identity
Name="Microsoft.AzureRTOSTraceX"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
Name="Eclipse.EclipseThreadXTraceX"
Publisher="CN=Eclipse Foundation, O=Eclipse Foundation, L=Ottawa, S=Ontario, C=CA"
Version="6.4.0.0" />

<Properties>
<DisplayName>Azure RTOS TraceX</DisplayName>
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
<DisplayName>Eclipse ThreadX TraceX</DisplayName>
<PublisherDisplayName>Eclipse Foundation</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>

Expand All @@ -34,8 +34,8 @@
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="Azure RTOS TraceX"
Description="Azure RTOS TraceX"
DisplayName="Eclipse ThreadX TraceX"
Description="Eclipse ThreadX TraceX"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
Expand Down
6 changes: 3 additions & 3 deletions src/TraceX/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Azure RTOS TraceX")]
[assembly: AssemblyTitle("Eclipse ThreadX TraceX")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyCompany("Eclipse Foundation")]
[assembly: AssemblyProduct("TraceX")]
[assembly: AssemblyCopyright("Microsoft Corporation, 2006 - 2020")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
8 changes: 4 additions & 4 deletions src/TraceX/TraceXView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace AzureRTOS.TraceManagement

public partial class TraceXView : Window
{
public const string _tracexVersion = "Azure RTOS TraceX 6.4.0.0";
public const string _tracexVersion = "Eclipse ThreadX TraceX 6.4.0.0";

private List<Window> _infoWindows = new List<Window>();
private const double _eventDisplayWidth = 12;
Expand Down Expand Up @@ -128,7 +128,7 @@ private void CheckInvokeInstallDialog()
// Create the default directory, otherwise the Browser dialog
// will not allow us to start there:

string default_path = "C:\\Azure_RTOS\\TraceX";
string default_path = "C:\\Eclipse_ThreadX\\TraceX";

if (!Directory.Exists(default_path))
{
Expand Down Expand Up @@ -1115,7 +1115,7 @@ private void ZoomLimitReached(object sender, Code.ZoomEventArgs e)
public static string GetInstallDir()
{
// default to something reasonable in case registry key lookup fails
string installDir = "C:\\Azure_RTOS\\TraceX";
string installDir = "C:\\Eclipse_ThreadX\\TraceX";

string installPath = Path.GetDirectoryName(Application.ResourceAssembly.Location);
if (!installPath.Contains("WindowsApps"))
Expand Down Expand Up @@ -1157,7 +1157,7 @@ private void OnExit(object sender, RoutedEventArgs e)
// Handler for Help -> Manual.
private void OnOpenManual(object sender, RoutedEventArgs e)
{
string url = "https://docs.microsoft.com/en-us/azure/rtos/tracex/";
string url = "https://github.com/eclipse-threadx/rtos-docs";
System.Diagnostics.Process.Start(url);
}

Expand Down

0 comments on commit da0c470

Please sign in to comment.