|  05-12-2019, 06:28 PM | #3421 | 
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | 
			
			New question: I unchecked the "set calibre author URL." Is there a way to remove the URL from already-downloaded fics, though? As well, why doesn't this work? Code: replace_metadata: publisher=>www.fanfiction.net=>FanFiction.net Last edited by ownedbycats; 05-12-2019 at 06:32 PM. | 
|   |   | 
|  05-12-2019, 06:54 PM | #3422 | ||
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 The way I know how to do that is to show the Tag Browser (under Layout), right click Authors and choose Manage Authors. Edit author URLs there. There may be other ways, but I don't know them. Quote: 
 Code: replace_metadata: site=>www.fanfiction.net=>FanFiction.net   | ||
|   |   | 
|  05-12-2019, 09:59 PM | #3423 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
  It's not like there isn't already a way to do it, it's just not as efficient. Use 'Update EPUB always', or don't; it's your choice. | |
|   |   | 
|  05-13-2019, 09:30 AM | #3424 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			You can disable the creation of ORIGINAL_EPUB for polishing books, or delete it right after. Calibre only creates it in order to give you a way to recover your valuable data, if the conversion/polish broke the ebook. Once you know that it didn't break you can always delete it... Or, as I said, you can stop it from ever being created in the first place.
		 | 
|   |   | 
|  05-13-2019, 11:13 AM | #3425 | 
| Enthusiast  Posts: 27 Karma: 10 Join Date: Oct 2016 Device: Kobo | 
			
			Wuxiaworld.co currently has a bug. I can update stories just fine, but adding a new one gives me a "utf8' codec can't decode byte 0xe9 in position 58: invalid continuation byte" error. Tried it with 10 random stories. EDIT: seems to work now? EDIT: not completely... I am not sure if it's my computer or what. Last edited by Arkeus; 05-13-2019 at 03:50 PM. | 
|   |   | 
|  05-13-2019, 08:58 PM | #3426 | 
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | 
			
			@Arkeus - I'm not able to duplicate the issue.   When a problem comes and goes it's usually due to the site having issues. More rarely, it could be the site slowly rolling out an update across multiple servers. If you continue to see it, and post a story URL that displays the problem, I'll look into it again. | 
|   |   | 
|  05-14-2019, 02:18 PM | #3427 | 
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | 
			
			New Test Version Posted 2019-05-14 - Some fixes for Russian language adapter_masseffect2in. - Fixes for adapter_quotevcom due to site changes. - Removing filter()/map() calls--not consistent between Py2/Py3. - Some Py3 compat / optimization fixes, thanks eschwartz | 
|   |   | 
|  05-14-2019, 04:11 PM | #3428 | 
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | |
|   |   | 
|  05-14-2019, 06:35 PM | #3429 | 
| Member  Posts: 11 Karma: 10 Join Date: Sep 2017 Device: Tablet | 
			
			There appears to be a problem with Storiesonline - it doesn't prompt me for my login info, thus it only downloads the bit of the story that's viewable to unregistered users. Edit - I neglected to mention that I'm using the latest test version (05/14/19). | 
|   |   | 
|  05-14-2019, 07:33 PM | #3430 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | 
			
			New Test Version Posted 2019-05-14 - Fix for adapter_storiesonlinenet not detecting login failure. - Some fixes for Russian language adapter_masseffect2in. - Fixes for adapter_quotevcom due to site changes. - Removing filter()/map() calls--not consistent between Py2/Py3. - Some Py3 compat / optimization fixes, thanks eschwartz This was reported by a web service user, but I didn't put up a plugin version for it until now. Quote: 
 | |
|   |   | 
|  05-14-2019, 09:12 PM | #3431 | |
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | Quote: 
 That being said, there are many who would say filter is un-pythonic. It's sort of a bikeshed issue whether to surround everything with list() or replace it with list comprehensions. Last edited by eschwartz; 05-14-2019 at 09:15 PM. | |
|   |   | 
|  05-14-2019, 09:50 PM | #3432 | ||
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 And rather than worry about the esoteric details about how and why they are different, I decided filter() & map() are simply broken and not to be used in code that needs to run on both Py2 and Py3. Quote: 
 Okay, I may be arguing the point a bit after all...   | ||
|   |   | 
|  05-14-2019, 09:56 PM | #3433 | ||
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | Quote: 
  Quote: 
 It is probably worth noting that python-modernize will happily convert filter()/map() to list/generator expressions.  Can't be too wrong to do the same yourself... Last edited by eschwartz; 05-14-2019 at 10:00 PM. | ||
|   |   | 
|  05-16-2019, 08:41 AM | #3434 | 
| Enthusiast  Posts: 27 Karma: 10 Join Date: Oct 2016 Device: Kobo | 
			
			How are you choosing which sites you are making work? Is it possible to ask for a specific site to be added? I was thinking of https://www.scribblehub.com/ as it is slowly becoming popular.
		 | 
|   |   | 
|  05-16-2019, 10:40 AM | #3435 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Most, if not all, of the new sites requested these days are new fiction or translated fiction instead of fanfiction. Newer, more interactive sites are frequently more difficult to implement. And mostly, I ran out of ambition for adding sites I don't read myself years ago.  These days new sites are mostly added by other people who want to read them. Which is kinda how it should be with an open source project. | |
|   |   | 
|  | 
| Tags | 
| fanfiction | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| [GUI Plugin] KindleUnpack - The Plugin | DiapDealer | Plugins | 527 | 08-15-2025 01:36 PM | 
| [GUI Plugin] Open With | kiwidude | Plugins | 404 | 02-21-2025 05:42 AM | 
| [GUI Plugin] Marvin XD | Philantrop | Plugins | 126 | 01-29-2017 12:48 PM | 
| [GUI Plugin] KiNotes | -axel- | Plugins | 0 | 07-14-2013 06:39 PM | 
| [GUI Plugin] Plugin Updater **Deprecated** | kiwidude | Plugins | 159 | 06-19-2011 12:27 PM |