This commit is contained in:
whitecum1488 2026-07-03 00:26:22 +03:00
parent 1d77158f29
commit 04867c9691
4 changed files with 4 additions and 63 deletions

View file

@ -9,13 +9,13 @@
| GNU/Hurd | 1% | В работе |
| Solaris/OpenSolaris | 1% | В работе |
| RedoxOS | 0% | Не хватает библеотек |
| Android | 3% | В работе |
| Android | 4% | В работе |
| PS Vita | 0% | В работе |
| PSP | 1% | В работе |
| Emspritein(web) | 11% | Нет хватает библеотек<br>&nbsp;* Нужно написать порт библеотеки libsigc++2<br>(А лучше 3 и переписать движок)<br>&nbsp;* Проблемы с компиляцией и зависимостями |
| HaikuOS | 0% | В работе |
| DOS | 0.1% | Не в работе |
| Ubuntu Touch | 60% | Будет почти готово тогда когда Linux порт будет доведён до ума |
| DOS | 0.2% | Не в работе |
| Ubuntu Touch | 61% | Будет почти готово тогда когда Linux порт будет доведён до ума |
| Аврора ОС | 0% | Возможно, но пока не в работе |
| ChromeOS/ChromiumOS | 0% | Неизвестное |
| ChromeOS/ChromiumOS | 0.4% | Неизвестное |
| MacOS | 10% | Неизвестное, но работа ведётся |

View file

@ -1,31 +0,0 @@
@echo off
setlocal
echo Sunshine installer
set /p oneshot_path=Enter the Oneshot 2016 installation path:
set /p install_path=Enter the path to install Sunshine:
set "TARGET=%install_path%\oneshot.exe"
set "ICON=%install_path%\icon.ico"
if not exist "%install_path%\" mkdir "%install_path%"
echo Copying the files of the original Oneshot
xcopy "%oneshot_path%\*" "%install_path%\" /E /I /Y
if errorlevel 1 echo Warning: xcopy from oneshot_path returned non-zero code.
echo Patching the original game
xcopy "Sunshine\*" "%install_path%\" /E /I /Y
if errorlevel 1 echo Warning: xcopy from Sunshine returned non-zero code.
echo (create .int files) :: <-- реализуйте здесь если нужно
powershell -NoProfile -Command ^
"$s=New-Object -ComObject WScript.Shell; $l=$s.CreateShortcut('%USERPROFILE%\Desktop\Sunshine.lnk'); $l.TargetPath='%TARGET%'; $l.IconLocation='%ICON%'; $l.WorkingDirectory=(Split-Path '%TARGET%'); $l.Save()"
powershell -NoProfile -Command ^
"$s=New-Object -ComObject WScript.Shell; $l=$s.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\Sunshine.lnk'); $l.TargetPath='%TARGET%'; $l.IconLocation='%ICON%'; $l.WorkingDirectory=(Split-Path '%TARGET%'); $l.Save()"
echo Done!
endlocal
pause

View file

@ -1,24 +0,0 @@
#!/bin/bash
set -euo pipefail
read -rp "Enter your Oneshot 2016 installation path: " oneshot_path
read -rp "Enter path for installation: " install_path
mkdir -p $install_path
cp -r $oneshot_path/* "$install_path/"
cp -r Sunshine/* "$install_path/"
echo """[Desktop Entry]
Type=Application
Name=Oneshot: Sunshine
Comment=Oneshot mod
Exec=/bin/sh $install_path/oneshot.sh
Icon=$install_path/icon.png
Categories=Game;
""" > $HOME/.local/share/applications/sunshine.desktop
set +u
echo "LD_LIBRARY_PATH=$install_path:$LD_LIBRARY_PATH $install_path/oneshot" > $install_path/oneshot.sh
chmod +x $install_path/oneshot.sh
chmod +x $install_path/oneshot
echo "Done!"

View file

@ -1,4 +0,0 @@
#/bin/sh
TMP=$(mktemp)
find src > $TMP
python3 create-android-project.py cats.catwindowteam.sunshine --variant symlink --output ./android-project < $TMP