From 4a58983c28dad55177dca8f30a2aa33027a4346b Mon Sep 17 00:00:00 2001 From: Pierric Gimmig Date: Sun, 10 Jun 2018 22:44:38 -0700 Subject: [PATCH] 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. --- Orbit.sln | 11 +++++++++++ OrbitCore/Params.cpp | 2 +- OrbitQt/orbitmainwindow.cpp | 2 +- pack.bat | 4 ++-- release_notes.txt | 10 ++++++++++ 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/Orbit.sln b/Orbit.sln index 1dd0daec684..57156753cb1 100644 --- a/Orbit.sln +++ b/Orbit.sln @@ -4,6 +4,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitCore", "OrbitCore\OrbitCore.vcxproj", "{F0D7A3D4-1D29-4053-A29A-32BE327C3BEB}" + ProjectSection(ProjectDependencies) = postProject + {3FE26F37-74CE-4111-8654-50FC00DFBB9E} = {3FE26F37-74CE-4111-8654-50FC00DFBB9E} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitDll", "OrbitDll\OrbitDll.vcxproj", "{FCD5BAF3-2F7F-4160-ADC2-7798444B030D}" ProjectSection(ProjectDependencies) = postProject @@ -16,10 +19,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitGl", "OrbitGl\OrbitGl. EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitQt", "OrbitQt\OrbitQt.vcxproj", "{C0BDDADB-33BF-3DD7-B0C0-F79A90D4AD49}" + ProjectSection(ProjectDependencies) = postProject + {3FE26F37-74CE-4111-8654-50FC00DFBB9E} = {3FE26F37-74CE-4111-8654-50FC00DFBB9E} + {A2F8D23A-D5E2-41C7-94F5-6E8707B447BE} = {A2F8D23A-D5E2-41C7-94F5-6E8707B447BE} + {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} = {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitAsm", "OrbitAsm\OrbitAsm.vcxproj", "{3FE26F37-74CE-4111-8654-50FC00DFBB9E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OrbitPlugin", "OrbitPlugin\OrbitPlugin.vcxproj", "{5AB5D714-E6B1-46A5-B496-0B9FA73886E7}" + ProjectSection(ProjectDependencies) = postProject + {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} = {F0D7A3D4-1D29-4053-A29A-32BE327C3BEB} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/OrbitCore/Params.cpp b/OrbitCore/Params.cpp index 63147714bae..96fe3c96622 100644 --- a/OrbitCore/Params.cpp +++ b/OrbitCore/Params.cpp @@ -25,7 +25,7 @@ Params::Params() : m_LoadTypeInfo( true ) , m_StartPaused(true) , m_AllowUnsafeHooking(false) , m_HookOutputDebugString(false) - , m_FindFileAndLineInfo(false) + , m_FindFileAndLineInfo(true) , m_AutoReleasePdb(false) , m_Port(1789) , m_DiffArgs("%1 %2") diff --git a/OrbitQt/orbitmainwindow.cpp b/OrbitQt/orbitmainwindow.cpp index ddd8d58dcf1..816e60093f6 100644 --- a/OrbitQt/orbitmainwindow.cpp +++ b/OrbitQt/orbitmainwindow.cpp @@ -438,7 +438,7 @@ void OrbitMainWindow::on_actionAbout_triggered() title += " | Version " + GOrbitApp->GetVersion(); - QMessageBox::about(this, title.c_str(), "Copyright (c) 2013-2017 - Pierric Gimmig"); + QMessageBox::about(this, title.c_str(), "Copyright (c) 2013-2018 - Pierric Gimmig"); } //----------------------------------------------------------------------------- diff --git a/pack.bat b/pack.bat index 4eaf70ab28b..90d588e73bc 100644 --- a/pack.bat +++ b/pack.bat @@ -1,5 +1,5 @@ -set ORBIT_VERSION=0.4.7 -set TARGET_NAME=ORBIT_PROFILER_beta_%ORBIT_VERSION% +set ORBIT_VERSION=1.0.2 +set TARGET_NAME=ORBIT_PROFILER_%ORBIT_VERSION% set TARGET_PATH=builds\%TARGET_NAME%\ set PLATFO_PATH=%TARGET_PATH%platforms\ set SHADER_PATH=%TARGET_PATH%text\ diff --git a/release_notes.txt b/release_notes.txt index 4e0090ad42a..953c14f68a0 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,3 +1,13 @@ +1.0.2 +- CaptureWindow: double clicking on a textbox will zoom it in/out to ~90% of the screen width. +- ProcessLauncher: process path, working dir and params are now serialized into session and global params. Fixes https://github.com/pierricgimmig/orbitprofiler/issues/13. +- Better file and line resolution at initial pdb parsing + +- Release handle on pdb (experimental, off by default, see https://github.com/pierricgimmig/orbitprofiler/commit/b695ce516520fc8c8362634346d826d57fb5207e) + +1.0.1 +Minor fixes + 1.0.0 Initial public release