mirror of
https://github.com/RetroDECK/net.kuribo64.melonDS.git
synced 2025-04-10 19:15:11 +00:00
Compare commits
7 commits
master-240
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
65c0d137e7 | ||
|
c7d614e227 | ||
|
84f3a9a933 | ||
|
57c0e0e610 | ||
|
199611f033 | ||
|
af15d488af | ||
|
495b6f6139 |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.flatpak-builder
|
||||
melonds-build
|
3
automation_tools/test-build.sh
Executable file
3
automation_tools/test-build.sh
Executable 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
18
hotkeys.patch
Normal 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);
|
|
@ -35,3 +35,5 @@ modules:
|
|||
commit: 430de6b2702bb93faa8c2004aff3fbd084db4a1e
|
||||
- type: file
|
||||
path: net.kuribo64.melonDS.appdata.xml
|
||||
- type: patch
|
||||
path: hotkeys.patch
|
||||
|
|
Loading…
Reference in a new issue