diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/debian/bzr-builder.manifest noise-0.3.0+r1790+pkg87~ubuntu14.10.1/debian/bzr-builder.manifest --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/debian/bzr-builder.manifest 2015-03-24 18:05:47.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/debian/bzr-builder.manifest 2015-03-25 18:32:05.000000000 +0000 @@ -1,3 +1,3 @@ -# bzr-builder format 0.3 deb-version {debupstream}+r1789+pkg87 -lp:noise revid:rabbitbot-20150324160056-xnwedcb13gqssxyw +# bzr-builder format 0.3 deb-version {debupstream}+r1790+pkg87 +lp:noise revid:rabbitbot-20150325182037-gyznc02uljpwpi9j nest-part packaging lp:~elementary-os/noise/deb-packaging debian debian revid:corentin@elementary.io-20150223113722-dj481k3we4ljld88 diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/debian/changelog noise-0.3.0+r1790+pkg87~ubuntu14.10.1/debian/changelog --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/debian/changelog 2015-03-24 18:05:47.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/debian/changelog 2015-03-25 18:32:05.000000000 +0000 @@ -1,8 +1,8 @@ -noise (0.3.0+r1789+pkg87~ubuntu14.10.1) utopic; urgency=low +noise (0.3.0+r1790+pkg87~ubuntu14.10.1) utopic; urgency=low * Auto build. - -- Launchpad Package Builder Tue, 24 Mar 2015 18:05:47 +0000 + -- Launchpad Package Builder Wed, 25 Mar 2015 18:32:05 +0000 noise (0.3.0) trusty; urgency=medium diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/MediaEditor.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/MediaEditor.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/MediaEditor.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/MediaEditor.vala 2015-03-25 18:31:58.000000000 +0000 @@ -448,7 +448,7 @@ nameBox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); label.justify = Gtk.Justification.LEFT; - label.xalign = 0.0f; + label.halign = Gtk.Align.START; label.set_markup("" + _name + ""); nameBox.pack_start(check, false, false, 0); @@ -629,11 +629,11 @@ reset = new Gtk.Button.with_label(_("Reset")); header.justify = Gtk.Justification.LEFT; - header.xalign = 0.0f; + header.halign = Gtk.Align.START; header.set_markup(_("Stats")); info.justify = Gtk.Justification.LEFT; - info.xalign = 0.0f; + info.halign = Gtk.Align.START; setInfoText(); diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/NotImportedWindow.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/NotImportedWindow.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/NotImportedWindow.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/NotImportedWindow.vala 2015-03-25 18:31:58.000000000 +0000 @@ -50,11 +50,11 @@ // initialize controls var warning = new Gtk.Image.from_icon_name ("dialog-error", Gtk.IconSize.DIALOG); var title = new Gtk.Label (_("Unable to import %d items from %s").printf (files.size, music_folder)); - title.xalign = 0.0f; + title.halign = Gtk.Align.START; title.hexpand = true; title.set_markup ("" + Markup.escape_text (_("Unable to import %d items from %s").printf (files.size, music_folder), -1) + ""); var info = new Gtk.Label (_("%s was unable to import %d items. The files may be damaged.").printf (((Noise.App) GLib.Application.get_default ()).get_name (), files.size)); - info.xalign = 0.0f; + info.halign = Gtk.Align.START; info.set_line_wrap (false); var trashAll = new Gtk.CheckButton.with_label (_("Move all corrupted files to trash")); trashAll.yalign = 0.5f; diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/RemoveFilesDialog.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/RemoveFilesDialog.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/RemoveFilesDialog.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/RemoveFilesDialog.vala 2015-03-25 18:31:58.000000000 +0000 @@ -54,7 +54,7 @@ bool multiple_media = to_remove.size > 1; // set title text - title.xalign = 0.0f; + title.halign = Gtk.Align.START; string title_text = ""; if (multiple_media) { @@ -67,7 +67,7 @@ title.set_markup("" + String.escape (title_text) + ""); // set info text - info.xalign = 0.0f; + info.halign = Gtk.Align.START; info.set_line_wrap (true); int n = to_remove.size; string info_text = ngettext ("This will remove the song from your library and from any device that automatically syncs with %s.", diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SetMusicFolderConfirmation.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SetMusicFolderConfirmation.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SetMusicFolderConfirmation.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SetMusicFolderConfirmation.vala 2015-03-25 18:31:58.000000000 +0000 @@ -63,9 +63,9 @@ is_working = new Gtk.Spinner(); // pretty up labels - title.xalign = 0.0f; + title.halign = Gtk.Align.START; title.set_markup("%s".printf(String.escape (_("Set Music Folder?")))); - info.xalign = 0.0f; + info.halign = Gtk.Align.START; info.set_line_wrap (true); info.set_markup (_("Are you sure you want to set the music folder to %s? This will reset your library and remove your playlists.").printf ("" + String.escape (path) + "")); diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SmartPlaylistEditor.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SmartPlaylistEditor.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SmartPlaylistEditor.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SmartPlaylistEditor.vala 2015-03-25 18:31:58.000000000 +0000 @@ -50,9 +50,9 @@ var options_label = new Gtk.Label (_("Options")); /* make them look good */ - name_label.xalign = 0.0f; - rules_label.xalign = 0.0f; - options_label.xalign = 0.0f; + name_label.halign = Gtk.Align.START; + rules_label.halign = Gtk.Align.START; + options_label.halign = Gtk.Align.START; name_label.set_markup ("" + Markup.escape_text (_("Name of Playlist"), -1) + ""); rules_label.set_markup ("" + Markup.escape_text (_("Rules"), -1) + ""); options_label.set_markup ("" + Markup.escape_text (_("Options"), -1) + ""); diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SyncWarningDialog.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SyncWarningDialog.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/SyncWarningDialog.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/SyncWarningDialog.vala 2015-03-25 18:31:58.000000000 +0000 @@ -59,8 +59,8 @@ cancel = new Gtk.Button.with_label(_("Stop Syncing")); // pretty up labels - title.xalign = 0.0f; - info.xalign = 0.0f; + title.halign = Gtk.Align.START; + info.halign = Gtk.Align.START; info.set_line_wrap (true); var info_text = _("If you continue to sync, media will be removed from %s since they are not on the sync list. Would you like to import them to your library first?").printf ("" + String.escape (d.getDisplayName ()) + ""); diff -Nru noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/TransferFromDeviceDialog.vala noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/TransferFromDeviceDialog.vala --- noise-0.3.0+r1789+pkg87~ubuntu14.10.1/src/Dialogs/TransferFromDeviceDialog.vala 2015-03-24 18:05:40.000000000 +0000 +++ noise-0.3.0+r1790+pkg87~ubuntu14.10.1/src/Dialogs/TransferFromDeviceDialog.vala 2015-03-25 18:31:58.000000000 +0000 @@ -78,7 +78,7 @@ Button cancel = new Button.with_label(_("Don't Import")); // pretty up labels - title.xalign = 0.0f; + title.halign = Gtk.Align.START; // be a bit explicit to make translations better string title_text = ""; @@ -94,7 +94,7 @@ var title_string = MARKUP_TEMPLATE.printf (String.escape (title_text)); title.set_markup (title_string); - info.xalign = 0.0f; + info.halign = Gtk.Align.START; info.set_line_wrap(true); /* add cellrenderers to columns and columns to treeview */