Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
Updated "About" window.   Better file and line resolution at initial pdb parsing is now on by default.  Fixed project build dependencies.
  • Loading branch information
pierricgimmig committed Jun 11, 2018
1 parent b695ce5 commit 4a58983
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
11 changes: 11 additions & 0 deletions Orbit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion OrbitCore/Params.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion OrbitQt/orbitmainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

//-----------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pack.bat
Original file line number Diff line number Diff line change
@@ -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\
Expand Down
10 changes: 10 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 4a58983

Please sign in to comment.