Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
geigi committed Jun 12, 2018
1 parent a073785 commit 11630cf
Show file tree
Hide file tree
Showing 22 changed files with 653 additions and 610 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Cozy is a modern audio book player for Linux.
- Sort your audio books by author, reader & name
- Drag & Drop to import new audiobooks
- Add mulitple storage locations
- Offline Mode! This allows you to keep an audiobook on your internal storage if you store your audiobooks on an external or network drive. Perfect to listen to on the go!
- Mpris integration (Media keys & playback info for desktop environment)
- Developed on Fedora and tested under elementaryOS

Expand Down
2 changes: 1 addition & 1 deletion cozy/offline_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _process_queue(self):

if not new_item.copied and os.path.exists(new_item.track.file):
log.info("Copying item")
Gdk.threads_add_idle(GLib.PRIORITY_DEFAULT_IDLE, self.ui.switch_to_working, _("Copying ") + tools.shorten_string(new_item.track.book.name, 30), False, False)
Gdk.threads_add_idle(GLib.PRIORITY_DEFAULT_IDLE, self.ui.switch_to_working, _("Copying") + " " + tools.shorten_string(new_item.track.book.name, 30), False, False)
self.current = new_item

destination = Gio.File.new_for_path(os.path.join(self.cache_dir, new_item.file))
Expand Down
21 changes: 21 additions & 0 deletions data/com.github.geigi.cozy.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<li>Playback speed control for each book individually</li>
<li>Search your library</li>
<li>Multiple storage location support</li>
<li>Offline Mode! This allows you to keep an audiobook on your internal storage if you store your audiobooks on an external or network drive. Perfect to listen to on the go!</li>
<li>Drag and Drop to import new audiobooks</li>
<li>Sort your audio books by author, reader and name</li>
</ul>
Expand Down Expand Up @@ -52,6 +53,26 @@
<url type="donation">https://www.patreon.com/geigi</url>
<update_contact>[email protected]</update_contact>
<releases>
<release version="0.6.0" timestamp="1528790604">
<description>
<ul>
<li>Offline Mode! If your audiobooks are on an external or network drive, you can switch the download button to keep a local cached copy of the book to listen to on the go. To enable this feature you have to set your storage location to external in the settings.</li>
<li>Detect online/offline storage devices</li>
<li>Option to hide unavailable books</li>
<li>Support for wav files</li>
<li>Support for audio files that have no tags at all</li>
<li>You can mark books as read using the right click menu</li>
<li>New setting: Prefer cover image file over embedded covers</li>
<li>Redesigned Sleep Timer</li>
<li>More Sleep Timer: You can now stop the playback after the current chapter</li>
<li>And even more: Fadeout on timer end (in settings)</li>
<li>Redesigned hello screen and settings</li>
<li>Fixed bug where cozy would not start on GTK older than 3.22</li>
<li>If no author field is present, the reader field will be used as author. This requires a force reimport (settings) on already imported books.</li>
<li>Optimizations under the hood</li>
</ul>
</description>
</release>
<release version="0.5.5" timestamp="1522359511">
<description>
<ul>
Expand Down
4 changes: 3 additions & 1 deletion data/ui/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<property name="type_hint">dialog</property>
<property name="program_name">Cozy</property>
<property name="version">0.0.1</property>
<property name="comments">Thanks to my supporters on Patreon: https://www.patreon.com/geigi</property>
<property name="comments">Thanks to my supporters on Patreon: https://www.patreon.com/geigi
Help translating Cozy: https://transifex.com/geigi/cozy</property>
<property name="website">https://github.com/geigi/cozy</property>
<property name="website_label" translatable="yes">GitHub</property>
<property name="authors">geigi
Expand All @@ -22,6 +23,7 @@ jnbr

Big thanks to my patreon supporters:
Fred Warren
Gabriel

