Skip to content

Commit

Permalink
Utils DBus Made implementation thread safe and Added documentation 12…
Browse files Browse the repository at this point in the history
…/01/2024 | 24w48b2
  • Loading branch information
GamesTrap committed Dec 1, 2024
1 parent e68eeea commit 8011168
Show file tree
Hide file tree
Showing 7 changed files with 695 additions and 507 deletions.
5 changes: 5 additions & 0 deletions SITREPS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5432,3 +5432,8 @@ SITREP 11/30/2024|24w48b1
- Changed TRAP Engine version to 24w48b1(0.11.49)
- WindowFeaturesTests Removed ImGuiInputTextFlags_EnterReturnsTrue from InputScalar() calls ~<5 mins
- UnitTests Added tests for TRAP::Utils::CrashHandler ~<5 mins

SITREP 12/01/2024|24w48b2
- Changed TRAP Engine version to 24w48b2(0.11.50)
- Utils DBus made implementation thread safe ~>30 mins
- Utlis DBus Added documentatin ~<15 mins
2 changes: 1 addition & 1 deletion TRAP/src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ TRAP::Application::~Application()
FileSystem::Shutdown();

#ifdef TRAP_PLATFORM_LINUX
DBus::UnloadSymbols();
DBus::INTERNAL::UnloadSymbols();
#endif /*TRAP_PLATFORM_LINUX*/

s_Instance = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion TRAP/src/Core/Base.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
//-------------------------------------------------------------------------------------------------------------------//

/// @brief TRAP version number created with TRAP_MAKE_VERSION
inline constexpr TRAP::SemanticVersion<0, 11, 49> TRAP_VERSION{};
inline constexpr TRAP::SemanticVersion<0, 11, 50> TRAP_VERSION{};

//-------------------------------------------------------------------------------------------------------------------//

Expand Down
2 changes: 1 addition & 1 deletion TRAP/src/Log/Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ namespace TRAP
/// @threadsafe
void Clear() noexcept;

static constexpr auto WindowVersion = "[24w48b1]";
static constexpr auto WindowVersion = "[24w48b2]";
static constexpr auto WindowPrefix = "[Window] ";
static constexpr auto WindowIconPrefix = "[Window][Icon] ";
static constexpr auto ConfigPrefix = "[Config] ";
Expand Down
854 changes: 520 additions & 334 deletions TRAP/src/Utils/DBus/DBus.cpp

Large diffs are not rendered by default.

Loading

0 comments on commit 8011168

Please sign in to comment.