Update CMake configuration and CI/CD workflows
- Upgraded CMake minimum version requirement to 3.16 and updated project version to 0.3.0. - Introduced new CMake presets for build configurations, including default, debug, and release options. - Added CI/CD workflows for continuous integration and release management, enhancing automated testing and deployment processes. - Integrated Asar assembler support with new wrapper classes and CLI commands for patching ROMs. - Implemented comprehensive tests for Asar integration, ensuring robust functionality and error handling. - Enhanced packaging configuration for cross-platform support, including Windows, macOS, and Linux. - Updated documentation and added test assets for improved clarity and usability.
This commit is contained in:
@@ -17,7 +17,10 @@ namespace yaze {
|
||||
namespace cli {
|
||||
const std::vector<std::string> kMainMenuEntries = {
|
||||
"Load ROM",
|
||||
"Apply BPS Patch",
|
||||
"Apply Asar Patch",
|
||||
"Apply BPS Patch",
|
||||
"Extract Symbols",
|
||||
"Validate Assembly",
|
||||
"Generate Save File",
|
||||
"Palette Editor",
|
||||
"Help",
|
||||
@@ -26,7 +29,10 @@ const std::vector<std::string> kMainMenuEntries = {
|
||||
|
||||
enum class MainMenuEntry {
|
||||
kLoadRom,
|
||||
kApplyAsarPatch,
|
||||
kApplyBpsPatch,
|
||||
kExtractSymbols,
|
||||
kValidateAssembly,
|
||||
kGenerateSaveFile,
|
||||
kPaletteEditor,
|
||||
kHelp,
|
||||
@@ -35,7 +41,10 @@ enum class MainMenuEntry {
|
||||
|
||||
enum LayoutID {
|
||||
kLoadRom,
|
||||
kApplyAsarPatch,
|
||||
kApplyBpsPatch,
|
||||
kExtractSymbols,
|
||||
kValidateAssembly,
|
||||
kGenerateSaveFile,
|
||||
kPaletteEditor,
|
||||
kHelp,
|
||||
|
||||
Reference in New Issue
Block a user