![]() |
#241 | |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,812
Karma: 26912940
Join Date: Apr 2010
Device: sony PRS-T1 and T3, Kobo Mini and Aura HD, Tablet
|
Quote:
You can make a custom column type column built from other columns, with the template {series:'test($, test(field('series'),strcat('Series:',field('serie s'),),''),'')'} This will give you Series:series name. Then you use the custom column name instead of series in the plugin. Same for authors Probably PeterT will have a better way though ![]() Helen |
|
![]() |
![]() |
#242 | |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Aug 2013
Device: Kobo Glo
|
![]() Quote:
I have been playing around with creating shelves in my Kobo Glo. The info here has been invaluable! I used the method described above for creating shelves based on "Series" but I changed it to "Tags" The result is shelves have been created based on the exact word string within the "Tags" column. My hope is that someone that understands how to structure this may suggest a way to still use the "Tags" column but limit the CSVs (within the "Tags") to a specified number. So if the "Tags" column has a string of 15 CSVs, I could specify that it only return perhaps the first three. This would serve to generalize and create fewer shelves with each would have more than a single title but yet similarly tagged gendra content compared to what I am now creating. Tag as currently used: American, American Science Fiction And Fantasy, Bodyguards, Contemporary, Epic, Ex-convicts, Fantasy, Fantasy - Contemporary, Fantasy - General, Fantasy fiction, Fiction, Fiction - Fantasy, General, National characteristics, Reading Group Guide, Spiritual warfare, Widowers Tag limited to first four: American, American Science Fiction And Fantasy, Bodyguards, Contemporary, Thanks! |
|
![]() |
Advert | |
|
![]() |
#243 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 13,341
Karma: 78876004
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
Not using tags, I'm not sure quite how they are ordered.. Alphabetically? I do have some ideas and will play with it a bit tomorrow.
|
![]() |
![]() |
#244 |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Aug 2013
Device: Kobo Glo
|
Tags...
The order of tags seems to be vary depending on where you view them.
In the Calbre Library they appear alphabetically. In metadata they are often random. My current work around for tags that are excessively lengthy is to use metadata/edit metadata in bulk edit/tags/remove to delete them. I then bulk retrieve metadata/covers and hope the new tag strings are of a reasonable length. This is sort of the best way to clean up the library but it is time consuming. |
![]() |
![]() |
#245 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,812
Karma: 26912940
Join Date: Apr 2010
Device: sony PRS-T1 and T3, Kobo Mini and Aura HD, Tablet
|
My experience in tags is that they are sorted alphabetically when accessing them but numeric values do not appear first in the GUI.
{tags:sublist(0,1,\,)} will display 69 before A but in the calibre tag list it will often not appear first. Helen |
![]() |
Advert | |
|
![]() |
#246 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 2,409
Karma: 4132096
Join Date: Sep 2008
Device: Kindle Paperwhite/iOS Kindle App
|
Ever since I updated the Kobo firmware, it has been duplicating all my shelves. It is driving me nuts! I have tried resetting the Kobo, and it is still doing it. Is there a fix for this? Or ultimately, a way to turn off the shelf manager plug-in?
|
![]() |
![]() |
#247 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 13,341
Karma: 78876004
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
This has nothing to do with calibre, rather it is an ongoing issue with the Kobo servers and the sync process. As of now there is no trivial solution.
|
![]() |
![]() |
#248 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 2,409
Karma: 4132096
Join Date: Sep 2008
Device: Kindle Paperwhite/iOS Kindle App
|
Thanks, Peter. Guess I will just ignore the shelf area until it's fixed.
|
![]() |
![]() |
#249 |
Junior Member
![]() Posts: 8
Karma: 10
Join Date: Oct 2012
Location: Ontario, Canada
Device: Kobo Aura HD
|
Deleted post, figured it out!
Last edited by ophelia; 08-31-2013 at 10:54 PM. |
![]() |
![]() |
#250 |
Junior Member
![]() Posts: 4
Karma: 10
Join Date: Sep 2013
Device: Kobo Aura HD
|
Is there a way to make all images in an ebook appear larger when transferring it to Aura HD? Perhaps a plugin?
A 400 x 100 image will show just fine on a Touch or Glo but will be completely illegible on the Aura HD. I understand that one cannot create pixels out of thin air but I'd rather have an ugly legible picture that a pretty illegible one. |
![]() |
![]() |
#251 | |
Bibliophagist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,123
Karma: 168808721
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
|
Quote:
Code:
<img alt="Cover" src="../Images/cover.jpeg" width="594" height="793" /> Code:
<style type="text/css"> @page {padding: 0pt; margin:0pt} body { text-align: center; padding:0pt; margin: 0pt; } </style> </head> <body class="nomargin"> <div class="svg_wrapper"> <svg xmlns="http://www.w3.org/2000/svg" height="100%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 594 793" width="100%" xmlns:xlink="http://www.w3.org/1999/xlink"> <image height="793" width="594" xlink:href="../Images/cover.jpg"></image> </svg> </div> Code:
.nomargin { display: block; margin: 0 0 0 0; text-align: center; } .svg_wrapper { display: block; margin: 0 0 0 0; padding: 0 0 0 0; text-align: center; } Regards, David |
|
![]() |
![]() |
#252 | |
Junior Member
![]() Posts: 4
Karma: 10
Join Date: Sep 2013
Device: Kobo Aura HD
|
Quote:
|
|
![]() |
![]() |
#253 | |
Fanatic
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 556
Karma: 3531054
Join Date: Jul 2013
Location: Germany
Device: In use: Pocketbook InkPad 3, Kobo Glo, iPad Air 2
|
Quote:
Thanks for the instructions -- it's super useful. ![]() |
|
![]() |
![]() |
#254 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 24,905
Karma: 47303824
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
|
Mivo: Yes, you select the device or driver that matches what you are using. Or, you can select "any device" so that it is used for any device you send books to.
|
![]() |
![]() |
#255 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 18
Karma: 10862
Join Date: May 2013
Device: kobo glo, bebook club s
|
is there a way to translate it for dutch users? i have read this over and over and stil don't get it, my calibre is in dutch, and i am dutch too.
|
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Newer kernel on Kobo Mini/Touch/Glo? | BaronPampa | Kobo Developer's Corner | 0 | 12-24-2019 06:08 AM |
Aura HD vs Touch vs Glo. | themikeyt | Kobo Reader | 35 | 07-24-2014 05:39 PM |
Touch more slow than Glo and Aura? | Lucas Malor | Kobo Reader | 1 | 09-17-2013 05:54 AM |
Kobo Storage Upgrade Service (Wifi, Touch, Mini, Glo, Vox) | jefftheworld | Kobo Reader | 14 | 10-24-2012 01:20 PM |
Adding books to Kindle with Calibre mini-guide | tapar | Amazon Kindle | 7 | 12-28-2009 06:29 AM |