Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 4a58983

Browse files
committed
Version 1.0.2
Updated "About" window. Better file and line resolution at initial pdb parsing is now on by default. Fixed project build dependencies.
1 parent b695ce5 commit 4a58983

5 files changed

Lines changed: 25 additions & 4 deletions

File tree

Orbit.sln

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
44
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitCore", "OrbitCore\OrbitCore.vcxproj", "{F0D7A3D4-1D29-4053-A29A-32BE327C3BEB}"
7+
ProjectSection(ProjectDependencies) = postProject
8+
{3FE26F37-74CE-4111-8654-50FC00DFBB9E} = {3FE26F37-74CE-4111-8654-50FC00DFBB9E}
9+
EndProjectSection
710
EndProject
811
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitDll", "OrbitDll\OrbitDll.vcxproj", "{FCD5BAF3-2F7F-4160-ADC2-7798444B030D}"
912
ProjectSection(ProjectDependencies) = postProject
@@ -16,10 +19,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitGl", "OrbitGl\OrbitGl.
1619
EndProjectSection
1720
EndProject
1821
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitQt", "OrbitQt\OrbitQt.vcxproj", "{C0BDDADB-33BF-3DD7-B0C0-F79A90D4AD49}"
22+
ProjectSection(ProjectDependencies) = postProject
23+
{3FE26F37-74CE-4111-8654-50FC00DFBB9E} = {3FE26F37-74CE-4111-8654-50FC00DFBB9E}
24+
{A2F8D23A-D5E2-41C7-94F5-6E8707B447BE} = {A2F8D23A-D5E2-41C7-94F5-6E8707B447BE}
25+
{F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} = {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB}
26+
EndProjectSection
1927
EndProject
2028
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitAsm", "OrbitAsm\OrbitAsm.vcxproj", "{3FE26F37-74CE-4111-8654-50FC00DFBB9E}"
2129
EndProject
2230
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitPlugin", "OrbitPlugin\OrbitPlugin.vcxproj", "{5AB5D714-E6B1-46A5-B496-0B9FA73886E7}"
31+
ProjectSection(ProjectDependencies) = postProject
32+
{F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} = {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB}
33+
EndProjectSection
2334
EndProject
2435
Global
2536
GlobalSection(SolutionConfigurationPlatforms) = preSolution

OrbitCore/Params.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Params::Params() : m_LoadTypeInfo( true )
2525
, m_StartPaused(true)
2626
, m_AllowUnsafeHooking(false)
2727
, m_HookOutputDebugString(false)
28-
, m_FindFileAndLineInfo(false)
28+
, m_FindFileAndLineInfo(true)
2929
, m_AutoReleasePdb(false)
3030
, m_Port(1789)
3131
, m_DiffArgs("%1 %2")

OrbitQt/orbitmainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ void OrbitMainWindow::on_actionAbout_triggered()
438438

439439
title += " | Version " + GOrbitApp->GetVersion();
440440

441-
QMessageBox::about(this, title.c_str(), "Copyright (c) 2013-2017 - Pierric Gimmig");
441+
QMessageBox::about(this, title.c_str(), "Copyright (c) 2013-2018 - Pierric Gimmig");
442442
}
443443

444444
//-----------------------------------------------------------------------------

pack.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
set ORBIT_VERSION=0.4.7
2-
set TARGET_NAME=ORBIT_PROFILER_beta_%ORBIT_VERSION%
1+
set ORBIT_VERSION=1.0.2
2+
set TARGET_NAME=ORBIT_PROFILER_%ORBIT_VERSION%
33
set TARGET_PATH=builds\%TARGET_NAME%\
44
set PLATFO_PATH=%TARGET_PATH%platforms\
55
set SHADER_PATH=%TARGET_PATH%text\

release_notes.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.0.2
2+
- CaptureWindow: double clicking on a textbox will zoom it in/out to ~90% of the screen width.
3+
- ProcessLauncher: process path, working dir and params are now serialized into session and global params. Fixes https://github.com/pierricgimmig/orbitprofiler/issues/13.
4+
- Better file and line resolution at initial pdb parsing
5+
6+
- Release handle on pdb (experimental, off by default, see https://github.com/pierricgimmig/orbitprofiler/commit/b695ce516520fc8c8362634346d826d57fb5207e)
7+
8+
1.0.1
9+
Minor fixes
10+
111
1.0.0
212
Initial public release
313

0 commit comments

Comments
 (0)