mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	 983d7f43f8
			
		
	
	
		983d7f43f8
		
			
		
	
	
	
	
		
			
			* Remove dummy description for mod config options
* Tag release candidate version
* Apply min width to element triggering rmlui assert (#573)
* Restore 0th day (#574)
* Handle controller up events even while binding inputs to avoid spamming the bind button
* Add MouseButton UI event and use it to fix focus issue on radio, also fix sliders not moving until mouse is released
* Bump version string to 1.2.0-rc2
* mod configure menu description padding set to 16
* Added the ability for focus to set the current mod config option description (#576)
* Added the ability for focus to set the current mod config option description
* add focus to text input
* only clear description if element matches
* Fix race condition crash when setting element text, bump version to 1.2.0-rc3
* Revert "Fix race condition crash when setting element text, bump version to 1.2.0-rc3"
This reverts commit 4934a04d8a.
* Defer setting an element's text if it has children to fix race condition crash, bump version to 1.2.0-rc3
* Defer remaining set_text calls to prevent another race conditionresource
* Update runtime to fix some issues that could happen after mod conflicts
and bump version to 1.2.0-rc4
* Update runtime to fix regenerated functions using the wrong event index and bump version to 1.2.0-rc5
* Add support for suffixed .so. files. Also prevent dropping extracted dynamic libraries.
* Update RT64 commit to fix cstdint include for re-spirv.
* Bump version to rc6.
* Dummy commit to fix CI bot
* Use compile-time macro for Flatpak instead.
* Rename macro.
* Bump version to 1.2.0-rc7
* Fix define on flatpak, add cwd behavior.
* Temporarily disable current working dir code.
* Add the cmake option for flatpak.
* Bump version to 1.2.0-rc8
* Update MacPorts. (#578)
* Update MacPorts.
* Try GitHub runner.
* Deselect universal, return to blaze.
* pull universal libiconv first
* Fix controller nav issues in config menu, bump version to 1.2.0-rc9
---------
Co-authored-by: thecozies <79979276+thecozies@users.noreply.github.com>
Co-authored-by: LittleCube <littlecubehax@gmail.com>
Co-authored-by: Dario <dariosamo@gmail.com>
		
	
			
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "id": "io.github.zelda64recomp.zelda64recomp",
 | |
|   "runtime": "org.freedesktop.Platform",
 | |
|   "runtime-version": "23.08",
 | |
|   "sdk": "org.freedesktop.Sdk",
 | |
|   "sdk-extensions" : [ "org.freedesktop.Sdk.Extension.llvm18" ],
 | |
|   "finish-args": [
 | |
|     "--share=network",
 | |
|     "--socket=wayland",
 | |
|     "--socket=fallback-x11",
 | |
|     "--socket=pulseaudio",
 | |
|     "--device=all",
 | |
|     "--filesystem=host",
 | |
|     "--filesystem=/media",
 | |
|     "--filesystem=/run/media",
 | |
|     "--filesystem=/mnt"
 | |
|   ],
 | |
|   "modules": [
 | |
|     {
 | |
|       "name": "Zelda64Recompiled",
 | |
|       "buildsystem": "simple",
 | |
|       "build-commands": [
 | |
|         "cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S lib/N64Recomp -B lib/N64Recomp/cmake-build",
 | |
|         "cmake --build lib/N64Recomp/cmake-build --config Release --target N64Recomp --parallel",
 | |
|         "cmake --build lib/N64Recomp/cmake-build --config Release --target RSPRecomp --parallel",
 | |
|         "cp lib/N64Recomp/cmake-build/N64Recomp N64Recomp",
 | |
|         "cp lib/N64Recomp/cmake-build/RSPRecomp RSPRecomp",
 | |
|         "./N64Recomp us.rev1.toml",
 | |
|         "./RSPRecomp aspMain.us.rev1.toml",
 | |
|         "./RSPRecomp njpgdspMain.us.rev1.toml",
 | |
|         "cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_MAKE_PROGRAM=ninja -DPATCHES_C_COMPILER=clang -DPATCHES_LD=ld.lld -DRECOMP_FLATPAK=ON -G Ninja -S . -B cmake-build",
 | |
|         "cmake --build cmake-build --config Release --target Zelda64Recompiled --parallel",
 | |
|         "rm -rf assets/scss",
 | |
|         "mkdir -p /app/bin",
 | |
|         "cp cmake-build/Zelda64Recompiled /app/bin/Zelda64Recompiled",
 | |
|         "cp recompcontrollerdb.txt /app/bin/recompcontrollerdb.txt",
 | |
|         "cp -R assets /app/bin/assets",
 | |
|         "install -Dm644 icons/512.png /app/share/icons/hicolor/512x512/apps/${FLATPAK_ID}.png",
 | |
|         "install -Dm644 flatpak/io.github.zelda64recomp.zelda64recomp.metainfo.xml /app/share/metainfo/${FLATPAK_ID}.metainfo.xml",
 | |
|         "install -Dm644 flatpak/io.github.zelda64recomp.zelda64recomp.desktop /app/share/applications/${FLATPAK_ID}.desktop"
 | |
|       ],
 | |
|       "sources": [
 | |
|         {
 | |
|           "type": "git",
 | |
|           "url": "https://github.com/N64Recomp/N64Recomp.git",
 | |
|           "commit": "989a86b36912403cd323de884bf834f2605ea770",
 | |
|           "dest": "lib/N64Recomp"
 | |
|         },
 | |
|         {
 | |
|           "type": "dir",
 | |
|           "path": "../"
 | |
|         }
 | |
|       ],
 | |
|       "build-options": {
 | |
|         "append-path": "/usr/lib/sdk/llvm18/bin",
 | |
|         "prepend-ld-library-path": "/usr/lib/sdk/llvm18/lib",
 | |
|         "build-args": [
 | |
|           "--share=network"
 | |
|         ]
 | |
|       }
 | |
|     }
 | |
|   ]
 | |
| }
 |