diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3dd4ab --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +*.pyc + +# Various directory index, temp file and editor's config +*.DS_Store +*.idea +.*.swp + +# virtualenv +/bin +/include +/lib +/lib64 +/build +/local + +# buildout +*.egg-info +.installed.cfg +/develop-eggs +/django-apps-src +/eggs +/parts +/etc + +# Ruby +*.bundle + +# Various +/node_modules +/foundation5 + +*.sqlite3 diff --git a/Makefile b/Makefile index b58edb4..c92cd76 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,9 @@ clean: delpyc rm -Rf bin include lib local node_modules compass/.sass-cache install: - virtualenv --no-site-packages . - bin/pip install -r pip-requirements/basic.txt - bin/pip install psutil + virtualenv --no-site-packages --python=/usr/bin/python2.7 . + bin/python -m pip install -r pip-requirements/basic.txt + bin/python -m pip install psutil bin/python manage.py migrate install-dev: install diff --git a/README.md b/README.md index 162acf4..4803d39 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,23 @@ -# WARNING: THIS PROJECT IS NOT MAINTAINED ANYMORE. Feel free to fork and work on it. - -# Retropie-Manager -Recalbox-Manager fork for RetroPie 4.x - -![alt tag](https://github.com/RetroPie/RetroPie-Manager/blob/retropie/screenshot.png) +# Retropie-Manager-Plus # About - -This a Recalbox-Manager fork aimed to be used with RetroPie 4.x. - -Original repository: https://github.com/recalbox/recalbox-manager +This an enhanced RetroPie-Manager fork. +Original RetroPie-Manager repository: https://github.com/RetroPie/RetroPie-Manager # Features -With Retropie-Manager you can +With Retropie-Manager-Plus you can - Monitor the system health and disk space - Edit the Emulation Station config file - Edit the RetroArch config file - Edit the autostart.sh script - View the Emulation Station log file - Manage your BIOS files -- Manage your ROMS +- Manage your ROM files # Limitations - -- In this release the virtual gamepad page has been removed. -- It doesn't support subdirectories at ROMs dir (as reported [here](https://github.com/RetroPie/RetroPie-Manager/issues/5)) - +- It doesn't support subdirectories at ROMs dir (as reported [here](https://github.com/botolo78/RetroPie-Manager/issues/5)) # Install - -## RetroPie-Setup script - -Execute the RetroPie-Setup, choose "Manage packages" -> "Manage experimental packages" -> "retropie-manager". - -## Old Method - **Dependencies on Raspberry Pi** ```sh @@ -47,17 +30,17 @@ sudo apt-get install virtualenv python-dev sudo apt-get install python-virtualenv python-dev ``` -**Installing RetroPie-Manager** +**Installing RetroPie-Manager-Plus** ```sh cd -git clone https://github.com/RetroPie/RetroPie-Manager.git -cd RetroPie-Manager +git clone https://github.com/taleden/RetroPie-Manager-Plus.git +cd RetroPie-Manager-Plus make install ``` # Usage -You must be at the RetroPie-Manager's directory to use the `rpmanager.sh` like in the examples below. +You must be at the RetroPie-Manager-Plus's directory to use the `rpmanager.sh` like in the examples below. **Start** ```sh @@ -79,17 +62,17 @@ The OPTIONS are: -h|--help print this message and exit ---start start the RetroPie-Manager +--start start the RetroPie-Manager-Plus ---stop stop the RetroPie-Manager +--stop stop the RetroPie-Manager-Plus ---isrunning show if RetroPie-Manager is running and the +--isrunning show if RetroPie-Manager-Plus is running and the listening port and exit --log save the log messages (optional, default: not save log messages, only works with --start) --u|--user USER start RetroPie-Manager as USER (only available for +-u|--user USER start RetroPie-Manager-Plus as USER (only available for privileged users, only works with --start, USER must be a RetroPie user) @@ -100,22 +83,18 @@ user uses both, only the first works. # Autostart -To make Retropie-Manager to start with your raspberry edit your autostart.sh - -```sh -sudo nano /opt/retropie/configs/all/autostart.sh +To make Retropie-Manager-Plus to start with your RetroPie machine simply add it as a reboot Cronjob. +First, run +```crontab -e``` +Then, add the following line to the end of the file: ``` -and add this command before **emulationstation #auto** [replace `/PATH/TO/` with the RetroPie-Manager's full path.] - -```sh -/PATH/TO/RetroPie-Manager/rpmanager.sh --start 2>&1 & +@reboot /opt/retropie/supplementary/retropie-manager-plus/rpmanager.sh --start ``` - # Update ```sh -sudo kill -9 $(pgrep -f RetroPie-Manager) +sudo kill -9 $(pgrep -fi RetroPie-Manager) cd -cd Retropie-Manager +cd Retropie-Manager-Plus make clean git reset --hard HEAD git pull @@ -124,14 +103,24 @@ make install # Reinstall ```sh -sudo kill -9 $(pgrep -f RetroPie-Manager) +sudo kill -9 $(pgrep -fi RetroPie-Manager) cd -rm -rf Retropie-Manager -git clone https://github.com/RetroPie/RetroPie-Manager.git -cd RetroPie-Manager +rm -rf Retropie-Manager-Plus +git clone https://github.com/taleden/RetroPie-Manager-Plus.git +cd RetroPie-Manager-Plus make install ``` -# Known bugs - -- (FIXED) You'll get a 404 error trying to delete roms +# Additions to the base RetroPie-Manager: +- Adds .zip as a valid N64 ROM extension +- Adds .pbp as a valid PSX ROM extension +- Fixes PSX BIOS hashes +- Increases max uploadable rom size to 10GB from 256MB +- Adds real-time updating to Monitoring page (**Requires Javascript**) + +# Planned Features +- Update file system monitoring table if devices are added/removed e.g. a USB +- Adds custom-data monitoring +- Allows rom sub-directories +- Re-introduces save management +- Migrate to Python 3 diff --git a/__init__.pyc b/__init__.pyc deleted file mode 100644 index 1a7f066..0000000 Binary files a/__init__.pyc and /dev/null differ diff --git a/compass/.gitignore b/compass/.gitignore new file mode 100644 index 0000000..09c86a2 --- /dev/null +++ b/compass/.gitignore @@ -0,0 +1,2 @@ +.sass-cache +Gemfile.lock diff --git a/package.json b/package.json index a4626f1..a1023df 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.1.4.1", "private": true, "dependencies": { - "debug": "~2.2.0", + "debug": "~4.1.1", "grunt": "^0.4.5", "grunt-contrib-cssmin": "~0.12.3", "grunt-contrib-uglify": "~0.9.1", diff --git a/project/MANIFEST.xml b/project/MANIFEST.xml index 5aec785..4117c29 100644 --- a/project/MANIFEST.xml +++ b/project/MANIFEST.xml @@ -319,6 +319,7 @@ n64 v64 z64 + zip @@ -389,12 +390,13 @@ bin iso cue + pbp - SCPH1001.BIN scph5500.bin - scph5501.bin - scph5502.bin + scph5501.bin + scph1001.bin + scph5502.bin diff --git a/project/MANIFEST_KINDA_OLD.xml b/project/MANIFEST_KINDA_OLD.xml new file mode 100644 index 0000000..5aec785 --- /dev/null +++ b/project/MANIFEST_KINDA_OLD.xml @@ -0,0 +1,540 @@ + + + + + iso + + + panafz10.bin + + + + + adf + uae + hdf + lzx + + + kick13.rom + kick20.rom + kick31.rom + + + + + dsk + cpc + + + + + zip + + + + + a26 + bin + gz + rom + zip + + + + + a52 + bin + + + ATARIBAS.ROM + ATARIOSA.ROM + ATARIOSB.ROM + ATARIXL.ROM + 5200.rom + + + + + a78 + bin + zip + + + 7800 BIOS (U).rom + + + + + atr + bas + bin + com + dcm + gz + xex + xfd + + + ATARIBAS.ROM + ATARIOSA.ROM + ATARIOSB.ROM + ATARIXL.ROM + 5200.rom + + + + + j64 + jag + + + + + lnx + zip + + + lynxboot.img + + + + + ctr + img + ipf + raw + rom + st + stx + + + + + asc + bas + cas + ccc + dmk + dsk + jvc + os9 + rom + sna + vdk + wav + + + bas13.rom + + + + + bin + col + rom + zip + + + coleco.rom + + + + + crt + d64 + g64 + t64 + tap + x64 + + + + + .daphne + + + + + asc + bas + cas + ccc + dmk + dsk + jvc + os9 + rom + sna + vdk + wav + + + d32.rom + + + + + cdi + gdi + + + dc_boot.bin + dc_flash.bin + + + + + fba + zip + + + + + fds + zip + + + disksys.rom + + + + + gg + zip + + + + + gb + zip + + + + + gba + zip + + + gba_bios.bin + + + + + gb + gbc + zip + + + + + gen + md + smd + bin + zip + + + + + mgw + zip + + + http://bot.libretro.com/assets/cores/gw/ + + + + + bin + int + + + exec.bin + grom.bin + + + + + img + rom + + + + + zip + + + + + zip + + + + + zip + + + + + sms + zip + + + + + gen + md + smd + bin + zip + + + + + mx1 + mx2 + zip + + + CARTS.SHA + CYRILLIC.FNT + DISK.ROM + FMPAC16.ROM + FMPAC.ROM + ITALIC.FNT + KANJI.ROM + MSX2EXT.ROM + MSX2PEXT.ROM + MSX2P.ROM + MSX2.ROM + MSXDOS2.ROM + MSX.ROM + PAINTER.ROM + RS232.ROM + + + + + n64 + v64 + z64 + + + + + bin + nds + + + + + zip + + + + + nes + zip + + + + + ngp + zip + + + + + ngc + zip + + + + + dsk + tap + + + + + bat + com + exe + sh + + + + + pce + cue + ccd + sgx + zip + + + syscard3.pce + + + + + cso + iso + pbp + + + + + img + bin + iso + cue + + + SCPH1001.BIN + scph5500.bin + scph5501.bin + scph5502.bin + + + + + dsk + mgt + sad + sbt + + + + + bin + iso + mdf + + + saturn_bios.bin + + + + + svn + + + + + 32x + smd + bin + zip + + + 32X_G_BIOS.BIN + 32X_M_BIOS.BIN + 32X_S_BIOS.BIN + + + + + cue + + + us_scd2_9306.bin + eu_mcd2_9306.bin + jp_mcd1_9112.bin + bios_CD_U.bin + bios_CD_E.bin + bios_CD_J.bin + + + + + sg + zip + + + + + sfc + smc + zip + + + + + ctg + + + TI-994A.ctg + + + + + dsk + + + level2.rom + + + + + vec + zip + + + + + bin + + + o2rom.bin + + + + + vb + zip + + + + + ws + zip + + + + + wsc + zip + + + + + dat + z1 + z2 + z3 + z4 + z5 + z6 + z7 + z8 + zip + + + + + sna + szx + z80 + tap + tzx + gz + udi + mgt + img + trd + scl + dsk + + + diff --git a/project/__init__.py b/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/__init__.pyc b/project/__init__.pyc deleted file mode 100644 index f518441..0000000 Binary files a/project/__init__.pyc and /dev/null differ diff --git a/project/assets_cartographer/__init__.pyc b/project/assets_cartographer/__init__.pyc deleted file mode 100644 index 3056282..0000000 Binary files a/project/assets_cartographer/__init__.pyc and /dev/null differ diff --git a/project/assets_cartographer/models.py b/project/assets_cartographer/models.py new file mode 100644 index 0000000..e69de29 diff --git a/project/assets_cartographer/models.pyc b/project/assets_cartographer/models.pyc deleted file mode 100644 index 5fb17ec..0000000 Binary files a/project/assets_cartographer/models.pyc and /dev/null differ diff --git a/project/assets_cartographer/parser.pyc b/project/assets_cartographer/parser.pyc deleted file mode 100644 index 55945a3..0000000 Binary files a/project/assets_cartographer/parser.pyc and /dev/null differ diff --git a/project/assets_cartographer/registry.pyc b/project/assets_cartographer/registry.pyc deleted file mode 100644 index 5aa0735..0000000 Binary files a/project/assets_cartographer/registry.pyc and /dev/null differ diff --git a/project/assets_cartographer/templatetags/__init__.py b/project/assets_cartographer/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/assets_cartographer/templatetags/__init__.pyc b/project/assets_cartographer/templatetags/__init__.pyc deleted file mode 100644 index 61848bc..0000000 Binary files a/project/assets_cartographer/templatetags/__init__.pyc and /dev/null differ diff --git a/project/assets_cartographer/templatetags/assets.pyc b/project/assets_cartographer/templatetags/assets.pyc deleted file mode 100644 index 4f956d7..0000000 Binary files a/project/assets_cartographer/templatetags/assets.pyc and /dev/null differ diff --git a/project/manager_frontend/__init__.pyc b/project/manager_frontend/__init__.pyc deleted file mode 100644 index c1666d6..0000000 Binary files a/project/manager_frontend/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/admin.pyc b/project/manager_frontend/admin.pyc deleted file mode 100644 index 767e388..0000000 Binary files a/project/manager_frontend/admin.pyc and /dev/null differ diff --git a/project/manager_frontend/crumbs.pyc b/project/manager_frontend/crumbs.pyc deleted file mode 100644 index 54f928e..0000000 Binary files a/project/manager_frontend/crumbs.pyc and /dev/null differ diff --git a/project/manager_frontend/forms/__init__.pyc b/project/manager_frontend/forms/__init__.pyc deleted file mode 100644 index 4bfb74e..0000000 Binary files a/project/manager_frontend/forms/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/forms/bios.pyc b/project/manager_frontend/forms/bios.pyc deleted file mode 100644 index 132f8dc..0000000 Binary files a/project/manager_frontend/forms/bios.pyc and /dev/null differ diff --git a/project/manager_frontend/forms/config.pyc b/project/manager_frontend/forms/config.pyc deleted file mode 100644 index 943ce32..0000000 Binary files a/project/manager_frontend/forms/config.pyc and /dev/null differ diff --git a/project/manager_frontend/forms/roms.pyc b/project/manager_frontend/forms/roms.pyc deleted file mode 100644 index 857617e..0000000 Binary files a/project/manager_frontend/forms/roms.pyc and /dev/null differ diff --git a/project/manager_frontend/forms/systems.pyc b/project/manager_frontend/forms/systems.pyc deleted file mode 100644 index d2e0186..0000000 Binary files a/project/manager_frontend/forms/systems.pyc and /dev/null differ diff --git a/project/manager_frontend/migrations/__init__.py b/project/manager_frontend/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/manager_frontend/migrations/__init__.pyc b/project/manager_frontend/migrations/__init__.pyc deleted file mode 100644 index a840e44..0000000 Binary files a/project/manager_frontend/migrations/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/models.pyc b/project/manager_frontend/models.pyc deleted file mode 100644 index 2ced915..0000000 Binary files a/project/manager_frontend/models.pyc and /dev/null differ diff --git a/project/manager_frontend/templates/manager_frontend/.monitoring.html.swp b/project/manager_frontend/templates/manager_frontend/.monitoring.html.swp new file mode 100644 index 0000000..d9a058d Binary files /dev/null and b/project/manager_frontend/templates/manager_frontend/.monitoring.html.swp differ diff --git a/project/manager_frontend/templates/manager_frontend/base.html b/project/manager_frontend/templates/manager_frontend/base.html index 505fe1c..7678a86 100644 --- a/project/manager_frontend/templates/manager_frontend/base.html +++ b/project/manager_frontend/templates/manager_frontend/base.html @@ -11,4 +11,6 @@ {% block manager_content %}{% endblock %} {% endspaceless %} -{% endblock %} \ No newline at end of file + + +{% endblock %} diff --git a/project/manager_frontend/templates/manager_frontend/monitoring.html b/project/manager_frontend/templates/manager_frontend/monitoring.html index dfb1b93..094065a 100644 --- a/project/manager_frontend/templates/manager_frontend/monitoring.html +++ b/project/manager_frontend/templates/manager_frontend/monitoring.html @@ -3,9 +3,98 @@ {% block manager_content %} {% if PSUTIL_AVAILABLE %} + + + + +
-
+

