Skip to content

Commit

Permalink
Release prep for 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kyxap committed Nov 22, 2024
1 parent ea0faf5 commit c2ec815
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ version_tuple := $(shell echo $(version) | awk -F. '{print "("$$1", "$$2", "$$3"
release: update_version zip load

zip: $(release_dir)
@echo "Creating new $(release_dir)/$(zip_file)" && zip "$(release_dir)/$(zip_file)" $(zip_contents) && echo "Created new $(release_dir)/$(zip_file)"
@echo "Creating new $(release_dir)/$(zip_file)"
@mkdir -p "$(release_dir)" && zip "$(release_dir)/$(zip_file)" $(zip_contents)

# Loads current src content, use this if doing dev changes
dev:
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class KoreaderSync(InterfaceActionBase):
name = 'KOReader Sync'
description = 'Get metadata from a connected KOReader device'
author = 'harmtemolder & others, currently maintaining by: kyxap'
version = (0, 6, 7)
version = (0, 6, 8)
minimum_calibre_version = (5, 0, 1) # Because Python 3
config = JSONConfig(os.path.join('plugins', 'KOReader Sync.json'))
actual_plugin = 'calibre_plugins.koreader.action:KoreaderAction'
Expand Down
2 changes: 1 addition & 1 deletion pluginIndexKOReaderSync.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[*][URL="https://www.mobileread.com/forums/showthread.php?t=362706"]KOReader Sync[/URL]
[I]Synchronize metadata (e.g. read progress and rating) from KOReader to calibre.
Version: 0.6.7; Calibre: 5.0.1; Author: harmtemolder & others, currently maintaining by: kyxap; History: Yes;
Version: 0.6.8; Calibre: 5.0.1; Author: harmtemolder & others, currently maintaining by: kyxap; History: Yes;
Platforms: Windows, OSX, Linux;[/I]
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.7
0.6.8

0 comments on commit c2ec815

Please sign in to comment.