Skip to content

Commit e9b4dd0

Browse files
committed
This is vAmiga 2.4b1
1 parent f92a3fe commit e9b4dd0

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

Emulator/Misc/RetroShell/InterpreterDebugCmds.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ Interpreter::initDebugShell(Command &root)
388388
"Inspects the internal state",
389389
[this](Arguments& argv, long value) {
390390

391-
retroShell.dump(amiga, Category::State);
391+
retroShell.dump(amiga, { Category::Config, Category::State } );
392392
});
393393

394394

@@ -400,7 +400,7 @@ Interpreter::initDebugShell(Command &root)
400400
"Inspects the internal state",
401401
[this](Arguments& argv, long value) {
402402

403-
retroShell.dump(mem, Category::State);
403+
retroShell.dump(mem, { Category::Config, Category::State } );
404404
});
405405

406406
root.add({"memory", "dump"}, { Arg::address },
@@ -645,9 +645,7 @@ Interpreter::initDebugShell(Command &root)
645645

646646
if (auto board = zorro.getBoard(nr); board != nullptr) {
647647

648-
retroShell.dump(*board, Category::Properties);
649-
retroShell.dump(*board, Category::State);
650-
retroShell.dump(*board, Category::Stats);
648+
retroShell.dump(*board, { Category::Properties, Category::State, Category::Stats } );
651649
}
652650
});
653651

Emulator/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
#define VER_MAJOR 2
1818
#define VER_MINOR 4
1919
#define VER_SUBMINOR 0
20-
#define VER_BETA 0
20+
#define VER_BETA 1
2121

2222
// Snapshot version number
2323
#define SNP_MAJOR 2
2424
#define SNP_MINOR 4
2525
#define SNP_SUBMINOR 0
26-
#define SNP_BETA 0
26+
#define SNP_BETA 1
2727

2828
// Uncomment this setting in a release build
2929
#define RELEASEBUILD

vAmiga.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2749,7 +2749,7 @@
27492749
"@executable_path/../Frameworks",
27502750
);
27512751
MACOSX_DEPLOYMENT_TARGET = 11.0;
2752-
MARKETING_VERSION = 2.3;
2752+
MARKETING_VERSION = 2.4b1;
27532753
PRODUCT_BUNDLE_IDENTIFIER = dirkwhoffmann.vAmiga;
27542754
PRODUCT_NAME = "$(TARGET_NAME)";
27552755
SWIFT_OBJC_BRIDGING_HEADER = "Proxy/Bridging-Header.h";
@@ -2786,7 +2786,7 @@
27862786
);
27872787
LLVM_LTO = YES_THIN;
27882788
MACOSX_DEPLOYMENT_TARGET = 11.0;
2789-
MARKETING_VERSION = 2.3;
2789+
MARKETING_VERSION = 2.4b1;
27902790
PRODUCT_BUNDLE_IDENTIFIER = dirkwhoffmann.vAmiga;
27912791
PRODUCT_NAME = "$(TARGET_NAME)";
27922792
SWIFT_OBJC_BRIDGING_HEADER = "Proxy/Bridging-Header.h";

0 commit comments

Comments
 (0)