mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2025-06-18 16:45:39 -04:00
Official Release 1.2.0
This commit is contained in:
parent
8da1172b70
commit
35a8ee340d
4
.github/workflows/cd_main.yml
vendored
4
.github/workflows/cd_main.yml
vendored
@ -88,7 +88,7 @@ jobs:
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: cc3dsfs-single-rpi-mono
|
||||
path: cc3dsfs_rpi_mono_setup.zip
|
||||
path: cc3dsfs_rpi_kiosk_setup.zip
|
||||
|
||||
publish:
|
||||
name: Publishing
|
||||
@ -122,4 +122,4 @@ jobs:
|
||||
cc3dsfs_linux_pi32.zip
|
||||
cc3dsfs_linux_pi64.zip
|
||||
cc3dsfs_macos.zip
|
||||
cc3dsfs_rpi_mono_setup.zip
|
||||
cc3dsfs_rpi_kiosk_setup.zip
|
||||
|
2
.github/workflows/cd_pr.yml
vendored
2
.github/workflows/cd_pr.yml
vendored
@ -83,4 +83,4 @@ jobs:
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: cc3dsfs-single-rpi-mono
|
||||
path: cc3dsfs_rpi_mono_setup.zip
|
||||
path: cc3dsfs_rpi_kiosk_setup.zip
|
||||
|
@ -1,3 +1,19 @@
|
||||
1.2.0
|
||||
- Added support for the new Loopy DS (2024) Capture Card.
|
||||
- Added support for IS Nitro Capture.
|
||||
- Added support for IS Nitro Emulator (limited, shuts down the cartridge FPGA). Thanks Gericom.
|
||||
- Added Video Effects Settings Menu.
|
||||
- Further improved performance on capture data conversion.
|
||||
- Improved consistency of drawing capture data.
|
||||
- Switched to SFML 3.
|
||||
- Added Windows for ARM binary.
|
||||
- Fixed mouse cursor visibility while fullscreen in Windows.
|
||||
- Improved permission error report on Linux. Also added automatic script for USB rules setting.
|
||||
- Improved MacOS fullscreen setup.
|
||||
- Switched to universal MacOS binary.
|
||||
- Fixed issue with concurrent draws on MacOS.
|
||||
- Fixed issue with keyboard permissions on MacOS.
|
||||
-----------------------------------------
|
||||
1.1.1
|
||||
- Improved performance on both capture data conversion, and pixel drawing.
|
||||
- Switched back to previous MacOS fullscreen setup. Seems compatible with more hardware.
|
||||
|
@ -2,6 +2,7 @@ unzip -o cc3dsfs_linux_pi32.zip
|
||||
unzip -o cc3dsfs_linux_pi64.zip
|
||||
EXTRACTION_FOLDER="cc3dsfs_linux_pi"
|
||||
RPI_SETUP_FOLDER="rpi_setup"
|
||||
RPI_FINAL_ZIP_NAME="cc3dsfs_rpi_kiosk_setup.zip"
|
||||
mkdir -p ${RPI_SETUP_FOLDER}/files/Desktop/cc3dsfs_versions
|
||||
mkdir -p ${RPI_SETUP_FOLDER}/files/usr/lib/udev/rules.d
|
||||
cp ${EXTRACTION_FOLDER}32/cc3dsfs ${RPI_SETUP_FOLDER}/files/Desktop/cc3dsfs_versions/cc3dsfs_32
|
||||
@ -10,5 +11,5 @@ cp -r "${EXTRACTION_FOLDER}32/other licenses" "${RPI_SETUP_FOLDER}/files/Desktop
|
||||
cp ${EXTRACTION_FOLDER}32/*.rules ${RPI_SETUP_FOLDER}/files/usr/lib/udev/rules.d
|
||||
cp ${EXTRACTION_FOLDER}32/LICENSE ${RPI_SETUP_FOLDER}/files/Desktop
|
||||
cp ${EXTRACTION_FOLDER}32/README.md ${RPI_SETUP_FOLDER}/files/Desktop
|
||||
$(cd ${RPI_SETUP_FOLDER} ; zip -ry cc3dsfs_rpi_mono_setup.zip ./*)
|
||||
cp ${RPI_SETUP_FOLDER}/cc3dsfs_rpi_mono_setup.zip .
|
||||
$(cd ${RPI_SETUP_FOLDER} ; zip -ry ${RPI_FINAL_ZIP_NAME} ./*)
|
||||
cp ${RPI_SETUP_FOLDER}/${RPI_FINAL_ZIP_NAME} .
|
||||
|
@ -16,8 +16,8 @@
|
||||
#define str(a) #a
|
||||
|
||||
#define APP_VERSION_MAJOR 1
|
||||
#define APP_VERSION_MINOR 1
|
||||
#define APP_VERSION_REVISION 1
|
||||
#define APP_VERSION_MINOR 2
|
||||
#define APP_VERSION_REVISION 0
|
||||
#ifdef RASPI
|
||||
#define APP_VERSION_LETTER R
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user