And to other open source projects:
https://github.com/gnumdk/lollypop</property>
Expand Down
10 changes: 5 additions & 5 deletions data/ui/settings.ui
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@
<property name="halign">end</property>
<property name="valign">center</property>
<property name="margin_left">10</property>
<property name="label" translatable="no">15 s</property>
<property name="label">15 s</property>
<property name="justify">right</property>
<property name="single_line_mode">True</property>
</object>
Expand Down Expand Up @@ -1301,7 +1301,7 @@
<property name="orientation">vertical</property>
<child>
<object class="GtkBox" id="advanced_settings_box1">
<property name="width_request">580</property>
<property name="width_request">650</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
Expand Down Expand Up @@ -1335,7 +1335,7 @@
<property name="shadow_type">in</property>
<child>
<object class="GtkListBox">
<property name="width_request">580</property>
<property name="width_request">650</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
Expand Down Expand Up @@ -1454,7 +1454,7 @@
</child>
<child>
<object class="GtkBox" id="advanced_settings_box">
<property name="width_request">580</property>
<property name="width_request">650</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
Expand Down Expand Up @@ -1488,7 +1488,7 @@
<property name="shadow_type">in</property>
<child>
<object class="GtkListBox">
<property name="width_request">580</property>
<property name="width_request">650</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
Expand Down
19 changes: 19 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
com.github.geigi.cozy (0.6.0) UNSTABLE; urgency=low

* Offline Mode! If your audiobooks are on an external or network drive, you can switch the download button to keep a local cached copy of the book to listen to on the go. To enable this feature you have to set your storage location to external in the settings.
* Detect online/offline storage devices
* Option to hide unavailable books
* Support for wav files
* Support for audio files that have no tags at all
* You can mark books as read using the right click menu
* New setting: Prefer cover image file over embedded covers
* Redesigned Sleep Timer
* More Sleep Timer: You can now stop the playback after the current chapter
* And even more: Fadeout on timer end (in settings)
* Redesigned hello screen and settings
* Fixed bug where cozy would not start on GTK < 3.22
* If no author field is present, the reader field will be used as author. This requires a force reimport (settings) on already imported books.
* Optimizations under the hood

-- Julian Geywitz <[email protected]> Wed, 12 Jun 2018 10:03:14 +0200

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

* Import process is now a lot more robust
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('cozy',
version: '0.5.5',
version: '0.6.0',
meson_version: '>= 0.40.0')

project_name = 'cozy'
Expand Down
80 changes: 40 additions & 40 deletions po/cozy.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: cozy 0.5.4\n"
"Project-Id-Version: cozy 0.6.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-11 11:47+0200\n"
"POT-Creation-Date: 2018-06-12 12:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -48,16 +48,16 @@ msgstr ""
msgid "Downloaded"
msgstr ""

#: cozy/book_overview.py:202 data/ui/main_window.ui:1310
#: cozy/book_overview.py:202 data/ui/main_window.ui:1328
msgid "Download"
msgstr ""

#: cozy/file_not_found_dialog.py:66
msgid "All files"
msgstr ""

#: cozy/offline_cache.py:179
msgid "Downloading "
#: cozy/offline_cache.py:175
msgid "Copying"
msgstr ""

#: cozy/search_results.py:72
Expand All @@ -68,11 +68,11 @@ msgstr ""
msgid "Jump to reader "
msgstr ""

#: cozy/importer.py:269
#: cozy/importer.py:270
msgid "Unknown Author"
msgstr ""

#: cozy/importer.py:271
#: cozy/importer.py:272
msgid "Unknown Reader"
msgstr ""

Expand Down Expand Up @@ -149,15 +149,15 @@ msgstr ""
msgid "years"
msgstr ""

#: cozy/ui.py:411
#: cozy/ui.py:414
msgid "Importing Audiobooks"
msgstr ""

#: cozy/ui.py:480 cozy/ui.py:486 cozy/ui.py:800
#: cozy/ui.py:483 cozy/ui.py:489 cozy/ui.py:803
msgid "All"
msgstr ""

#: cozy/ui.py:481 cozy/ui.py:487
#: cozy/ui.py:484 cozy/ui.py:490
msgid "Display all books"
msgstr ""

Expand All @@ -169,15 +169,15 @@ msgstr ""
msgid "Off"
msgstr ""

#: cozy/settings.py:412 cozy/settings.py:455
#: cozy/settings.py:413 cozy/settings.py:456
msgid "External drive"
msgstr ""

#: cozy/settings.py:415 cozy/settings.py:458
#: cozy/settings.py:416 cozy/settings.py:459
msgid "Internal drive"
msgstr ""

#: cozy/settings.py:442
#: cozy/settings.py:443
msgid "Changing audio book location..."
msgstr ""

Expand Down Expand Up @@ -313,115 +313,115 @@ msgstr ""
msgid "Open the options popover"
msgstr ""

