|  01-06-2016, 09:45 AM | #901 | 
| Wizard            Posts: 1,327 Karma: 5306 Join Date: Jan 2014 Device: none | 
			
			I have the following in my personal.ini that separates the ships by & which I've done on purpose. Code: join_string_ships:\s&\s | 
|   |   | 
|  01-06-2016, 09:52 AM | #902 | 
| Zealot  Posts: 105 Karma: 10 Join Date: Nov 2012 Location: Germany Device: Kobo Libra 2 | 
			
			No, that's nothing I have in there, Tanja. I do not join strings - the ships are already there. Either seperated by a '/' or a ' & '. I begin to think that it would be easier if I just would leave the characters in the ships as 'Fist-name Last-name'. But I did want to have 'First-name' only. (I ran into other problems with Japanese names which have the pattern 'Last-name First-name'; so I ended up with things like 'Uchiha/Uchiha' instead of 'Fugaku/Mikoto' - but that's another issue.) | 
|   |   | 
|  01-06-2016, 12:44 PM | #903 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Assuming that you have the generate_cover_settings in a section that applies, that ships contains "Naruto/Sasuke" and you have a GC setting named NaruSasu, I believe what you showed should work. Code: generate_cover_settings:
 ${ships}=>Naruto/Sasuke=>NaruSasu | |
|   |   | 
|  01-06-2016, 12:50 PM | #904 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 (Assuming that's not a typo. Yet another reason it's always a good idea to include example story URLs.) | |
|   |   | 
|  01-06-2016, 04:17 PM | #905 | 
| Zealot  Posts: 105 Karma: 10 Join Date: Nov 2012 Location: Germany Device: Kobo Libra 2 | 
			
			Hi Jim Sorry  . First the replace_metadata - yes, it was a typo. The stories all had "Harry Potter & Severus Snape", and after downloading and replacing metadata there was no ship at all. Here's the story link that did not work: link The generate cover setting: I have tried the setting you mentioned, and it worked! Thank you! | 
|   |   | 
|  01-06-2016, 06:50 PM | #906 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Code: ships=>(?:^|(?<=/))([^ ,:]+)[^/]*(?=/|$)=>\1 But it doesn't work with & separated ships, or with ' / ' (note the spaces) separated ships. Nor does it play nicely with sort_ships:true. Instead, use: Code: replace_metadata: ## strip each ships char down to first name only. ships_CHARS=>^([^ ]+).*$=>\1 But only after getting the new test version, because along the way with figuring this out I found that ships_CHARS and sort_ships_splits didn't work together correctly. So: New test version (direct link) 2016-01-06 - Fix so ships_CHARS and sort_ships_splits work together. Also add default sort_ships_splits that includes & separated ships. | |
|   |   | 
|  01-07-2016, 01:47 PM | #907 | 
| Zealot  Posts: 105 Karma: 10 Join Date: Nov 2012 Location: Germany Device: Kobo Libra 2 | 
			
			Dear Jim Thank you so much!  I installed the new version, commented all ship-replacements out, and tried it with these stories: story 1 story 2 story 3 story 4 Story 1 is the "Harry Potter & Severus Snape" from earlier which now changed into "Harry & Severus" as it should. Story 2 has a tag "Loki/ Tony Stark" (with a space) which was changed to "Loki/Tony". Story 3 has a threesome slash pairing: "Uchiha Itachi/Uchiha Sasuke/Uzumaki Naruto" came (predictably) out as "Uchiha/Uchiha/Uzumaki", story 4 is a threesome '&' pairing - so it handles even 'more'somes.  Everything works fine for me. Thank you so much for looking into this and the time you have taken for helping me out! | 
|   |   | 
|  01-07-2016, 02:04 PM | #908 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
   I designed expecting that there would be 'more'somes, but be warned that weird things may happen if you ever run across a story that uses both / and & in the same ship entry. I've never seen one 'in the wild', but AO3 did let me enter it in a test story. As for family name first names, you can another regexp before the 'first name only' one that instead does 'last name only' for certain family names: Code: ## second name only for certain family-name-first names: ships_CHARS=>^(Uchiha|Uzumaki|Haruno|Hyuuga|Hatake|Namikaze) *([^ ]+)$=>\2 ## first names only: ships_CHARS=>^([^ ]+).*$=>\1 | |
|   |   | 
|  01-07-2016, 02:27 PM | #909 | 
| Zealot  Posts: 105 Karma: 10 Join Date: Nov 2012 Location: Germany Device: Kobo Libra 2 | 
			
			o_O wow, thanks Jim! I just tested and it works (of course). Thank you so much. I was just looking at the FAQ and wiki pages to try and find a solution. But this is so much smoother than anything I could have brought together... And I know that AO3 is sometimes a little painful to try and contol, so I am already used to polish the metadata by hand - no problem. But you really made my life with FFF much better.   | 
|   |   | 
|  01-08-2016, 09:15 AM | #910 | |
| Junior Member  Posts: 4 Karma: 10 Join Date: Jan 2016 Device: none | Quote: 
 Fictionhunt: http://fictionhunt.com/read/4838629/53 Former FF.net (googling still yields this link, though the story has been deleted): https://www.fanfiction.net/s/4838629/1/Not-Quite-A-Maia The story is also available elsewhere (http://www.fictionalley.org/authors/...unty/NQAM.html) though not complete, only 23 Chapters there. Only FH has all 53 chapters that were written. | |
|   |   | 
|  01-08-2016, 10:35 AM | #911 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Then the story at the top of the front page when I looked says "Story has been removed. Please, check original page on FF.net - it might be available there." That argues against the idea of fictionhunt.com being a place to get deleted stories from. If somebody else wants to write the code for it, I'll happily accept an adapter for fictionhunt.com. But I'm not interested in spending time on it myself. | |
|   |   | 
|  01-10-2016, 06:29 PM | #912 | 
| Junior Member  Posts: 4 Karma: 10 Join Date: Jan 2016 Device: laptop | 
				
				hi
			 
			
			hello sorry to bother you but i'm having trouble with fanficfare. i've been using it for a while now on the same site. i can't download from quotev. i've updated it's just not working please help!!    | 
|   |   | 
|  01-10-2016, 10:40 PM | #913 | 
| Enthusiast  Posts: 45 Karma: 10 Join Date: Dec 2014 Device: Kindle Paperwhite | 
			
			Is it possible to get a list of URLs of all the books I've downloaded with FFF? It's a bit inconvenient to backup my whole library in multiple locations due to file size, but it'd be much easier to just backup the URLs to dropbox or other places, incase my computer and backup fail simultaneously agian. Thanks. Last edited by readerboy7; 01-10-2016 at 10:44 PM. | 
|   |   | 
|  01-11-2016, 12:02 AM | #914 | |
| 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 | Quote: 
 | |
|   |   | 
|  01-11-2016, 12:15 AM | #915 | |
| Member  Posts: 13 Karma: 10 Join Date: Sep 2011 Device: iphone 4 | Quote: 
 At that point, copy and paste the information into a text file, or whatever your chosen format. | |
|   |   | 
|  | 
| 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 |