This commit is contained in:
ed 2022-06-20 01:31:29 +02:00
parent 0e61e70670
commit cea5aecbf2
5 changed files with 9 additions and 6 deletions

View file

@ -9,11 +9,13 @@
turn your phone or raspi into a portable file server with resumable uploads/downloads using *any* web browser turn your phone or raspi into a portable file server with resumable uploads/downloads using *any* web browser
* server only needs `py2.7` or `py3.3+`, all dependencies optional * server only needs `py2.7` or `py3.3+`, all dependencies optional
* browse/upload with IE4 / netscape4.0 on win3.11 (heh) * browse/upload with [IE4](#browser-support) / netscape4.0 on win3.11 (heh)
* *resumable* uploads need `firefox 34+` / `chrome 41+` / `safari 7+` for full speed * *resumable* uploads need `firefox 34+` / `chrome 41+` / `safari 7+` for full speed
* code standard: `black` * code standard: `black`
📷 **screenshots:** [browser](#the-browser) // [upload](#uploading) // [unpost](#unpost) // [thumbnails](#thumbnails) // [search](#searching) // [fsearch](#file-search) // [zip-DL](#zip-downloads) // [md-viewer](#markdown-viewer) // [ie4](#browser-support) try the **[read-only demo server](https://a.ocv.me/pub/demo/)** 👀 running from a basement in finland
📷 **screenshots:** [browser](#the-browser) // [upload](#uploading) // [unpost](#unpost) // [thumbnails](#thumbnails) // [search](#searching) // [fsearch](#file-search) // [zip-DL](#zip-downloads) // [md-viewer](#markdown-viewer)
## get the app ## get the app

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (1, 3, 1) VERSION = (1, 3, 2)
CODENAME = "god dag" CODENAME = "god dag"
BUILD_DT = (2022, 6, 16) BUILD_DT = (2022, 6, 20)
S_VERSION = ".".join(map(str, VERSION)) S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -1842,6 +1842,7 @@ a.btn,
.full-image img, .full-image img,
.full-image video { .full-image video {
display: inline-block; display: inline-block;
outline: none;
width: auto; width: auto;
height: auto; height: auto;
max-width: 100%; max-width: 100%;

View file

@ -128,7 +128,7 @@ write markdown (most html is 🙆 too)
<script> <script>
var last_modified = {{ lastmod }}, var last_modified = {{ lastmod }},
have_emp = {{ have_emp }}; have_emp = {{ have_emp|tojson }};
var md_opt = { var md_opt = {
link_md_as_html: false, link_md_as_html: false,

View file

@ -26,7 +26,7 @@
<script> <script>
var last_modified = {{ lastmod }}, var last_modified = {{ lastmod }},
have_emp = {{ have_emp }}; have_emp = {{ have_emp|tojson }};
var md_opt = { var md_opt = {
link_md_as_html: false, link_md_as_html: false,