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>2019-11-17 21:56:26 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-11-17 21:56:42 +0300
commit31b6ff4baed9d5b9cbbecaa61fcd425822bd18c4 (patch)
treea8dd526c778cc55a1b72fa12ac94bef4584cd0be
parent3854ae11b28b40e1790cc05639ead8bafc55dc85 (diff)
Release 0.6.0.v0.6
-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 5199bfa1..8b336b6a 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.6 (xxxx-xx-xx)
+v0.6 (2019-11-17)
-----------------
This is the last release which will be able to load pre-v0.5 traces. Use the
diff --git a/README.md b/README.md
index b011c400..b4c3c8ea 100644
--- a/README.md
+++ b/README.md
@@ -15,4 +15,5 @@ For usage instructions, consult the user manual [at the following address](https
[Introduction to Tracy Profiler v0.2](https://www.youtube.com/watch?v=fB5B46lbapc)
[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.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
+[New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo)
diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp
index 20e25433..751780a9 100644
--- a/profiler/src/main.cpp
+++ b/profiler/src/main.cpp
@@ -432,6 +432,10 @@ int main( int argc, char** argv )
{
OpenWebpage( "https://www.youtube.com/watch?v=P6E7qLMmzTQ" );
}
+ if( ImGui::Selectable( ICON_FA_VIDEO " New features in Tracy Profiler v0.6" ) )
+ {
+ OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" );
+ }
ImGui::EndPopup();
}
ImGui::Separator();
diff --git a/server/TracyVersion.hpp b/server/TracyVersion.hpp
index ae64a884..a063b184 100644
--- a/server/TracyVersion.hpp
+++ b/server/TracyVersion.hpp
@@ -6,8 +6,8 @@ namespace tracy
namespace Version
{
enum { Major = 0 };
-enum { Minor = 5 };
-enum { Patch = 12 };
+enum { Minor = 6 };
+enum { Patch = 0 };
}
}