Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-06-11 15:30:08 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-06-11 15:30:34 +0300
commitcbcf393332ceaa5ea8abe6b2dbb761b1df822010 (patch)
treed17fc14da2c242c1ddfd1d670e070eda1f3215a0
parent3992eb0542e5d51206a3cc266599f62c512a5984 (diff)
Release 0.7.0.v0.7
-rw-r--r--NEWS2
-rw-r--r--README.md3
-rw-r--r--profiler/src/main.cpp4
-rw-r--r--server/TracyVersion.hpp4
4 files changed, 9 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index dce11080..89044d78 100644
--- a/NEWS
+++ b/NEWS
@@ -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
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
diff --git a/README.md b/README.md
index 1432c070..29aa1168 100644
--- a/README.md
+++ b/README.md
@@ -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.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.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)
diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp
index 2b41849c..2485ead7 100644
--- a/profiler/src/main.cpp
+++ b/profiler/src/main.cpp
@@ -559,6 +559,10 @@ static void DrawContents()
{
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::SameLine();
diff --git a/server/TracyVersion.hpp b/server/TracyVersion.hpp
index daa38c96..9f745627 100644
--- a/server/TracyVersion.hpp
+++ b/server/TracyVersion.hpp
@@ -6,8 +6,8 @@ namespace tracy
namespace Version
{
enum { Major = 0 };
-enum { Minor = 6 };
-enum { Patch = 16 };
+enum { Minor = 7 };
+enum { Patch = 0 };
}
}