Hello community,

here is the log from the commit of package orion for openSUSE:Factory checked 
in at 2017-09-09 20:26:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/orion (Old)
 and      /work/SRC/openSUSE:Factory/.orion.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "orion"

Sat Sep  9 20:26:49 2017 rev:11 rq:522277 version:1.6.1+git~20170827

Changes:
--------
--- /work/SRC/openSUSE:Factory/orion/orion.changes      2017-08-24 
18:50:35.260722360 +0200
+++ /work/SRC/openSUSE:Factory/.orion.new/orion.changes 2017-09-09 
20:26:52.147262606 +0200
@@ -1,0 +2,13 @@
+Sun Aug 27 09:48:08 UTC 2017 - pousadua...@gmail.com
+
+- Update to version 1.6.1+git~20170827:
+  * Added webpage link
+  * updated readme
+
+-------------------------------------------------------------------
+Fri Aug 25 09:48:48 UTC 2017 - pousadua...@gmail.com
+
+- Update to version 1.6.1+git~20170822:
+  * Added click animation
+
+-------------------------------------------------------------------

Old:
----
  orion-1.6.1+git~20170803.tar.xz

New:
----
  orion-1.6.1+git~20170827.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ orion.spec ++++++
--- /var/tmp/diff_new_pack.fZKF8X/_old  2017-09-09 20:26:52.847163954 +0200
+++ /var/tmp/diff_new_pack.fZKF8X/_new  2017-09-09 20:26:52.847163954 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           orion
-Version:        1.6.1+git~20170803
+Version:        1.6.1+git~20170827
 Release:        0
 Summary:        Twitch stream client using Qt
 License:        GPL-3.0
@@ -35,8 +35,8 @@
 
 BuildRequires:  pkgconfig(mpv)
 
-#Required to display GUI icons properly
-Requires:       fontawesome-fonts
+#Required for working gui
+Requires:       libqt5-qtquickcontrols2
 
 Requires(post):     hicolor-icon-theme
 Requires(postun):   hicolor-icon-theme

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.fZKF8X/_old  2017-09-09 20:26:52.895157189 +0200
+++ /var/tmp/diff_new_pack.fZKF8X/_new  2017-09-09 20:26:52.899156625 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/alamminsalo/orion.git</param>
-              <param 
name="changesrevision">b2825c211c41011e6989fd415fa62c7d6c499566</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">594c474a49b16a8ab2baf019a6d24c8d5862316c</param></service></servicedata>
\ No newline at end of file

++++++ orion-1.6.1+git~20170803.tar.xz -> orion-1.6.1+git~20170827.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.6.1+git~20170803/README.md 
new/orion-1.6.1+git~20170827/README.md
--- old/orion-1.6.1+git~20170803/README.md      2017-08-03 18:40:01.000000000 
+0200
+++ new/orion-1.6.1+git~20170827/README.md      2017-08-27 10:29:37.000000000 
+0200
@@ -1,9 +1,11 @@
 
 # Orion
 
+[Webpage](https://alamminsalo.github.io/orion)
+
 QML/C++-written desktop client for Twitch.tv
 
-Features: 
+## Features: 
 
 * Login by twitch credentials
 * Desktop notifications
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.6.1+git~20170803/src/qml/PlayerView.qml 
new/orion-1.6.1+git~20170827/src/qml/PlayerView.qml
--- old/orion-1.6.1+git~20170803/src/qml/PlayerView.qml 2017-08-03 
18:40:01.000000000 +0200
+++ new/orion-1.6.1+git~20170827/src/qml/PlayerView.qml 2017-08-27 
10:29:37.000000000 +0200
@@ -336,7 +336,52 @@
         onVisibleChanged: refreshHeaders()
         onPositionChanged: refreshHeaders()
 
+        Rectangle {
+            id: clickRect
+            anchors.centerIn: parent
+            width: 0
+            height: width
+            radius: height / 2
+            opacity: 0
+
+            Label {
+                id: clickRectIcon
+                text: renderer.status !== "PLAYING" ? "\ue037" : "\ue034"
+                anchors.centerIn: parent
+                font.family: "Material Icons"
+                font.pointSize: parent.width * 0.5
+            }
+
+            ParallelAnimation {
+                id: _anim
+                running: false
+
+                NumberAnimation {
+                    target: clickRect
+                    property: "width"
+                    from: 0
+                    to: pArea.width * 0.6
+                    duration: 1500
+                    easing.type: Easing.OutCubic
+                }
+                NumberAnimation {
+                    target: clickRect
+                    property: "opacity"
+                    from: 0.5
+                    to: 0
+                    duration: 666
+                    easing.type: Easing.OutCubic
+                }
+            }
+
+            function run() {
+                _anim.restart()
+            }
+        }
+
         onClicked: {
+            clickRect.run()
+
             if (root.headersVisible && bottomBar.height > 50)
                 clickTimer.restart()
             else


Reply via email to