Skip to content

Commit cbcf393

Browse files
committed
Release 0.7.0.
1 parent 3992eb0 commit cbcf393

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Note: Release numbers are nothing more than numbers. There are some
66
"missing" versions due to trace file changes during development. This is not
77
a mistake.
88

9-
v0.7 (xxxx-xx-xx)
9+
v0.7 (2020-06-11)
1010
-----------------
1111

1212
This is the last release which will be able to load pre-v0.6 traces. Use the

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ For usage **and build process** instructions, consult the user manual [at the fo
1818
[New features in Tracy Profiler v0.3](https://www.youtube.com/watch?v=3SXpDpDh2Uo)
1919
[New features in Tracy Profiler v0.4](https://www.youtube.com/watch?v=eAkgkaO8B9o)
2020
[New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
21-
[New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo)
21+
[New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo)
22+
[New features in Tracy Profiler v0.7](https://www.youtube.com/watch?v=_hU7vw00MZ4)

profiler/src/main.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,10 @@ static void DrawContents()
559559
{
560560
OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" );
561561
}
562+
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.7" ) )
563+
{
564+
OpenWebpage( "https://www.youtube.com/watch?v=_hU7vw00MZ4" );
565+
}
562566
ImGui::EndPopup();
563567
}
564568
ImGui::SameLine();

server/TracyVersion.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace tracy
66
namespace Version
77
{
88
enum { Major = 0 };
9-
enum { Minor = 6 };
10-
enum { Patch = 16 };
9+
enum { Minor = 7 };
10+
enum { Patch = 0 };
1111
}
1212
}
1313

0 commit comments

Comments
 (0)