Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Plugins

Notices

Reply
 
Thread Tools Search this Thread
Old 09-27-2017, 12:29 AM   #2476
kstar
Member
kstar began at the beginning.
 
Posts: 11
Karma: 10
Join Date: Jun 2015
Device: Kobo
Thanks it works like a charm....

Refreshing not have all those AO3 tags....
Code:
[overrides]
# Placed in overrides to make sure it affects all sites and formats.
titlepage_entries:category,ships,numWords,dateUpdated,status,datePublished

# a few sites add site-specific metadata to titlepage_entries
add_to_titlepage_entries:

# superceded by add_to_titlepage_entries, but a few sites use it in defaults.ini
extra_titlepage_entries:

## default varies by site.  Set true here to force all sites to
## collect series.
#collect_series: true
extratags: 


never_make_cover: true

include_subject_tags: category,status,status

custom_columns_settings:
 ships=>#topics,a
 dateUpdated=>#update
 numWords=>#words
kstar is offline   Reply With Quote
Old 09-29-2017, 10:32 AM   #2477
kstar
Member
kstar began at the beginning.
 
Posts: 11
Karma: 10
Join Date: Jun 2015
Device: Kobo
Bubble Sorting

Bubble sorting....?

Is this conceptually possible within Fanficfare for ships/relationships tag?

My objective is uniformity of the ship tagging order either by Alphabetically or by Preference.

Name 1/Name 2/Name 3/Name 4/Name 5

Input:
Severus Snape/Voldemort/Draco Malfoy/Harry Potter
Harry Potter/Severus Snape/Voldemort/Draco Malfoy
Harry Potter/Severus Snape/Draco Malfoy/Voldemort
Severus Snape/Draco Malfoy/Voldemort/Harry Potter
Severus Snape/Voldemort/Draco Malfoy/Harry Potter

Preference Method: Using reg code I swap placement order. Name 1 is listed last in the personal.ini file since the program reads top-down. This allows for personal preference.

This method is WORKS but requires a lot of "ship swap"coding.
Code:
##__FIRST Normalization

 Harry Potter \- J\. K\. Rowling=>Harry Potter
 Harry P\.=>Harry Potter&&category=>Harry Potter
 Hermione G\.=>Hermione Granger&&category=>Harry Potter

 Tom R\. Jr\.=>Voldemort
 Tom Riddle Jr\.=>Voldemort 
 Tom Riddle \| Voldemort=>Voldemort
 Tom Riddle=>Voldemort

 Draco M\.=>Draco Malfoy
 Lucius M\.=>Lucius Malfoy
 Severus S\.=>Severus Snape

##__Ship Priority (last in list take priority) Bubble Sort?

 (.*)\/Lucius Malfoy=>Lucius Malfoy/\1
 (.*)\/Draco Malfoy=>Draco Malfoy/\1
 (.*)\/Hermione Granger=>Hermione Granger/\1
 (.*)\/Luna Lovegood=>Luna Lovegood/\1
 (.*)\/Severus Snape=>Severus Snape/\1
 (.*)\/Voldemort=>Voldemort/\1 
 (.*)\/Harry Potter=>Harry Potter/\1

 (.*)\/Loki=>Loki/\1
 (.*)\/Tony Stark=>Tony Stark/\1

 (.*)\/John Sheppard=>John Sheppard/\1
 (.*)\/Jack O\'Neill=>Jack O'Neill/\1
Preference Output:
Harry Potter/Voldemort/Severus Snape/Draco Malfoy
Harry Potter/Voldemort/Severus Snape
Harry Potter/Voldemort
John Sheppard/Rodney McKay
John Sheppard/Harry Potter


Alphabetical Method : I got far as reading the string when I ran into problems... when I realize I would have to loop to read each letter and my regex knowledge is novice level. So I opted for Preference Method for now.

Alphabetical Output:
Draco Malfoy/Harry Potter/Severus Snape/Voldemort
Harry Potter/Severus Snape/Sirus Black
Harry Potter/Voldemort
John Sheppard/Rodney McKay

Code:
([a-zA-Z0-9 .\-&]*)/{0,1}([a-zA-Z0-9 .\-&]*)/{0,1}([a-zA-Z0-9 .\-&]*)/{0,1}([a-zA-Z0-9 .\-&]*)/{0,1}
Side Note: Removing any "friendships" denoted with ampersand...
My coding didn't work.
Code:
 
exclude_metadata_pre:
 ships=~(*.)\&(.*)


