Compare commits

..

4 Commits

Author SHA1 Message Date
c6fdf19055 [nostalgia/studio] Bump version to d2025.02.1
All checks were successful
Build / build (push) Successful in 1m28s
2025-03-24 20:51:02 -05:00
ed5f424eb0 [keel] Add missing new line to log message
All checks were successful
Build / build (push) Successful in 1m28s
2025-03-24 20:44:33 -05:00
a44c5acc4b [studio] Fix closing tab with unsaved changes 2025-03-24 20:43:34 -05:00
13e256b3a9 [nostalgia/studio] Update version to d2025.02.0
All checks were successful
Build / build (push) Successful in 1m28s
2025-02-25 20:15:07 -06:00
5 changed files with 5 additions and 8 deletions

View File

@ -134,6 +134,7 @@ ox::Error run(
return ox::Error{1, "Please provide path to project directory or OxFS file."}; return ox::Error{1, "Please provide path to project directory or OxFS file."};
} }
auto const path = args[1]; auto const path = args[1];
OX_REQUIRE_M(tctx, turbine::init(path, project)); OX_REQUIRE_M(fs, keel::loadRomFs(path));
OX_REQUIRE_M(tctx, turbine::init(std::move(fs), project));
return runTileSheetSetTest(*tctx); return runTileSheetSetTest(*tctx);
} }

View File

@ -1,7 +1,4 @@
add_executable( add_executable(NostalgiaStudio WIN32 MACOSX_BUNDLE)
NostalgiaStudio WIN32 MACOSX_BUNDLE
ns.rc
)
target_link_libraries( target_link_libraries(
NostalgiaStudio NostalgiaStudio
@ -14,7 +11,7 @@ target_link_libraries(
target_compile_definitions( target_compile_definitions(
NostalgiaStudio PUBLIC NostalgiaStudio PUBLIC
OLYMPIC_APP_VERSION="dev build" OLYMPIC_APP_VERSION="d2025.02.1"
) )
install( install(

View File

@ -18,7 +18,7 @@
<string>APPL</string> <string>APPL</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>dev build</string> <string>d2025.02.1</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>12.0.0</string> <string>12.0.0</string>

View File

@ -1 +0,0 @@
IDI_ICON1 ICON DISCARDABLE "ns_logo.ico"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB