├── .gitignore ├── Makefile ├── Python-Modules-Setup.local ├── Python3-Modules-Setup.local ├── README.md ├── ceval.c ├── htaccess.txt ├── importexport.c ├── main.c ├── patches ├── config.guess ├── config.sub ├── emscripten.patch ├── libzip-CMakeCache.txt └── pystub │ ├── subprocess.py │ └── threading.py ├── perfs.md ├── pygame-example-shell.html ├── pygame-example ├── DejaVuSans.ttf ├── main-one_iter.py ├── main-waitevent-opengl.py ├── main-waitevent.py └── pygame-icon.png ├── python-emscripten ├── 2.7.10 │ ├── package-pythonhome.sh │ ├── patches │ │ ├── python2-cross_compile.patch │ │ ├── python2-getentropy.patch │ │ ├── python2-no-openssl.patch │ │ ├── python2-no_popen.patch │ │ ├── python2-static_submodules.patch │ │ ├── python2-webbrowser.patch │ │ └── series │ ├── python.sh │ └── webprompt.sh ├── 2.7.18 │ ├── .gitignore │ ├── package-pythonhome.sh │ ├── patches │ │ ├── python2-cross_compile.patch │ │ ├── python2-less_aggressive.patch │ │ ├── python2-no_popen.patch │ │ ├── python2-webbrowser.patch │ │ └── series │ ├── python.sh │ └── webprompt.sh ├── 3.8 │ ├── package-pythonhome.sh │ ├── patches │ │ ├── disable-set_inheritable.patch │ │ ├── python3-cross_compile.patch │ │ └── series │ ├── python.sh │ └── webprompt.sh ├── LICENSE ├── README.md ├── emscripten.pyx ├── emscripten_fetch.pyx ├── git-export.sh ├── mock │ ├── emscripten.pyx │ └── emscripten_fetch.pyx ├── static_submodules-test.c ├── webprompt-main.c └── webprompt-shell.html ├── renpy-pre.js ├── renpy-shell.html ├── scripts ├── SDL2.sh ├── SDL2_image.sh ├── clean.sh ├── distribute_game-fixup_demos.sh ├── distribute_game.sh ├── ffmpeg-audioonly.sh ├── ffmpeg.sh ├── freetype.sh ├── fribidi.sh ├── install_in_renpy.sh ├── libjpeg-turbo.sh ├── libpng.sh ├── libwebp.sh ├── libzip.sh ├── native-static.sh ├── package-pyapp-pygame-example-dynamic.sh ├── package-pyapp-pygame-example-py3-static.sh ├── package-pyapp-pygame-example-static.sh ├── package-pyapp-renpy.sh ├── pygame_sdl2-dynamic.sh ├── pygame_sdl2-py3-static.sh ├── pygame_sdl2-static.sh ├── rebuild_for_renpy.sh ├── renpy_modules-static.sh └── zlib.sh ├── tests ├── listeners.html ├── testasync.c ├── testaudio.c ├── testbeforeunload.c ├── testbeforeunload.html ├── testcube2.c ├── testdouble-call.c ├── testdouble-set.c ├── testdouble2.c ├── testdup.c ├── testforcerefresh.rpy ├── testfullscreen-js.html ├── testfullscreen.c ├── testiframe.html ├── testlarge.c ├── testmainmodule.c ├── testsab-worker.js ├── testsab.html ├── testsidemodule.c ├── teststack.c ├── testtextinput-js.html ├── testtextinput.c ├── testthread.c └── testwebgl.txt ├── testserver.py ├── utils ├── asyncrequest.rpy └── ca.pem ├── web-presplash-default.jpg └── web-presplash-default.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/Makefile -------------------------------------------------------------------------------- /Python-Modules-Setup.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/Python-Modules-Setup.local -------------------------------------------------------------------------------- /Python3-Modules-Setup.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/Python3-Modules-Setup.local -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/README.md -------------------------------------------------------------------------------- /ceval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/ceval.c -------------------------------------------------------------------------------- /htaccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/htaccess.txt -------------------------------------------------------------------------------- /importexport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/importexport.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/main.c -------------------------------------------------------------------------------- /patches/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/patches/config.guess -------------------------------------------------------------------------------- /patches/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/patches/config.sub -------------------------------------------------------------------------------- /patches/emscripten.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/patches/emscripten.patch -------------------------------------------------------------------------------- /patches/libzip-CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/patches/libzip-CMakeCache.txt -------------------------------------------------------------------------------- /patches/pystub/subprocess.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/pystub/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/patches/pystub/threading.py -------------------------------------------------------------------------------- /perfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/perfs.md -------------------------------------------------------------------------------- /pygame-example-shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example-shell.html -------------------------------------------------------------------------------- /pygame-example/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example/DejaVuSans.ttf -------------------------------------------------------------------------------- /pygame-example/main-one_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example/main-one_iter.py -------------------------------------------------------------------------------- /pygame-example/main-waitevent-opengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example/main-waitevent-opengl.py -------------------------------------------------------------------------------- /pygame-example/main-waitevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example/main-waitevent.py -------------------------------------------------------------------------------- /pygame-example/pygame-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/pygame-example/pygame-icon.png -------------------------------------------------------------------------------- /python-emscripten/2.7.10/package-pythonhome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/package-pythonhome.sh -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-cross_compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-cross_compile.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-getentropy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-getentropy.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-no-openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-no-openssl.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-no_popen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-no_popen.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-static_submodules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-static_submodules.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/python2-webbrowser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/python2-webbrowser.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.10/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/patches/series -------------------------------------------------------------------------------- /python-emscripten/2.7.10/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/python.sh -------------------------------------------------------------------------------- /python-emscripten/2.7.10/webprompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.10/webprompt.sh -------------------------------------------------------------------------------- /python-emscripten/2.7.18/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/.gitignore -------------------------------------------------------------------------------- /python-emscripten/2.7.18/package-pythonhome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/package-pythonhome.sh -------------------------------------------------------------------------------- /python-emscripten/2.7.18/patches/python2-cross_compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/patches/python2-cross_compile.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.18/patches/python2-less_aggressive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/patches/python2-less_aggressive.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.18/patches/python2-no_popen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/patches/python2-no_popen.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.18/patches/python2-webbrowser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/patches/python2-webbrowser.patch -------------------------------------------------------------------------------- /python-emscripten/2.7.18/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/patches/series -------------------------------------------------------------------------------- /python-emscripten/2.7.18/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/python.sh -------------------------------------------------------------------------------- /python-emscripten/2.7.18/webprompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/2.7.18/webprompt.sh -------------------------------------------------------------------------------- /python-emscripten/3.8/package-pythonhome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/package-pythonhome.sh -------------------------------------------------------------------------------- /python-emscripten/3.8/patches/disable-set_inheritable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/patches/disable-set_inheritable.patch -------------------------------------------------------------------------------- /python-emscripten/3.8/patches/python3-cross_compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/patches/python3-cross_compile.patch -------------------------------------------------------------------------------- /python-emscripten/3.8/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/patches/series -------------------------------------------------------------------------------- /python-emscripten/3.8/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/python.sh -------------------------------------------------------------------------------- /python-emscripten/3.8/webprompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/3.8/webprompt.sh -------------------------------------------------------------------------------- /python-emscripten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/LICENSE -------------------------------------------------------------------------------- /python-emscripten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/README.md -------------------------------------------------------------------------------- /python-emscripten/emscripten.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/emscripten.pyx -------------------------------------------------------------------------------- /python-emscripten/emscripten_fetch.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/emscripten_fetch.pyx -------------------------------------------------------------------------------- /python-emscripten/git-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/git-export.sh -------------------------------------------------------------------------------- /python-emscripten/mock/emscripten.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/mock/emscripten.pyx -------------------------------------------------------------------------------- /python-emscripten/mock/emscripten_fetch.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/mock/emscripten_fetch.pyx -------------------------------------------------------------------------------- /python-emscripten/static_submodules-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/static_submodules-test.c -------------------------------------------------------------------------------- /python-emscripten/webprompt-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/webprompt-main.c -------------------------------------------------------------------------------- /python-emscripten/webprompt-shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/python-emscripten/webprompt-shell.html -------------------------------------------------------------------------------- /renpy-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/renpy-pre.js -------------------------------------------------------------------------------- /renpy-shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/renpy-shell.html -------------------------------------------------------------------------------- /scripts/SDL2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/SDL2.sh -------------------------------------------------------------------------------- /scripts/SDL2_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/SDL2_image.sh -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/distribute_game-fixup_demos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/distribute_game-fixup_demos.sh -------------------------------------------------------------------------------- /scripts/distribute_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/distribute_game.sh -------------------------------------------------------------------------------- /scripts/ffmpeg-audioonly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/ffmpeg-audioonly.sh -------------------------------------------------------------------------------- /scripts/ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/ffmpeg.sh -------------------------------------------------------------------------------- /scripts/freetype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/freetype.sh -------------------------------------------------------------------------------- /scripts/fribidi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/fribidi.sh -------------------------------------------------------------------------------- /scripts/install_in_renpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/install_in_renpy.sh -------------------------------------------------------------------------------- /scripts/libjpeg-turbo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/libjpeg-turbo.sh -------------------------------------------------------------------------------- /scripts/libpng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/libpng.sh -------------------------------------------------------------------------------- /scripts/libwebp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/libwebp.sh -------------------------------------------------------------------------------- /scripts/libzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/libzip.sh -------------------------------------------------------------------------------- /scripts/native-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/native-static.sh -------------------------------------------------------------------------------- /scripts/package-pyapp-pygame-example-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/package-pyapp-pygame-example-dynamic.sh -------------------------------------------------------------------------------- /scripts/package-pyapp-pygame-example-py3-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/package-pyapp-pygame-example-py3-static.sh -------------------------------------------------------------------------------- /scripts/package-pyapp-pygame-example-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/package-pyapp-pygame-example-static.sh -------------------------------------------------------------------------------- /scripts/package-pyapp-renpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/package-pyapp-renpy.sh -------------------------------------------------------------------------------- /scripts/pygame_sdl2-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/pygame_sdl2-dynamic.sh -------------------------------------------------------------------------------- /scripts/pygame_sdl2-py3-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/pygame_sdl2-py3-static.sh -------------------------------------------------------------------------------- /scripts/pygame_sdl2-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/pygame_sdl2-static.sh -------------------------------------------------------------------------------- /scripts/rebuild_for_renpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/rebuild_for_renpy.sh -------------------------------------------------------------------------------- /scripts/renpy_modules-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/renpy_modules-static.sh -------------------------------------------------------------------------------- /scripts/zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/scripts/zlib.sh -------------------------------------------------------------------------------- /tests/listeners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/listeners.html -------------------------------------------------------------------------------- /tests/testasync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testasync.c -------------------------------------------------------------------------------- /tests/testaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testaudio.c -------------------------------------------------------------------------------- /tests/testbeforeunload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testbeforeunload.c -------------------------------------------------------------------------------- /tests/testbeforeunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testbeforeunload.html -------------------------------------------------------------------------------- /tests/testcube2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testcube2.c -------------------------------------------------------------------------------- /tests/testdouble-call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testdouble-call.c -------------------------------------------------------------------------------- /tests/testdouble-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testdouble-set.c -------------------------------------------------------------------------------- /tests/testdouble2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testdouble2.c -------------------------------------------------------------------------------- /tests/testdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testdup.c -------------------------------------------------------------------------------- /tests/testforcerefresh.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testforcerefresh.rpy -------------------------------------------------------------------------------- /tests/testfullscreen-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testfullscreen-js.html -------------------------------------------------------------------------------- /tests/testfullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testfullscreen.c -------------------------------------------------------------------------------- /tests/testiframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testiframe.html -------------------------------------------------------------------------------- /tests/testlarge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testlarge.c -------------------------------------------------------------------------------- /tests/testmainmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testmainmodule.c -------------------------------------------------------------------------------- /tests/testsab-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testsab-worker.js -------------------------------------------------------------------------------- /tests/testsab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testsab.html -------------------------------------------------------------------------------- /tests/testsidemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testsidemodule.c -------------------------------------------------------------------------------- /tests/teststack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/teststack.c -------------------------------------------------------------------------------- /tests/testtextinput-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testtextinput-js.html -------------------------------------------------------------------------------- /tests/testtextinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testtextinput.c -------------------------------------------------------------------------------- /tests/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testthread.c -------------------------------------------------------------------------------- /tests/testwebgl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/tests/testwebgl.txt -------------------------------------------------------------------------------- /testserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/testserver.py -------------------------------------------------------------------------------- /utils/asyncrequest.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/utils/asyncrequest.rpy -------------------------------------------------------------------------------- /utils/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/utils/ca.pem -------------------------------------------------------------------------------- /web-presplash-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/web-presplash-default.jpg -------------------------------------------------------------------------------- /web-presplash-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renpy/renpyweb/HEAD/web-presplash-default.png --------------------------------------------------------------------------------