View Single Post
Old 03-02-2023, 07:33 PM   #10
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,061
Karma: 75568269
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Quote:
Originally Posted by theducks View Post
You have a KOBO

The Kobo Utilities can read the Reading status on your device and update a custom column.
https://www.mobileread.com/forums/sh...d.php?t=215339

Note: this is not Cross brands compatible (not that many brands even support similar Calibre ACCESSIBLE status
Quote:
Originally Posted by Quoth View Post
It does work well also to set up a new Kobo ereader, even a different model with unread, reading (and position) and finished.
The Bookmarks option in Kobo Utilities and the Update Metadata in it both do more that expected.

Calibre should be updated from your Kobo before you sign out, or sign in or factory reset etc.
I have a stored template, readstatus(), which pulls from a Kobo Utilities #percentread column and a Reading list #readinglist column.

Code:
program:

	if $$#percentread >=#1 && $$#percentread <=#99
	then 'currentlyreading' 

	elif "To Be Read" in $#readinglist && $$#percentread ==#0
	then 'toberead' 

	elif $$#percentread >=#100
	then 'read' 

	elif $$#percentread == 'None'
	then 'undefined' 

	elif $$#percentread >=#0
	then 'unread' 

	fi
I use it mainly for template checks and the like. Then I realized I could also have them appear in the tag browser.

Click image for larger version

Name:	2023-03-02 20_31_48-Window.png
Views:	181
Size:	4.8 KB
ID:	200069

Putting the template directly into the composite column also works and is simpler for most people.

Last edited by ownedbycats; 03-02-2023 at 08:09 PM. Reason: tyop
ownedbycats is online now   Reply With Quote