diff --git a/.github/workflows/cd_main.yml b/.github/workflows/cd_main.yml index 84aefa5..6286145 100644 --- a/.github/workflows/cd_main.yml +++ b/.github/workflows/cd_main.yml @@ -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 diff --git a/.github/workflows/cd_pr.yml b/.github/workflows/cd_pr.yml index 473f8ac..67dba50 100644 --- a/.github/workflows/cd_pr.yml +++ b/.github/workflows/cd_pr.yml @@ -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 diff --git a/rpi_setup/changelog.txt b/rpi_setup/changelog.txt index d95075c..af5200f 100644 --- a/rpi_setup/changelog.txt +++ b/rpi_setup/changelog.txt @@ -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. diff --git a/setup_scripts/rpi_mono_setup_setup.sh b/setup_scripts/rpi_mono_setup_setup.sh index aabff31..b6d41d9 100755 --- a/setup_scripts/rpi_mono_setup_setup.sh +++ b/setup_scripts/rpi_mono_setup_setup.sh @@ -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} . diff --git a/source/utils.cpp b/source/utils.cpp index 5365df3..31a644d 100755 --- a/source/utils.cpp +++ b/source/utils.cpp @@ -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