Hello community,
here is the log from the commit of package python-PyChromecast for
openSUSE:Factory checked in at 2020-01-15 16:17:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-PyChromecast (Old)
and /work/SRC/openSUSE:Factory/.python-PyChromecast.new.30080 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyChromecast"
Wed Jan 15 16:17:53 2020 rev:7 rq:764631 version:4.1.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-PyChromecast/python-PyChromecast.changes
2019-09-25 08:39:13.182296956 +0200
+++
/work/SRC/openSUSE:Factory/.python-PyChromecast.new.30080/python-PyChromecast.changes
2020-01-15 16:46:18.233216873 +0100
@@ -1,0 +2,7 @@
+Wed Jan 15 11:26:42 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- update to 4.1.0
+ * Fix resettin status
+ * Add app icon to CastStatus
+
+-------------------------------------------------------------------
Old:
----
PyChromecast-4.0.1.tar.gz
New:
----
PyChromecast-4.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-PyChromecast.spec ++++++
--- /var/tmp/diff_new_pack.tT5mxM/_old 2020-01-15 16:46:18.609217082 +0100
+++ /var/tmp/diff_new_pack.tT5mxM/_new 2020-01-15 16:46:18.613217084 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-PyChromecast
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-PyChromecast
-Version: 4.0.1
+Version: 4.1.0
Release: 0
Summary: Python module to talk to Google Chromecast
License: MIT
@@ -54,6 +54,9 @@
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
+# no tests even on GitHub https://github.com/balloob/pychromecast/issues/333
+# but they will most probably ignore this issue
+
%files %{python_files}
%license LICENSE
%doc README.rst
++++++ PyChromecast-4.0.1.tar.gz -> PyChromecast-4.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/PyChromecast-4.0.1/PKG-INFO
new/PyChromecast-4.1.0/PKG-INFO
--- old/PyChromecast-4.0.1/PKG-INFO 2019-09-12 00:33:56.000000000 +0200
+++ new/PyChromecast-4.1.0/PKG-INFO 2019-10-17 06:49:28.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: PyChromecast
-Version: 4.0.1
+Version: 4.1.0
Summary: Python module to talk to Google Chromecast.
Home-page: https://github.com/balloob/pychromecast
Author: Paulus Schoutsen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/PyChromecast-4.0.1/PyChromecast.egg-info/PKG-INFO
new/PyChromecast-4.1.0/PyChromecast.egg-info/PKG-INFO
--- old/PyChromecast-4.0.1/PyChromecast.egg-info/PKG-INFO 2019-09-12
00:33:56.000000000 +0200
+++ new/PyChromecast-4.1.0/PyChromecast.egg-info/PKG-INFO 2019-10-17
06:49:28.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: PyChromecast
-Version: 4.0.1
+Version: 4.1.0
Summary: Python module to talk to Google Chromecast.
Home-page: https://github.com/balloob/pychromecast
Author: Paulus Schoutsen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/PyChromecast-4.0.1/pychromecast/socket_client.py
new/PyChromecast-4.1.0/pychromecast/socket_client.py
--- old/PyChromecast-4.0.1/pychromecast/socket_client.py 2019-09-10
02:04:44.000000000 +0200
+++ new/PyChromecast-4.1.0/pychromecast/socket_client.py 2019-10-17
06:49:00.000000000 +0200
@@ -144,6 +144,7 @@
"session_id",
"transport_id",
"status_text",
+ "icon_url",
],
)
@@ -1151,6 +1152,7 @@
app_data.get(SESSION_ID),
app_data.get("transportId"),
app_data.get("statusText", ""),
+ app_data.get("iconUrl"),
)
return status
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/PyChromecast-4.0.1/setup.py
new/PyChromecast-4.1.0/setup.py
--- old/PyChromecast-4.0.1/setup.py 2019-09-12 00:31:09.000000000 +0200
+++ new/PyChromecast-4.1.0/setup.py 2019-10-17 06:49:17.000000000 +0200
@@ -5,7 +5,7 @@
setup(
name="PyChromecast",
- version="4.0.1",
+ version="4.1.0",
license="MIT",
url="https://github.com/balloob/pychromecast",
author="Paulus Schoutsen",