diff --git a/README.md b/README.md index 277a3e3..db0fb5d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ This package for YunoHost used [django-yunohost-integration](https://github.com/ More screenshots are here: [jedie.github.io/tree/master/screenshots/django-for-runners](https://github.com/jedie/jedie.github.io/tree/master/screenshots/django-for-runners/README.creole) -**Shipped version:** 0.13.0~ynh1 +**Shipped version:** 0.13.0~ynh2 diff --git a/README_fr.md b/README_fr.md index 533873d..f4c4d75 100644 --- a/README_fr.md +++ b/README_fr.md @@ -29,7 +29,7 @@ This package for YunoHost used [django-yunohost-integration](https://github.com/ More screenshots are here: [jedie.github.io/tree/master/screenshots/django-for-runners](https://github.com/jedie/jedie.github.io/tree/master/screenshots/django-for-runners/README.creole) -**Version incluse :** 0.13.0~ynh1 +**Version incluse :** 0.13.0~ynh2 diff --git a/conf/urls.py b/conf/urls.py index 692e08d..5806cb6 100644 --- a/conf/urls.py +++ b/conf/urls.py @@ -3,8 +3,7 @@ from django.conf.urls import static from django.contrib import admin from django.urls import path - -# from django_yunohost_integration.views import request_media_debug_view +from for_runners.views.media_files import UserMediaView if settings.PATH_URL: @@ -12,10 +11,9 @@ if settings.PATH_URL: # Prefix all urls with "PATH_URL": urlpatterns = [ path(f'{settings.PATH_URL}/', admin.site.urls), - # path(f'{settings.PATH_URL}/debug/', request_media_debug_view), + path(f'{settings.PATH_URL}/media//', UserMediaView.as_view()), # TODO: https://github.com/jedie/django-for-runners/issues/25 - # MEDIA_URL contains the "PATH_URL" already: # path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')), ] if settings.SERVE_FILES: diff --git a/manifest.json b/manifest.json index 189aac0..c6a679c 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Store your GPX tracks of your running (or other sports activity)" }, - "version": "0.13.0~ynh1", + "version": "0.13.0~ynh2", "url": "https://github.com/jedie/django-for-runners", "upstream": { "license": "GPL-3.0", diff --git a/pyproject.toml b/pyproject.toml index baef9ac..94d9b4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "for_runners_ynh" -version = "0.13.0~ynh1" +version = "0.13.0~ynh2" description = "Test for_runners_ynh via local_test.py" authors = ["JensDiemer "] license = "GPL"