Skip to content

Commit

Permalink
Relesase 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Alain M committed Dec 31, 2019
1 parent 0e4f684 commit 03eaca5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion data/com.github.alainm23.byte.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<binary>com.github.alainm23.byte</binary>
</provides>
​<releases>
<release version="0.2.4" date="2019-12-30">
<release version="0.2.5" date="2019-12-30">
<description>
<p>This update brings some new features and bug fixes:</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/Services/Indicator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class SoundIndicatorPlayer : GLib.Object {
app = Byte.instance;
connection = conn;

Byte.player.current_track_changed.connect_after ((track) => {
Byte.player.current_track_changed.connect ((track) => {
Variant property;
if (Byte.player.player_state == Gst.State.PLAYING) {
property = "Playing";
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Playlist.vala
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public class Views.Playlist : Gtk.EventBox {
/* Items */
var edit_menuitem = new Widgets.ModelButton (_("Edit Details"), "edit-symbolic", _("Edit Details"));
var cover_menuitem = new Widgets.ModelButton (_("Set new Cover"), "image-x-generic-symbolic", _("Set new Cover"));
var delete_menuitem = new Widgets.ModelButton (_("Delete"), "edit-delete-symbolic", _("Delete"));
var delete_menuitem = new Widgets.ModelButton (_("Delete"), "user-trash-symbolic", _("Delete"));

var menu_grid = new Gtk.Grid ();
menu_grid.margin_top = 6;
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/MediaControl.vala
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public class Widgets.MediaControl : Gtk.Revealer {
try {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size (cover_path, 38, 38);
} catch (Error e) {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size ("/usr/share/com.github.alainm23.byte/track-default-cover.svg", 38, 38);
image_cover.pixbuf = new Gdk.Pixbuf.from_resource_at_scale ("/com/github/alainm23/byte/track-default-cover.svg", 38, 38, true);
}

var track_grid = new Gtk.Grid ();
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/TrackAlbumRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public class Widgets.TrackAlbumRow : Gtk.ListBoxRow {
try {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size (cover_path, 38, 38);
} catch (Error e) {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size ("/usr/share/com.github.alainm23.byte/track-default-cover.svg", 38, 38);
image_cover.pixbuf = new Gdk.Pixbuf.from_resource_at_scale ("/com/github/alainm23/byte/track-default-cover.svg", 38, 38, true);
}

var track_grid = new Gtk.Grid ();
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/TrackRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public class Widgets.TrackRow : Gtk.ListBoxRow {
try {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size (cover_path, 38, 38);
} catch (Error e) {
image_cover.pixbuf = new Gdk.Pixbuf.from_file_at_size ("/usr/share/com.github.alainm23.byte/track-default-cover.svg", 38, 38);
image_cover.pixbuf = new Gdk.Pixbuf.from_resource_at_scale ("/com/github/alainm23/byte/track-default-cover.svg", 38, 38, true);
}

var track_grid = new Gtk.Grid ();
Expand Down

0 comments on commit 03eaca5

Please sign in to comment.