Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a4a076d
Adding some fixes and better logging.
stanley-vungle Mar 26, 2026
15bd917
[WIN-1972] Expose Super Token API via Unity Plugin wrapper
stanley-vungle Apr 6, 2026
6e21b9f
[WIN-1972] Add IsAdPlayable API and full bidding flow to test app
stanley-vungle Apr 6, 2026
e9d33e3
[WIN-1972] Remove IsAdPlayable API - publishers should use Load callb…
stanley-vungle Apr 6, 2026
79ab035
Updating to the latest Windows SDK from Greg
stanley-vungle Apr 6, 2026
649d873
[WIN-1972] Add thread safety, test infrastructure, and Editor tooling…
stanley-vungle Apr 10, 2026
c66d51e
Merge master into WIN-1972, taking master's DLLs
stanley-vungle Apr 10, 2026
e7855c5
[WIN-1972] Add unsupported Liftoff_GetSdkInstance() export for publis…
stanley-vungle Apr 13, 2026
1f05cc1
[WIN-1972] Remove test infrastructure and Debug/Release DLL split
stanley-vungle Apr 13, 2026
56f6c80
[WIN-1972] Revert WindowsSDK7SampleApp to master for release
stanley-vungle Apr 13, 2026
3260419
[WIN-1972] Remove unused LiftoffUIHelper
stanley-vungle Apr 13, 2026
ce22384
[WIN-1972] Fix post-build copy paths to use flat x86_64 directory
stanley-vungle Apr 13, 2026
ab78ba4
[WIN-1972] Create destination directories in post-build copy if missing
stanley-vungle Apr 13, 2026
a76e3a8
[WIN-1972] Fix post-build mkdir quoting (trailing backslash before qu…
stanley-vungle Apr 13, 2026
2d4cef3
[WIN-1972] Use xcopy for post-build DLL copy (auto-creates directories)
stanley-vungle Apr 13, 2026
e36cfe7
[WIN-1972] Resolve post-build copy paths via MSBuild GetFullPath
stanley-vungle Apr 13, 2026
1278439
[WIN-1972] Switch post-build back to copy /Y (paths are absolute now)
stanley-vungle Apr 13, 2026
0831402
[WIN-1972] Fix post-build: mkdir before copy, no trailing backslash i…
stanley-vungle Apr 13, 2026
57cbbd9
[WIN-1972] Sync sample app scripts with package
stanley-vungle Apr 13, 2026
7f0b79a
Updated plugin to get super token.
stanley-vungle Apr 13, 2026
c1badcc
Updating package version
stanley-vungle Apr 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
229 changes: 0 additions & 229 deletions CHANGELOG.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,22 @@ class DiagnosticLogEvent {
oss << LevelToString(Level) << ' ' << SenderType << ' ' << Message << ' ';

if (Exception) {
try {
std::rethrow_exception(Exception);
} catch (const std::exception& ex) {
oss << ex.what() << "\r\n";
for (auto currentException = std::current_exception(); currentException != nullptr; currentException = std::current_exception()) {
std::exception_ptr current = Exception;
while (current) {
try {
std::rethrow_exception(current);
} catch (const std::exception& ex) {
oss << ex.what() << "\r\n";
// Walk nested_exception chain if present
try {
std::rethrow_exception(currentException);
} catch (const std::exception& innerEx) {
oss << innerEx.what() << "\r\n";
std::rethrow_if_nested(ex);
current = nullptr;
} catch (...) {
current = std::current_exception();
}
} catch (...) {
oss << "(unknown exception)\r\n";
current = nullptr;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion LiftoffUnityWindowsPlugin/plugin/LiftoffUnityBridge.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{4C5C8F02-3A5F-4F7E-ACF9-84F3BAE63A0A}") = "LiftoffUnityBridge", "LiftoffUnityBridge\LiftoffUnityBridge.vcxproj", "{A0E6B8E3-BA90-46F2-9A9C-7F2EA5F2D3AA}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LiftoffUnityBridge", "LiftoffUnityBridge\LiftoffUnityBridge.vcxproj", "{A0E6B8E3-BA90-46F2-9A9C-7F2EA5F2D3AA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Loading