# HG changeset patch # User Thierry Florac # Date 1601302049 -7200 # Node ID 199e70b677d6b9acf38184b79d61f4fb3ef7ece6 # Parent 2f7e36cb0e05c142543aa2c572074dd3d3f7d8c9 Version 0.1.20 diff -r 2f7e36cb0e05 -r 199e70b677d6 buildout.cfg --- a/buildout.cfg Mon Sep 28 15:26:53 2020 +0200 +++ b/buildout.cfg Mon Sep 28 16:07:29 2020 +0200 @@ -20,6 +20,7 @@ src = src develop = . + ../myams ../pyams_catalog ../pyams_file ../pyams_form @@ -74,4 +75,4 @@ eggs = pyams_media [test] [versions] -pyams_media = 0.1.19.1 +pyams_media = 0.1.20 diff -r 2f7e36cb0e05 -r 199e70b677d6 docs/HISTORY.txt --- a/docs/HISTORY.txt Mon Sep 28 15:26:53 2020 +0200 +++ b/docs/HISTORY.txt Mon Sep 28 16:07:29 2020 +0200 @@ -1,6 +1,12 @@ History ======= +0.1.20 +------ + - removed media-queries on videos templates (which are not supported by browsers); responsive + use of videos will now require Javascript code (see "pyams_default_theme") + - extracted "video.get_video_type()" code from "video_type" TALES extension + 0.1.19.1 -------- - updated videos templates diff -r 2f7e36cb0e05 -r 199e70b677d6 setup.py --- a/setup.py Mon Sep 28 15:26:53 2020 +0200 +++ b/setup.py Mon Sep 28 16:07:29 2020 +0200 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.19.1' +version = '0.1.20' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -58,7 +58,7 @@ # -*- Extra requirements: -*- 'persistent', 'pyams_file', - 'pyams_utils >= 0.1.15', + 'pyams_utils >= 0.1.37', 'pyams_zmq', 'pyramid', 'transaction',