May have forgotton to say this before but thank you for Fanficfare. Love the program. Kudos!

Last edited by kstar; 09-29-2017 at 12:45 PM.
kstar is offline   Reply With Quote
Old 09-29-2017, 11:39 AM   #2478
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by kstar View Post
Bubble sorting....?

Is this conceptually possible within Fanficfare for ships/relationships tag?

My objective is uniformity of the ship tagging order either by Alphabetically or by Preference.
You do realize bubble sort exists primarily as an example of how not to do things in intro computing courses, right?

There's a setting you can turn on to do alphabetical sort of ships. There's no mechanism for Preference ordering beyond what you're already doing.
Code:
## Reorder ships so b/a and c/b/a become a/b and a/b/c. '/' is no
## longer hard coded and can be changed and added to with
## sort_ships_splits.
sort_ships:true

## Each line indicates first a regex that should be used to split each
## ships entry and then, after => the string to use to merge the parts
## back together.  \s == blank space.
## Each part will have replace_metadata with key ships_CHARS applied.
sort_ships_splits:
 [ ]*/[ ]*=>/
 [ ]*&[ ]*=>\s&\s
Quote:
Originally Posted by kstar View Post
Side Note: Removing any "friendships" denoted with ampersand...
My coding didn't work.
You have the first .* reversed (and they aren't needed) and you need to use the HTML entity for &. This should work:
Code:
 
exclude_metadata_pre:
 ships=~&
Quote:
Originally Posted by kstar View Post
May have forgotton to say this before but thank you for Fanficfare. Love the program. Kudos!
JimmXinu is offline   Reply With Quote
Old 10-01-2017, 08:57 PM   #2479
kstar
Member
kstar began at the beginning.
 
Posts: 11
Karma: 10
Join Date: Jun 2015
Device: Kobo
Compound Names

`
Fanfiction,net and their pesky compound Names

Superhero/Name

Examples:
Iron Man/Tony S.
Hulk/Bruce B.
Black Widow/Nastasha R.
[Iron Man/Tony S., Pepper P.]

Problem is these compound character names are viewed as pairings. This causes issues with sorting and ships.

I don't want the superhero identity just the name.

Shipping
Tried: Iron Man\/Tony S/.=>Tony Stark
Ships: Pepper Potts/Tony Stark/Tony Stark
Sorting
When renaming I have take into account that ship sorting has already occurred.
Bruce B\./Hulk=>Bruce Banner

Finally -splitting the renaming: gets better results

Iron Man\/=>
Tony S\.=>Tony Stark
Ships: Pepper Potts/Tony Stark

Better Way?
kstar is offline   Reply With Quote
Old 10-01-2017, 09:16 PM   #2480
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by kstar View Post
`
Fanfiction,net and their pesky compound Names

Superhero/Name
...
Better Way?
I can't comment on specifics because you gave only generalities without .ini examples.

However, if you haven't found it yet, you can use ships_CHARS in replace_metadata to modify individual characters within ships when using sort_ships.
JimmXinu is offline   Reply With Quote
Old 10-02-2017, 12:55 AM   #2481
kstar
Member
kstar began at the beginning.
 
Posts: 11
Karma: 10
Join Date: Jun 2015
Device: Kobo
As suggestI tried ships_CHARS method ... it almost works BUT for a preceding slash.

input: [Iron Man/Tony S., Pepper P.]
output: /Pepper Potts/Tony Stark


Code:
#TO ACTIVATE OPTION, UNCOMMENT BY REMOVING THE # AT BEGINNING OF LINE.


#DEFAULT section applies to all formats and sites
[defaults]
titlepage_entries: seriesHTML,category,genre,language,characters,ships,status,datePublished,dateUpdated,dateCreated,rating,warnings,numChapters,numWords,site,description
is_adult:true


#SITE section overrides defaults.
[www.fanfiction.net]
extra_valid_entries:
ships_label:Pairings
[archiveofourown.org]
include_in_genre:
include_in_freefromtags:
[ficwad.com]
[www.fictionalley.org]
is_adult:true
[www.harrypotterfanfiction.com]
is_adult:true


#EPUB section overrides defaults & site section
[epub]
include_images:true
keep_summary_html:true
make_firstimage_cover:true


#SITE:EPUB section overrides defaults, site section & format section


#OVERIDES section overrides all other sections
[overrides]

#Reorder ships alphabetically
sort_ships:true

#Negate the extratag "Fanfiction" from default.ini
extratags:

#Stops epub making cover.
never_make_cover: true

#Calibre column "tags".
include_subject_tags: category,status,status

#Redirects metadata to personal calibre columns
custom_columns_settings:
 ships=>#topics,a
 dateUpdated=>#update
 numWords=>#words

#NORMALIZATION
replace_metadata:
#Removes superhero names from fanfiction.net compound characters 
 ships_CHARS,characters=>(Ant\-Man|Black Panther|Black Widow|Captain America|Falcon|Hawkeye|Hulk|Iron Man|Quicksilver|Spider\-Man|War Machine|Wasp|Winter Soldier)=>

 Bruce B\.=>Bruce Banner
 Charlie W\.=>Charlie Weasley
 Clint B\.=>Clint Barton
 Daphne G\.=>Daphne Greengrass
 Draco M\.=>Draco Malfoy
 Fleur D\.=>Fleur Delacour
 Fred W\.=>Fred Weasley
 George W\.=>George Weasley
 Ginny W\.=>Ginny Weasley
 Harry P\.=>Harry Potter&&category=>Harry Potter
 Hermione G\.=>Hermione Granger
 James R\.=>James Rhodes
 Jean G\.=>Jean Grey&&category=>X-Men
 Lucius M\.=>Lucius Malfoy
 Luna L\.=>Luna Lovegood
 Molly W\.=>Molly Weasley
 Nastasha R\.=>Nastasha Romanova
 Neville L\.=>Neville Longbottom
 Nick F\.=>Nick Fury
 Pepper P\.=>Pepper Potts
 Pietro M\.=>Pietro Maximoff
 Regulus B\.=>Regulus Black
 Remus L\.=>Remus Lupin
 Ron W\.=>Ron Weasley
 Sam W\.=>Sam Wilson&&category=>Avengers
 Severus S\.=>Severus Snape
 Sirius B\.=>Sirius Black
 Steve R\.=>Steve Rogers
 Susan B\.=>Susan Bones
 Tom R\. Jr\.=>Voldemort
 Tom Riddle Jr\.=>Voldemort
 Tom Riddle \| Voldemort=>Voldemort
 Tony S\.=>Tony Stark
 Wanda M\.=>Wanda Maximoff

#Fandom
 category=> (- All Media Types|- Ambiguous Fandom|- Fandom|\(Marvel\)|\(Movies\)|\(Marvel Movies\)|\(Movie [0-9]+\)|\(Comics\)|\(TV\))$=>
 ^Avengers=>The Avengers&&category=>Avengers
 Harry Potter \- J\. K\. Rowling=>Harry Potter
 Marvel Cinematic Universe=>Marvel Universe
 Stargate\: Atlantis=>Stargate Atlantis
 X-Men\: The Movie=>X-Men

#Friendships
exclude_metadata_pre:
 ships=~&
kstar is offline   Reply With Quote
Old 10-02-2017, 02:11 PM   #2482
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
New test version posted

2017-10-02
- Remove empty chars from ships when doing sort_ships / ships_CHARS

Quote:
Originally Posted by kstar View Post
As suggestI tried ships_CHARS method ... it almost works BUT for a preceding slash.

input: [Iron Man/Tony S., Pepper P.]
output: /Pepper Potts/Tony Stark
...
Internally, [Iron Man/Tony S., Pepper P.] is changed into u'Iron Man/Tony S./Pepper P.' and then into a list of u'Iron Man', u'Tony S.', u'Pepper P.', then ships_CHARS changes it into u'', u'Tony S.', u'Pepper P.' The new test version now discards empty strings whiles sorting ships.

FYI, in future please also include a story URL. I tested using this story which is just the first I could find with Pepper/Tony. (Ironman comic fics on ffnet use [A. E. Stark/Tony, V. Potts/Pepper], BTW.)
JimmXinu is offline   Reply With Quote
Old 10-05-2017, 06:13 AM   #2483
Tanjamuse
Wizard
Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!
 
Posts: 1,327
Karma: 5306
Join Date: Jan 2014
Device: none
Is there anyway to change the identifier url from

http://www.fanfiction.net/s/12618034/1/Hell-Hotel

to

https://www.fanfiction.net/s/12618034/1/Hell-Hotel

without having to look through all the metadata? When I search for duplicates using the "Find Duplicates" plugin I almost only use the URL option and then I won't get the duplicates because of the difference in the url.
Tanjamuse is offline   Reply With Quote
Old 10-05-2017, 10:38 AM   #2484
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by Tanjamuse View Post
Is there anyway to change the identifier url from

http://www.fanfiction.net/s/12618034/1/Hell-Hotel

to

https://www.fanfiction.net/s/12618034/1/Hell-Hotel

without having to look through all the metadata? When I search for duplicates using the "Find Duplicates" plugin I almost only use the URL option and then I won't get the duplicates because of the difference in the url.
Use Calibre's Search and Replace in Edit metadata to change http://www.fanfiction.net to https://www.fanfiction.net. You should be able to find examples in the forums.
JimmXinu is offline   Reply With Quote
Old 10-11-2017, 08:15 PM   #2485
Arnos
Junior Member
Arnos began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Dec 2015
Device: Kindle
Any chance you could add https://lnmtl.com/ to the supported sites?
I love this program.
Thanks!
Arnos is offline   Reply With Quote
Old 10-12-2017, 02:22 PM   #2486
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
New Test Version Posted

2017-10-12
- adapter_literotica: Treat 410(removed) same as 404: StoryDoesNotExist
- adapter_storiesonlinenet: Fix for premium stories author link.
- adapter_ponyfictionarchivenet: Fix for site change.
JimmXinu is offline   Reply With Quote
Old 10-13-2017, 01:19 AM   #2487
readerboy7
Enthusiast
readerboy7 began at the beginning.
 
Posts: 45
Karma: 10
Join Date: Dec 2014
Device: Kindle Paperwhite
I'm having trouble with downloading the SB fic Copacetic (https://forums.spacebattles.com/thre...c-worm.283578/ ). Specifically, chapter 1 isn't downloaded. I only get the title, followed by the text for the previous 'chapter', Index.

I'm running FFF 2.17.1, Calibre 3.8

I don't think there's anything relevant in my personal.ini, but it's included just in case.

Spoiler:
Code:
## This is an example of what your personal configuration might look
## like.  Uncomment options by removing the '#' in front of them.

[defaults]
## [defaults] section applies to all formats and sites but may be
## overridden at several levels.  Example:

## [defaults]
## titlepage_entries: category,genre, status
## [www.whofic.com]
## # overrides defaults.
## titlepage_entries: category,genre, status,dateUpdated,rating
## [epub]
## # overrides defaults & site section
## titlepage_entries: category,genre, status,datePublished,dateUpdated,dateCreated
## [www.whofic.com:epub]
## # overrides defaults, site section & format section
## titlepage_entries: category,genre, status,datePublished
## [overrides]
## # overrides all other sections
## titlepage_entries: category

## Some sites also require the user to confirm they are adult for
## adult content.  Uncomment by removing '#' in front of is_adult.
is_adult:true

## Don't like the numbers at the start of chapter titles on some
## sites?  You can use strip_chapter_numbers to strip them off.  Just
## want to make them all look the same?  Strip them off, then add them
## back on with add_chapter_numbers.  Don't like the way it strips
## numbers or adds them back?  See chapter_title_strip_pattern and
## chapter_title_add_pattern.
#strip_chapter_numbers:true
add_chapter_numbers:true

## Add this to genre if there's more than one category.
add_genre_when_multi_category: Crossover

## Some sites/authors/stories use br tags instead of p tags for
## paragraphs.  This feature uses some heuristics to find and replace
## br paragraphs with p tags while preserving scene breaks.
#replace_br_with_p: true

# 'add_to_' concats on to existing param, thus the leading comma
add_to_extra_valid_entries:,oneshot
# oneshot is a copy of status because status itself isn't a list.
include_in_oneshot:status
# add oneshot to the tags that are included in epub & calibre.
add_to_include_subject_tags:,oneshot

# Change oneshot to ['Completed'] to ['Completed','Oneshot'] only when
# numChapters is exactly 1.
# with ',' instead of '\,' it would be ['Completed'] to 
# ['Completed,Oneshot']--one string instead of two.
add_to_replace_metadata:
 oneshot=>Completed=>Completed\,Oneshot&&numChapters=>^1$
 Pokemon=>Pokémon

[epub]
## include images from img tags in the body and summary of stories.
## Images will be converted to jpg for size if possible.  Images work
## in epub format only.  To get mobi or other format with images,
## download as epub and use Calibre to convert.
#include_images:true

## If not set, the summary will have all html stripped for safety.
## Both this and include_images must be true to get images in the
## summary.
#keep_summary_html:true

## If set, the first image found will be made the cover image.  If
## keep_summary_html is true, any images in summary will be before any
## in chapters.
#make_firstimage_cover:true

## Resize images down to width, height, preserving aspect ratio.
## Nook size, with margin.
#image_max_size: 580, 725

## Change image to grayscale, if graphics library allows, to save
## space.
#grayscale_images: false


## Most common, I expect will be using this to save username/passwords
## for different sites.  Here are a few examples.  See defaults.ini
## for the full list.

[www.twilighted.net]
#username:XXXXXXXX
#password:XXXXXXXX
## default is false
#collect_series: true

[ficwad.com]
#username:XXXXXXXX
#password:XXXXXXXX


[www.adastrafanfic.com]
## Some sites do not require a login, but do require the user to
## confirm they are adult for adult content.
#is_adult:true

[www.fanficauthors.net]
username:XXXXXXXX
password:XXXXXXXX

[www.fictionalley.org]
#is_adult:true

[www.harrypotterfanfiction.com]
#is_adult:true

[www.fimfiction.net]
#is_adult:true
#fail_on_password:XXXXXXXX

[www.tthfanfic.org]
#is_adult:true
## tth is a little unusual--it doesn't require user/pass, but the site
## keeps track of which chapters you've read and won't send another
## update until it thinks you're up to date.  This way, on download,
## it thinks you're up to date.
#username:XXXXXXXX
#password:XXXXXXXX


# I added this myself
[www.fanfiction.net]
add_to_keep_html_attrs:,style
add_to_replace_tags_with_spans:,font

## This section will override anything in the system defaults or other
## sections here.
[overrides]
## default varies by site.  Set true here to force all sites to
## collect series.
#collect_series: true

[https://forums.spacebattles.com/threads/472801/]
make_firstimage_cover: false
default_cover_image:https://forums.spacebattles.com/data/avatars/l/296/296804.jpg?1482945866

[https://forums.spacebattles.com/threads/347113/]
make_firstimage_cover: false
default_cover_image:https://forums.spacebattles.com/data/avatars/l/51/51044.jpg?1454529093


[https://forums.spacebattles.com/threads/414320/]
make_firstimage_cover: false

[https://forums.spacebattles.com/threads/389744/]
make_firstimage_cover: false

[example.com]
make_firstimage_cover: false
readerboy7 is offline   Reply With Quote
Old 10-13-2017, 12:39 PM   #2488
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by readerboy7 View Post
I'm having trouble with downloading the SB fic Copacetic (https://forums.spacebattles.com/thre...c-worm.283578/ ). Specifically, chapter 1 isn't downloaded. I only get the title, followed by the text for the previous 'chapter', Index.

I'm running FFF 2.17.1, Calibre 3.8

I don't think there's anything relevant in my personal.ini, but it's included just in case.
Well, that's interesting. It's a site bug.

The threadmark for the first chapter is wrong, it points to Index. But first chapter post is still tabbed as a threadmark and shows up in Reader mode.

And it's been around since Nov 2016 at least, since it's in my copy of Copacetic too.

You could download it using the Index post URL(https://forums.spacebattles.com/posts/15112415/) instead, but that will also pick up all the Omake listed in index.

I've posted a report about it to the SB tech support forum. We'll see what they say.
JimmXinu is offline   Reply With Quote
Old 10-13-2017, 01:32 PM   #2489
clairebarri
Junior Member
clairebarri began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Jul 2013
Device: Android Galaxy 10.1 Tablet
Fic Updates

Hello

For a while now, I have found that I some of my fics (from AO3 and FF.Net) don't update. It appears to have 'updated' as being modified, but there are no new chapters showing up. I need to find the fic online, delete the old ebook on Calibre and then redownload it again.

Is this a common problem? Or is something wrong with my settings?

Hope someone can assist!

Thanks
C>
clairebarri is offline   Reply With Quote
Old 10-13-2017, 02:30 PM   #2490
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,974
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by clairebarri View Post
Is this a common problem? Or is something wrong with my settings?
That's not something I've heard of happening.

The only thing that comes to mind is if you've set 'Default If Story Already Exists' to 'Update Calibre Metadata from Website' when you really want 'Update EPUB if New Chapters'. It's on the 'Basic' tab of FFF config:
Click image for larger version

Name:	Capture.PNG
Views:	279
Size:	30.7 KB
ID:	159442
JimmXinu is offline   Reply With Quote
Reply

Tags
fanfiction


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[GUI Plugin] KindleUnpack - The Plugin DiapDealer Plugins 523 07-15-2025 06:45 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


All times are GMT -4. The time now is 06:00 AM.


MobileRead.com is a privately owned, operated and funded community.