#: data/ui/main_window.ui:670
#: data/ui/main_window.ui:655
msgid "Recent"
msgstr ""

#: data/ui/main_window.ui:689
#: data/ui/main_window.ui:674
msgid "List of authors"
msgstr ""

#: data/ui/main_window.ui:705 data/ui/main_window.ui:813
#: data/ui/main_window.ui:690 data/ui/main_window.ui:798
#: data/ui/search_popover.ui:107
msgid "Author"
msgstr ""

#: data/ui/main_window.ui:724
#: data/ui/main_window.ui:709
msgid "List of readers"
msgstr ""

#: data/ui/main_window.ui:740 data/ui/search_popover.ui:201
#: data/ui/main_window.ui:725 data/ui/search_popover.ui:201
msgid "Reader"
msgstr ""

#: data/ui/main_window.ui:793
#: data/ui/main_window.ui:778
msgid "List of books"
msgstr ""

#: data/ui/main_window.ui:829
#: data/ui/main_window.ui:814
msgid "Importing your audiobooks..."
msgstr ""

#: data/ui/main_window.ui:881
#: data/ui/main_window.ui:866
msgid "Import your Audiobooks"
msgstr ""

#: data/ui/main_window.ui:897
#: data/ui/main_window.ui:882
msgid ""
"Cozy automatically imports your audiobooks in one directory - your library"
msgstr ""

#: data/ui/main_window.ui:925
#: data/ui/main_window.ui:910
msgid "External or Network drive?"
msgstr ""

#: data/ui/main_window.ui:942
#: data/ui/main_window.ui:927
msgid "Are your audiobooks stored on an external or network drive?"
msgstr ""

#: data/ui/main_window.ui:957
#: data/ui/main_window.ui:942
msgid ""
"If they are you can enable offline mode for a book in the book overview\n"
"This keeps a local copy of the book that you can listen to on the go"
msgstr ""

#: data/ui/main_window.ui:983 data/ui/main_window.ui:1040
#: data/ui/main_window.ui:968 data/ui/main_window.ui:1025
msgid "Auto scan switch"
msgstr ""

#: data/ui/main_window.ui:984 data/ui/main_window.ui:1022
#: data/ui/main_window.ui:1041
#: data/ui/main_window.ui:969 data/ui/main_window.ui:1007
#: data/ui/main_window.ui:1026
msgid "Automatically import new audiobooks on startup"
msgstr ""

#: data/ui/main_window.ui:1084
#: data/ui/main_window.ui:1069
msgid "Drag & Drop"
msgstr ""

#: data/ui/main_window.ui:1101
#: data/ui/main_window.ui:1086
msgid "Drag your audiobooks into cozy and they will be automatically imported"
msgstr ""

#: data/ui/main_window.ui:1122
#: data/ui/main_window.ui:1107
msgid "Location of your audiobooks"
msgstr ""

#: data/ui/main_window.ui:1143
#: data/ui/main_window.ui:1128
msgid "Set Audiobooks Directory"
msgstr ""

#: data/ui/main_window.ui:1160
#: data/ui/main_window.ui:1145
msgid ""
"Load audiobooks from a directory, network drive or an external disk\n"
"You can add more storage locations later in the settings"
msgstr ""

#: data/ui/main_window.ui:1358
#: data/ui/main_window.ui:1376
msgid "Remaining"
msgstr ""

#: data/ui/main_window.ui:1414
#: data/ui/main_window.ui:1432
msgid "Total"
msgstr ""

#: data/ui/main_window.ui:1431
#: data/ui/main_window.ui:1449
msgid "Last played"
msgstr ""

#: data/ui/main_window.ui:1448
#: data/ui/main_window.ui:1466
msgid "Published"
msgstr ""

#: data/ui/main_window.ui:1586 data/ui/main_window.ui:1619
#: data/ui/main_window.ui:1611 data/ui/main_window.ui:1644
msgid "page0"
msgstr ""

#: data/ui/main_window.ui:1605
#: data/ui/main_window.ui:1630
msgid ""
"Start exploring your library by switching to the Author or Reader view above."
msgstr ""

#: data/ui/about.ui:13
#: data/ui/about.ui:14
msgid "GitHub"
msgstr ""

Expand Down
Loading

0 comments on commit 11630cf

Please sign in to comment.