Release 0.7.0.

This commit is contained in:
Bartosz Taudul 2020-06-11 14:30:08 +02:00
parent 3992eb0542
commit cbcf393332
4 changed files with 9 additions and 4 deletions

2
NEWS
View File

@ -6,7 +6,7 @@ Note: Release numbers are nothing more than numbers. There are some
"missing" versions due to trace file changes during development. This is not "missing" versions due to trace file changes during development. This is not
a mistake. a mistake.
v0.7 (xxxx-xx-xx) v0.7 (2020-06-11)
----------------- -----------------
This is the last release which will be able to load pre-v0.6 traces. Use the This is the last release which will be able to load pre-v0.6 traces. Use the

View File

@ -18,4 +18,5 @@ For usage **and build process** instructions, consult the user manual [at the fo
[New features in Tracy Profiler v0.3](https://www.youtube.com/watch?v=3SXpDpDh2Uo) [New features in Tracy Profiler v0.3](https://www.youtube.com/watch?v=3SXpDpDh2Uo)
[New features in Tracy Profiler v0.4](https://www.youtube.com/watch?v=eAkgkaO8B9o) [New features in Tracy Profiler v0.4](https://www.youtube.com/watch?v=eAkgkaO8B9o)
[New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ) [New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
[New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo) [New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo)
[New features in Tracy Profiler v0.7](https://www.youtube.com/watch?v=_hU7vw00MZ4)

View File

@ -559,6 +559,10 @@ static void DrawContents()
{ {
OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" ); OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" );
} }
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.7" ) )
{
OpenWebpage( "https://www.youtube.com/watch?v=_hU7vw00MZ4" );
}
ImGui::EndPopup(); ImGui::EndPopup();
} }
ImGui::SameLine(); ImGui::SameLine();

View File

@ -6,8 +6,8 @@ namespace tracy
namespace Version namespace Version
{ {
enum { Major = 0 }; enum { Major = 0 };
enum { Minor = 6 }; enum { Minor = 7 };
enum { Patch = 16 }; enum { Patch = 0 };
} }
} }