Compare commits

...

7 commits

Author SHA1 Message Date
XargonWan 65c0d137e7 Revert "Trying to build it on runtime 6.8"
Some checks failed
Build melonds Artifacts for RetroDECK / Building_RetroDECK-melonds (push) Has been cancelled
This reverts commit af15d488af.
2025-03-30 16:38:25 +09:00
XargonWan c7d614e227 Revert "TEST: updated libslirp to 4.9.0 (was 4.7.0)"
This reverts commit 199611f033.
2025-03-30 16:38:20 +09:00
XargonWan 84f3a9a933 Added test build script [skip ci] 2025-03-30 16:37:53 +09:00
XargonWan 57c0e0e610 Added gitignore 2025-03-30 16:37:08 +09:00
XargonWan 199611f033 TEST: updated libslirp to 4.9.0 (was 4.7.0) 2025-03-30 16:17:26 +09:00
XargonWan af15d488af Trying to build it on runtime 6.8 2025-03-30 16:07:11 +09:00
XargonWan 495b6f6139 Adding hotkey patch 2024-07-26 08:52:44 +09:00
4 changed files with 25 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.flatpak-builder
melonds-build

3
automation_tools/test-build.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
flatpak-builder --user --force-clean --install-deps-from=flathub --install-deps-from=flathub-beta --repo="./melonds-repo" "./melonds-build" net.kuribo64.melonDS.yml

18
hotkeys.patch Normal file
View file

@ -0,0 +1,18 @@
diff -au1r melonDS/src/frontend/qt_sdl/main.cpp melonDS/src/frontend/qt_sdl/main.cpp
--- melonDS/src/frontend/qt_sdl/main.cpp 2023-05-06 17:27:24.822375255 +0200
+++ melonDS/src/frontend/qt_sdl/main.cpp 2023-05-06 17:47:19.587498189 +0200
@@ -1467,3 +1467,3 @@
actSaveState[0] = submenu->addAction("File...");
- actSaveState[0]->setShortcut(QKeySequence(Qt::ShiftModifier | Qt::Key_F9));
+ actSaveState[0]->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_S));
actSaveState[0]->setData(QVariant(0));
@@ -1483,3 +1483,3 @@
actLoadState[0] = submenu->addAction("File...");
- actLoadState[0]->setShortcut(QKeySequence(Qt::Key_F9));
+ actLoadState[0]->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_A));
actLoadState[0]->setData(QVariant(0));
@@ -1489,3 +1489,3 @@
actUndoStateLoad = menu->addAction("Undo state load");
- actUndoStateLoad->setShortcut(QKeySequence(Qt::Key_F12));
+ actUndoStateLoad->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_8));
connect(actUndoStateLoad, &QAction::triggered, this, &MainWindow::onUndoStateLoad);

View file

@ -35,3 +35,5 @@ modules:
commit: 430de6b2702bb93faa8c2004aff3fbd084db4a1e commit: 430de6b2702bb93faa8c2004aff3fbd084db4a1e
- type: file - type: file
path: net.kuribo64.melonDS.appdata.xml path: net.kuribo64.melonDS.appdata.xml
- type: patch
path: hotkeys.patch