Hello community,

here is the log from the commit of package museic for openSUSE:Factory checked 
in at 2018-01-31 19:54:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/museic (Old)
 and      /work/SRC/openSUSE:Factory/.museic.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "museic"

Wed Jan 31 19:54:06 2018 rev:2 rq:571346 version:1.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/museic/museic.changes    2018-01-10 
23:32:09.600492480 +0100
+++ /work/SRC/openSUSE:Factory/.museic.new/museic.changes       2018-01-31 
19:54:13.042988012 +0100
@@ -1,0 +2,16 @@
+Tue Jan 30 19:59:13 UTC 2018 - avvi...@yandex.by
+
+- Update to 1.5.1:
+  * Focus current file played onclick it's name in status labelº
+  * Connect open signal
+  * Update interface
+  * Add searchbox to search anf queque files
+  * Imp artist search: use search entry
+  * Add search bar for artists
+  * hange shown filelist onclick an artist
+  * Show artists im a liststore in a popover
+  * Max volume to 2
+  * Remote info as Popover
+  * Bugfix: copy correctlly filelist
+
+-------------------------------------------------------------------

Old:
----
  MuseIC-1.5.0.tar.gz

New:
----
  MuseIC-1.5.1.tar.gz

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

Other differences:
------------------
++++++ museic.spec ++++++
--- /var/tmp/diff_new_pack.s2L44g/_old  2018-01-31 19:54:13.734955831 +0100
+++ /var/tmp/diff_new_pack.s2L44g/_new  2018-01-31 19:54:13.734955831 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           museic
-Version:        1.5.0
+Version:        1.5.1
 Release:        0
 Summary:        Audio player with remote control
 License:        GPL-3.0

++++++ MuseIC-1.5.0.tar.gz -> MuseIC-1.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/MuseIC-1.5.0/data/com.github.bcedu.museic.appdata.xml 
new/MuseIC-1.5.1/data/com.github.bcedu.museic.appdata.xml
--- old/MuseIC-1.5.0/data/com.github.bcedu.museic.appdata.xml   2017-11-25 
19:42:33.000000000 +0100
+++ new/MuseIC-1.5.1/data/com.github.bcedu.museic.appdata.xml   2018-01-20 
16:45:11.000000000 +0100
@@ -33,6 +33,14 @@
         </screenshot>
     </screenshots>
     <releases>
+        <release version="1.5.1" date="2018-01-20">
+        ​      <description>
+        ​        <p>MuseIC Release</p>
+                <ul>
+                    <li>Fixes a bug which made that when sorting the current 
filelist and playing a file it wasn't played the correct file</li>
+                </ul>
+        ​      </description>
+    ​    </release>
   ​    <release version="1.5.0" date="2017-11-25">
   ​      <description>
   ​        <p>MuseIC Release</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MuseIC-1.5.0/src/museic.vala 
new/MuseIC-1.5.1/src/museic.vala
--- old/MuseIC-1.5.0/src/museic.vala    2017-11-25 19:42:33.000000000 +0100
+++ new/MuseIC-1.5.1/src/museic.vala    2018-01-20 16:45:11.000000000 +0100
@@ -302,15 +302,14 @@
         return this.museic_library.get_artists();
     }
 
-    public void change_filelist(string artist) {
+    public void change_filelist(MuseicFileList flist) {
         // Change current filelist to a filelist with only files of passed 
artist.
         // If passed artist is "all", filelist will have all files.
         // After changing filelits, playlist is cleaned.
         pause_file();
         clear_playlist();
         clear_filelist();
-        
this.museic_filelist.add_museic_files(this.museic_library.get_library_files(artist),
 true, "filelist");
-        this.museic_filelist.name = artist;
+        this.museic_filelist = flist.copy();
     }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MuseIC-1.5.0/src/museic_filelist.vala 
new/MuseIC-1.5.1/src/museic_filelist.vala
--- old/MuseIC-1.5.0/src/museic_filelist.vala   2017-11-25 19:42:33.000000000 
+0100
+++ new/MuseIC-1.5.1/src/museic_filelist.vala   2018-01-20 16:45:11.000000000 
+0100
@@ -163,6 +163,11 @@
     public MuseicFileList copy() {
         MuseicFileList aux = new MuseicFileList(this.name);
         foreach (MuseicFile f in this.files_list[0:this.nfiles]) 
aux.add_museic_file(f, f.origin);
+        aux.filepos = this.filepos;
+        aux.random_state = this.random_state;
+        aux.sorted = this.sorted;
+        aux.sort_field = this.sort_field;
+        aux.name = this.name;
         return aux;
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MuseIC-1.5.0/src/museic_gui.vala 
new/MuseIC-1.5.1/src/museic_gui.vala
--- old/MuseIC-1.5.0/src/museic_gui.vala        2017-11-25 19:42:33.000000000 
+0100
+++ new/MuseIC-1.5.1/src/museic_gui.vala        2018-01-20 16:45:11.000000000 
+0100
@@ -458,7 +458,7 @@
 
     [CCode(instance_pos=-1)]
     public void action_play_selected_file_filelist (Gtk.TreeView view, 
Gtk.TreePath path, Gtk.TreeViewColumn column) {
-        this.museic_app.change_filelist(this.museic_shown_filelist.name);
+        this.museic_app.change_filelist(this.museic_shown_filelist);
         update_files_to_tree();
         this.museic_app.clear_playlist();
         this.museic_app.play_filelist_file(int.parse(path.to_string()));


Reply via email to