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-08-10 23:07:14 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-10 23:14:14 +0300
commit9b6328f9625890bab7bc3ab06690391d3d88cf56 (patch)
tree5ce10ea88d591a8933bef12a10d36477b740775e
parent530f293c49c79e85391668c2ce68e5cc91974584 (diff)
Release 0.5.0.v0.5
-rw-r--r--NEWS5
-rw-r--r--README.md3
-rw-r--r--profiler/src/main.cpp4
-rw-r--r--server/TracyVersion.hpp4
4 files changed, 12 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 08e5f751..62d84443 100644
--- a/NEWS
+++ b/NEWS
@@ -6,9 +6,12 @@ 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.5 (xxxx-xx-xx)
+v0.5 (2019-08-10)
-----------------
+This is the last release which will be able to load pre-v0.4 traces. Use the
+update utility to convert your old traces now!
+
- Major decrease of trace dump file size.
- Major optimizations across the board.
- Vcpkg is now used for library management on Windows.
diff --git a/README.md b/README.md
index a0f1ca79..19871751 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,8 @@ The following platforms are confirmed to be working (this is not a complete list
[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.4](https://www.youtube.com/watch?v=eAkgkaO8B9o)
+[New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
[A quick FAQ.](FAQ.md)
[List of changes.](NEWS)
diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp
index 1da5b97f..1afa3d29 100644
--- a/profiler/src/main.cpp
+++ b/profiler/src/main.cpp
@@ -404,6 +404,10 @@ int main( int argc, char** argv )
{
OpenWebpage( "https://www.youtube.com/watch?v=eAkgkaO8B9o" );
}
+ if( ImGui::Selectable( ICON_FA_VIDEO " New features in Tracy Profiler v0.5" ) )
+ {
+ OpenWebpage( "https://www.youtube.com/watch?v=P6E7qLMmzTQ" );
+ }
ImGui::EndPopup();
}
ImGui::Separator();
diff --git a/server/TracyVersion.hpp b/server/TracyVersion.hpp
index ae2851ba..e6eb9ba6 100644
--- a/server/TracyVersion.hpp
+++ b/server/TracyVersion.hpp
@@ -6,8 +6,8 @@ namespace tracy
namespace Version
{
enum { Major = 0 };
-enum { Minor = 4 };
-enum { Patch = 11 };
+enum { Minor = 5 };
+enum { Patch = 0 };
}
}