Skip to content

Commit

Permalink
Fixed missing tracklist
Browse files Browse the repository at this point in the history
Changed executable name from cozy to com.github.geigi.cozy
Version bump
  • Loading branch information
geigi committed Oct 22, 2017
1 parent b5a89fd commit 5c62205
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
5 changes: 5 additions & 0 deletions cozy/book_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ def __create_popover(self):
box.set_valign(Gtk.Align.START)
box.props.margin = 8

count = 0
for track in Tracks(self.book):
box.add(TrackElement(track))
count += 1

if Gtk.get_minor_version() > 20:
scroller.set_propagate_natural_height(True)
scroller.set_max_content_height(500)
Expand Down
8 changes: 7 additions & 1 deletion data/com.github.geigi.cozy.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ul>
</description>
<provides>
<binary>cozy</binary>
<binary>com.github.geigi.cozy</binary>
</provides>
<screenshots>
<screenshot type="default">
Expand All @@ -45,6 +45,12 @@
<url type="help">https://github.com/geigi/cozy/issues</url>
<update_contact>[email protected]</update_contact>
<releases>
<release version="0.2.2" timestamp="1508681985">
<description>
<p>Fixed missing track list
</p>
</description>
</release>
<release version="0.2.0" timestamp="1508666338">
<description>
<p>Cozy's first release! This release includes everything to start listening to your audiobooks. More features are coming soon!
Expand Down
2 changes: 1 addition & 1 deletion data/desktop.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Name=Cozy
GenericName=Audio Book Player
Comment=Play and organize your audio book collection
Icon=com.github.geigi.cozy
Exec=cozy %U
Exec=com.github.geigi.cozy %U
Terminal=false
Type=Application
Categories=GNOME;GTK;AudioVideo;Player;Audio;
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
com.github.geigi.cozy (0.2.2) UNSTABLE; urgency=low

* Fixed missing tracklist in ui

-- Julian Geywitz <[email protected]> Thu, 22 Oct 2016 16:19:14 +0200

com.github.geigi.cozy (0.2.0) UNSTABLE; urgency=low

* Getting the App Center integration running
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('cozy',
version: '0.2.0',
version: '0.2.2',
meson_version: '>= 0.40.0')

project_name = 'cozy'
Expand Down Expand Up @@ -54,7 +54,7 @@ subdir('po')
message('Preparing init file')
configure_file(
input: 'main.py',
output: 'cozy',
output: 'com.github.geigi.cozy',
configuration: conf,
install_dir: 'bin'
)
Expand Down

0 comments on commit 5c62205

Please sign in to comment.