Permalink
Browse files

1.1.14 release

  • Loading branch information...
1 parent ce1ed16 commit 172cfd32b6ca1c9654223015c6fb3b87759684c2 @squentin committed Mar 18, 2015
Showing with 42 additions and 10 deletions.
  1. +23 −0 NEWS
  2. +9 −0 debian/changelog
  3. +1 −1 gmusicbrowser.man
  4. +5 −5 gmusicbrowser.pl
  5. +1 −1 gmusicbrowser_layout.pm
  6. +1 −1 gmusicbrowser_list.pm
  7. +1 −1 gmusicbrowser_songs.pm
  8. +1 −1 gmusicbrowser_tags.pm
View
23 NEWS
@@ -1,3 +1,26 @@
+v1.1.14
+add support for gstreamer-1.x and small gstreamer updates/improvements
+ gstreamer-1.x requires Glib::Object::Introspection and the gstreamer introspection data (Gst-1.0.typelib)
+ the option -nogst will now disable loading gstreamer entirely
+ the option -gst has been replaced by -gst0 that can force the use of gstreamer-0.10 even if gstreamer-1.0 is found
+ when using gstreamer-1, can now ask the system to install missing plugins
+add EqualizerPresets widget to change/edit equalizer presets (requires gstreamer-1.0)
+ adds EqualizerPresets to the default Equalizer layout
+ also adds EqualizerPresetsSimple widget as an alias for EqualizerPresets(open=1,notoggle=1)
+add way to edit "persistent" labels, and dialog to rename labels
+add "new label" entry to the "edit labels" submenu
+make scroll wheel increase/decrease numbers in the search bar
+add options to override default web browser and file browser
+add thousand separators in most displayed numbers
+various number-related improvements/fixes
+ show unit for bitrate and sampling rate
+ the length field now uses multiple units
+ more consistent size units
+ smarter parsing of units in search strings
+fix auto-selected embedded pictures always showing the first picture (only fix newly autoselected pictures)
+translations updates: Finnish, French, German, Polish, Korean, Serbian
+new translations: Lithuanian, Malay (Malaysia)
+
v1.1.13
add lots of features to PictureBrowser
add Stop/Quit/Turnoff-after-this-song feature
View
@@ -1,3 +1,12 @@
+gmusicbrowser (1.1.14) utopic; urgency=low
+
+ * new version
+ * removed libgstreamer-interfaces-perl from suggested packages
+ * moved libgstreamer-perl from recommended to suggested packages
+ * added libglib-object-introspection-perl and gir1.2-gstreamer-1.0 to recommended packages
+
+ -- Quentin Sculo <squentin@free.fr> Sat, 18 Mar 2015 23:35:00 +0200
+
gmusicbrowser (1.1.13) trusty; urgency=low
* new version
View
@@ -208,4 +208,4 @@ migrate the program to display DISPLAY (example : ":1")
http://gmusicbrowser.org/,
.SH "AUTHOR"
-Copyright (c) 2005-2011 Quentin Sculo <squentin@free.fr>
+Copyright (c) 2005-2015 Quentin Sculo <squentin@free.fr>
View
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# Copyright (C) 2005-2014 Quentin Sculo <squentin@free.fr>
+# Copyright (C) 2005-2015 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify
@@ -78,8 +78,8 @@ BEGIN
{
TRUE => 1,
FALSE => 0,
- VERSION => '1.1013001',
- VERSIONSTRING => '1.1.13.1',
+ VERSION => '1.1014',
+ VERSIONSTRING => '1.1.14',
PIXPATH => $DATADIR.SLASH.'pix'.SLASH,
PROGRAM_NAME => 'gmusicbrowser',
@@ -249,7 +249,7 @@ BEGIN
$default_home=$old;
}
-my $help=PROGRAM_NAME.' v'.VERSIONSTRING." (c)2005-2014 Quentin Sculo
+my $help=PROGRAM_NAME.' v'.VERSIONSTRING." (c)2005-2015 Quentin Sculo
options :
-nocheck: don't check for updated/deleted songs on startup
-noscan : don't scan folders for songs on startup
@@ -5944,7 +5944,7 @@ sub AutoSelPicture
sub AboutDialog
{ my $dialog=Gtk2::AboutDialog->new;
$dialog->set_version(VERSIONSTRING);
- $dialog->set_copyright("Copyright © 2005-2014 Quentin Sculo");
+ $dialog->set_copyright("Copyright © 2005-2015 Quentin Sculo");
#$dialog->set_comments();
$dialog->set_license("Released under the GNU General Public Licence version 3\n(http://www.gnu.org/copyleft/gpl.html)");
$dialog->set_website('http://gmusicbrowser.org');
View
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2014 Quentin Sculo <squentin@free.fr>
+# Copyright (C) 2005-2015 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify
View
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2014 Quentin Sculo <squentin@free.fr>
+# Copyright (C) 2005-2015 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify
View
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2014 Quentin Sculo <squentin@free.fr>
+# Copyright (C) 2005-2015 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify
View
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2010 Quentin Sculo <squentin@free.fr>
+# Copyright (C) 2005-2015 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify

0 comments on commit 172cfd3

Please sign in to comment.