--- 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
--- 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
--- 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',