{% trans "CPU" %}

@@ -16,9 +105,9 @@

{% blocktrans with number=forloop.counter %}Core {{ number }}{% endblocktrans %}

-
- - {{ core_int }}% +
+ + {{ core_int }}%
@@ -35,16 +124,16 @@

{% trans "Memory" %}

-
+
{% blocktrans with size=memory_infos.free_unified|filesizeformat %}Free: {{ size }}{% endblocktrans %}
- - {{ memory_usage_int }}% + + {{ memory_usage_int }}%
-
+
{% blocktrans with size=memory_infos.total|filesizeformat %}Total: {{ size }}{% endblocktrans %}
{% endwith %} @@ -52,8 +141,8 @@

{% trans "CPU Temperature" %}

-

{{ cpu_thermal_infos.current }}°c

-

{% trans "Max" %}: {{ cpu_thermal_infos.max }}°c

+

{{ cpu_thermal_infos.current }}°c

+

{% trans "Max" %}: {{ cpu_thermal_infos.max }}°c

@@ -76,7 +165,7 @@ {% for disk in filesystem_infos %}{% with usage_percent=disk.used_percent|floatformat:"0" %} - + {{ disk.device }} {{ disk.mountpoint }} {{ disk.fstype }} @@ -98,4 +187,4 @@
{% endif %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/project/manager_frontend/templates/manager_frontend/rom_list.html b/project/manager_frontend/templates/manager_frontend/rom_list.html index d72f409..3ea2ad0 100644 --- a/project/manager_frontend/templates/manager_frontend/rom_list.html +++ b/project/manager_frontend/templates/manager_frontend/rom_list.html @@ -15,7 +15,8 @@ }); }, 'url': "{% url 'manager:roms-upload' system=system %}", - 'paramName': "{{ upload_form.rom.name }}" + 'paramName': "{{ upload_form.rom.name }}", + 'maxFilesize': 10240 }; //]]> diff --git a/project/manager_frontend/templatetags/__init__.py b/project/manager_frontend/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/manager_frontend/templatetags/__init__.pyc b/project/manager_frontend/templatetags/__init__.pyc deleted file mode 100644 index ba86fff..0000000 Binary files a/project/manager_frontend/templatetags/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/templatetags/manager_tags.pyc b/project/manager_frontend/templatetags/manager_tags.pyc deleted file mode 100644 index 82d680c..0000000 Binary files a/project/manager_frontend/templatetags/manager_tags.pyc and /dev/null differ diff --git a/project/manager_frontend/urls.py b/project/manager_frontend/urls.py index 6ef3fbd..9913532 100644 --- a/project/manager_frontend/urls.py +++ b/project/manager_frontend/urls.py @@ -11,6 +11,7 @@ #from .views.saves import SavesListView from .views.systems import SystemsListView from .views.monitor import MonitoringView +from .views.monitor import update_context urlpatterns = [ url(r'^$', HomeView.as_view(), name='home'), @@ -36,4 +37,6 @@ url(r'^systems/roms/(?P\w+)/$', RomListView.as_view(), name='roms-list'), url(r'^systems/roms/(?P[-\w]+)/upload/$', RomUploadJsonView.as_view(), name='roms-upload'), + url(r'^monitor_update/$', update_context, name="monitor-update"), + ] diff --git a/project/manager_frontend/urls.pyc b/project/manager_frontend/urls.pyc deleted file mode 100644 index e348765..0000000 Binary files a/project/manager_frontend/urls.pyc and /dev/null differ diff --git a/project/manager_frontend/utils/__init__.py b/project/manager_frontend/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/manager_frontend/utils/__init__.pyc b/project/manager_frontend/utils/__init__.pyc deleted file mode 100644 index dcbb98c..0000000 Binary files a/project/manager_frontend/utils/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/utils/views.pyc b/project/manager_frontend/utils/views.pyc deleted file mode 100644 index 9dbf6e8..0000000 Binary files a/project/manager_frontend/utils/views.pyc and /dev/null differ diff --git a/project/manager_frontend/views/__init__.pyc b/project/manager_frontend/views/__init__.pyc deleted file mode 100644 index 3f35e5a..0000000 Binary files a/project/manager_frontend/views/__init__.pyc and /dev/null differ diff --git a/project/manager_frontend/views/bios.pyc b/project/manager_frontend/views/bios.pyc deleted file mode 100644 index ce10116..0000000 Binary files a/project/manager_frontend/views/bios.pyc and /dev/null differ diff --git a/project/manager_frontend/views/config.pyc b/project/manager_frontend/views/config.pyc deleted file mode 100644 index b77f257..0000000 Binary files a/project/manager_frontend/views/config.pyc and /dev/null differ diff --git a/project/manager_frontend/views/logs.pyc b/project/manager_frontend/views/logs.pyc deleted file mode 100644 index 98190e4..0000000 Binary files a/project/manager_frontend/views/logs.pyc and /dev/null differ diff --git a/project/manager_frontend/views/monitor.py b/project/manager_frontend/views/monitor.py index 76a295c..ca7fd0a 100644 --- a/project/manager_frontend/views/monitor.py +++ b/project/manager_frontend/views/monitor.py @@ -5,6 +5,7 @@ from django.conf import settings from django.views.generic import TemplateView +from django.http import JsonResponse # TODO: move to settings RECALBOX_THERMAL_BASEDIR = '/sys/class/thermal' @@ -103,3 +104,14 @@ def get_context_data(self, **kwargs): 'cpu_thermal_infos': self.get_thermal_infos(os.path.join(RECALBOX_THERMAL_BASEDIR, RECALBOX_THERMAL_DEVICE_CPU_DIR)), }) return context + + +def update_context(request, *args, **kwargs): + monitor = MonitoringView() + data = { + 'cpu_infos': monitor.get_cpu_infos(), + 'memory_infos': monitor.get_memory_infos(), + 'filesystem_infos': monitor.get_filesystem_infos(), + 'cpu_thermal_infos': monitor.get_thermal_infos(os.path.join(RECALBOX_THERMAL_BASEDIR, RECALBOX_THERMAL_DEVICE_CPU_DIR)), + } + return JsonResponse(data) diff --git a/project/manager_frontend/views/monitor.pyc b/project/manager_frontend/views/monitor.pyc deleted file mode 100644 index cc3f378..0000000 Binary files a/project/manager_frontend/views/monitor.pyc and /dev/null differ diff --git a/project/manager_frontend/views/roms.pyc b/project/manager_frontend/views/roms.pyc deleted file mode 100644 index 17aa8d5..0000000 Binary files a/project/manager_frontend/views/roms.pyc and /dev/null differ diff --git a/project/manager_frontend/views/systems.pyc b/project/manager_frontend/views/systems.pyc deleted file mode 100644 index d59561c..0000000 Binary files a/project/manager_frontend/views/systems.pyc and /dev/null differ diff --git a/project/recalbox_manifest/__init__.pyc b/project/recalbox_manifest/__init__.pyc deleted file mode 100644 index 8379cd5..0000000 Binary files a/project/recalbox_manifest/__init__.pyc and /dev/null differ diff --git a/project/recalbox_manifest/parser.pyc b/project/recalbox_manifest/parser.pyc deleted file mode 100644 index c338b61..0000000 Binary files a/project/recalbox_manifest/parser.pyc and /dev/null differ diff --git a/project/recalbox_manifest/registry.pyc b/project/recalbox_manifest/registry.pyc deleted file mode 100644 index 65ef277..0000000 Binary files a/project/recalbox_manifest/registry.pyc and /dev/null differ diff --git a/project/settings.pyc b/project/settings.pyc deleted file mode 100644 index 77b44c3..0000000 Binary files a/project/settings.pyc and /dev/null differ diff --git a/project/settings_production.pyc b/project/settings_production.pyc deleted file mode 100644 index 9d28f1f..0000000 Binary files a/project/settings_production.pyc and /dev/null differ diff --git a/project/templates/skeleton.html b/project/templates/skeleton.html index 30716b3..4252a2d 100644 --- a/project/templates/skeleton.html +++ b/project/templates/skeleton.html @@ -42,7 +42,7 @@
    diff --git a/project/urls.pyc b/project/urls.pyc deleted file mode 100644 index 471c663..0000000 Binary files a/project/urls.pyc and /dev/null differ diff --git a/project/utils/__init__.pyc b/project/utils/__init__.pyc deleted file mode 100644 index ca9a18c..0000000 Binary files a/project/utils/__init__.pyc and /dev/null differ diff --git a/project/utils/context_processors.pyc b/project/utils/context_processors.pyc deleted file mode 100644 index 472aa6a..0000000 Binary files a/project/utils/context_processors.pyc and /dev/null differ diff --git a/project/utils/imports.pyc b/project/utils/imports.pyc deleted file mode 100644 index 7a47865..0000000 Binary files a/project/utils/imports.pyc and /dev/null differ diff --git a/project/utils/views.pyc b/project/utils/views.pyc deleted file mode 100644 index 22d5757..0000000 Binary files a/project/utils/views.pyc and /dev/null differ diff --git a/project/webapp_statics/.gitignore b/project/webapp_statics/.gitignore new file mode 100644 index 0000000..443e03f --- /dev/null +++ b/project/webapp_statics/.gitignore @@ -0,0 +1,3 @@ +robots.txt +.webassets-cache +webassets.manifest diff --git a/project/webapp_statics/MANIFEST.xml b/project/webapp_statics/MANIFEST.xml index 7ca33ab..55674f7 100644 --- a/project/webapp_statics/MANIFEST.xml +++ b/project/webapp_statics/MANIFEST.xml @@ -190,6 +190,7 @@ n64 v64 z64 + zip http://www.planetemu.net/roms/nintendo-nintendo-64 @@ -244,12 +245,16 @@ img bin iso + pbp http://www.mondemul.net/machine.php?type=psx - SCPH1001.BIN + scph1001.bin + scph5500.bin + scph5501.bin + scph5502.bin diff --git a/project/wsgi.pyc b/project/wsgi.pyc deleted file mode 100644 index a6b7aa2..0000000 Binary files a/project/wsgi.pyc and /dev/null differ