Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions installer/tracex_installer_release.iss
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
AppId={{1D4932BC-ACD4-4292-9530-92C8BE2E58CF}
AppName=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/blob/main/rtos-docs/tracex/overview-tracex.md"
Name: "{group}\TraceX 6.4\{cm:UninstallProgram,TraceX}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\TraceX 6.4.0.0"; Filename: "{app}\TraceX.exe"; Tasks: desktopicon

Expand All @@ -64,7 +64,7 @@ Root: HKCR; Subkey: ".trx"; ValueType: string; ValueName: ""; ValueData: "TraceX
Root: HKCR; Subkey: "TraceX_Data_File\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\TraceX.exe,0"; Tasks: associate
Root: HKCR; Subkey: "TraceX_Data_File\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\TraceX.exe"" ""%1"""; Tasks: associate

Root: HKLM; Subkey: "Software\Microsoft Corporation\TraceX\InstallDir"; ValueType: string; ValueName: ""; ValueData: "{app}";
Root: HKLM; Subkey: "Software\Eclipse Foundation\TraceX\InstallDir"; ValueType: string; ValueName: ""; ValueData: "{app}";

[Run]
; Filename: "{app}\TraceX.exe"; Description: "{cm:LaunchProgram,TraceX}"; Flags: nowait postinstall skipifsilent
Expand Down
8 changes: 4 additions & 4 deletions src/MsixPackageProject/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
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/blob/main/rtos-docs/tracex/overview-tracex.md";
System.Diagnostics.Process.Start(url);
}

Expand Down