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 07-16-2024, 10:28 PM   #9751
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,437
Karma: 4276871
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by ninjadudedxp View Post
Ok i see add update chapters only, would this be a part of personal.ini somewhere? Im using the Automation which i think is only using FFF command line.
This thread is specifically for the Calibre Plugin version of FFF, so I assume questions here are about the plugin.

The FFF CLI version is a bit different, the CLI options -u/--update-epub, -U/--update-epub-always and --force control updates. See the CLI -h/--help list.

I don't know anything about "the Automation", it's not something I use or support.
JimmXinu is offline   Reply With Quote
Old 07-17-2024, 07:32 PM   #9752
TaviCalderon
Member
TaviCalderon began at the beginning.
 
Posts: 17
Karma: 10
Join Date: Dec 2023
Device: Kindle Scribe
hi,

i added the below to my personal.ini, but it didn't seem to change anything or make the summaries italicized. did i miss something? should i have plugged the word "description" into something on the titlepage_entry: line?

Spoiler:

Code:
titlepage_entry:<b class="fff_tp_label" id="${id}_label">${label}:</b> <span class="fff_tp_value" id="${id}_value">${value}</span><br />

add_to_output_css:
 #description_value {
    font-style:italic;
 }


sorry, i know nothing about css or coding in general so i'm not sure where i went wrong. i added this under the [epub] section since that's the only format i have anything in.
TaviCalderon is offline   Reply With Quote
Old 07-17-2024, 08:57 PM   #9753
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,437
Karma: 4276871
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by TaviCalderon View Post
i added the below to my personal.ini, but it didn't seem to change anything or make the summaries italicized. did i miss something? should i have plugged the word "description" into something on the titlepage_entry: line?
Did you install the latest test version?

If not, you also need wide_titlepage_entries: like I mentioned earlier.

Other than that, I don't see anything wrong.
Quote:
Originally Posted by TaviCalderon View Post
sorry, i know nothing about css or coding in general so i'm not sure where i went wrong. i added this under the [epub] section since that's the only format i have anything in.
If you want to customize your output to the level that you apparently do, I suggest learning at least a little HTML and CSS.
JimmXinu is offline   Reply With Quote
Old 07-17-2024, 10:43 PM   #9754
culytera
Zealot
culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.
 
Posts: 114
Karma: 290364
Join Date: Jul 2021
Device: iPhone
Quote:
Originally Posted by TaviCalderon View Post
sorry, i know nothing about css or coding in general so i'm not sure where i went wrong. i added this under the [epub] section since that's the only format i have anything in.
Check this thread, you might get some ideas.
culytera is offline   Reply With Quote
Old 07-19-2024, 10:46 AM   #9755
TaviCalderon
Member
TaviCalderon began at the beginning.
 
Posts: 17
Karma: 10
Join Date: Dec 2023
Device: Kindle Scribe
thanks guys!! i didn't realize i needed to add that line into wide_titlepage_entries, lol. thought i just needed to clear out what was in wide_titlepage_entries by default to make it work. my bad!

appreciate all your help to anyone else who is frantically googling and cannot find answers: if you want the summary/description of the work to be italicized on your title page for epubs, below is what i added and now it works!

Spoiler:

Code:
titlepage_entry:<b class="fff_tp_label" id="${id}_label">${label}:</b> <span class="fff_tp_value" id="${id}_value">${value}</span><br />

wide_titlepage_entries:<b class="fff_tp_label" id="${id}_label">${label}:</b> <span class="fff_tp_value" id="${id}_value">${value}</span><br />

add_to_output_css:
 #description_value {
    font-style:italic;
 }


TaviCalderon is offline   Reply With Quote
Old 07-19-2024, 11:51 AM   #9756
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,437
Karma: 4276871
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
FYI, the latest test version specifically changes it so you don't need to include wide_titlepage_entries.
JimmXinu is offline   Reply With Quote
Old 07-20-2024, 11:21 AM   #9757
penumbria
Member
penumbria began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Jan 2018
Location: US
Device: Samsung Tablet & Kindle Fire using Google Play store
I posted about this before around a month and a half ago and am still having the same issue. When I try to use the plugin to update an epub, to add a new epub, or to update an anthology from an AO3 fic, I get an error message: "HTTP Error in FFF '403 Client Error: Forbidden for URL:"

I've tried using a VPN, I've tried using free public wifi at a restaurant, and I even tried someone else's personal home wifi when I visited them and they live in a different state. It is always the same message.

I know the developer won't work on the issue when it is so localized and not widespread and I get it and understand and that is fine. But even though I can just download epubs from AO3, that doesn't help with ones that are updating regularly. Unless I download a new copy every few days or whenever they update which is a non-starter and waste of time.

Does anyone have any suggestions on how to overcome this error so that I can once again update AO3 fics easily using the plugin? I'm not overly tech savvy or tech lingo knowledgable but I can follow directions.
penumbria is offline   Reply With Quote
Old 07-22-2024, 04:27 AM   #9758
Tharos
Connoisseur
Tharos began at the beginning.
 
Posts: 60
Karma: 10
Join Date: Jul 2010
Device: Pocketbook InkPad Color 3, Kindle Oasis 2, Moon+ Reader pro
Quote:
Originally Posted by penumbria View Post
https://archiveofourown.org/works/55180027
I was able to load the story normally. Do you only have problems with this story, or with others as well?
Tharos is offline   Reply With Quote
Old 07-22-2024, 12:16 PM   #9759
penumbria
Member
penumbria began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Jan 2018
Location: US
Device: Samsung Tablet & Kindle Fire using Google Play store
Every single story, whether an anthology, new to my Calibre, or updating an existing fic. They won't work for me. I get the same error message and have for over a month. I know it is a me problem not a widespread problem though I don't know why. It just started one day and I can't figure out a fix for it. As I said, I'm not really tech-savvy with this stuff but I've tried what people have suggested. I'm just hoping for a workaround I can use.
penumbria is offline   Reply With Quote
Old 07-22-2024, 01:30 PM   #9760
Tharos
Connoisseur
Tharos began at the beginning.
 
Posts: 60
Karma: 10
Join Date: Jul 2010
Device: Pocketbook InkPad Color 3, Kindle Oasis 2, Moon+ Reader pro
Have you tried it with a new database and a new extension added there?

Specifically, I use the following for AO3 in the personal.ini:

Code:
[archiveofourown.org]
username:Maysupersecretusername
password:365Dayswithfreebeer
is_adult:true
extragenres:
extracategories:
extratags:
custom_columns_settings:
 category=>#ts
 fandoms=>#ts
There might be some nonsense in there, but it works for me.


Ok, I don't think I need to mention that these are not my real login details, do I?

Last edited by Tharos; 07-22-2024 at 01:32 PM.
Tharos is offline   Reply With Quote
Old 07-22-2024, 02:30 PM   #9761
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,437
Karma: 4276871
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by penumbria View Post
Every single story, whether an anthology, new to my Calibre, or updating an existing fic. They won't work for me. I get the same error message and have for over a month. I know it is a me problem not a widespread problem though I don't know why. It just started one day and I can't figure out a fix for it. As I said, I'm not really tech-savvy with this stuff but I've tried what people have suggested. I'm just hoping for a workaround I can use.
The only idea I have (and may have mentioned before), is to turn off always_login if you have it set true.
JimmXinu is offline   Reply With Quote
Old Today, 10:30 AM   #9762
ReikoLJ
Junior Member
ReikoLJ began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Jul 2024
Location: Midlands, UK
Device: Kindle Paperwhite(7th)
Hey there, first of all I love this plugin and have been using it successfully for many years across multiple devices and computers.
Unfortunately it has been behaving oddly for me lately. A few weeks back I came to use it and when I clicked on the 'FanFicFare' icon in the ribbon on calibre, nothing happened. No errors but no pop for asking for the usual URLs. I can open up all the other options within it by clicking the arrow menu button but even from there if I navigate to 'Download from URLs', nothing launches. Just silent failing

I uninstalled the plugin and reinstalled it but it didn't fix it. So I thought I would leave it alone for a bit until a new version came out. Today, I updated both calibre and the plugin but it's still doing it so I'm at a bit of a loss now.
Not sure if it logs anywhere? I couldn't see anything in the settings about a log location.

Hope you can help, thanks!

Last edited by ReikoLJ; Today at 10:34 AM.
ReikoLJ is offline   Reply With Quote
Old Today, 10:59 AM   #9763
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,437
Karma: 4276871
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
You can restart Calibre in debug more (under Calibre's Preferences drop down), try again and then post the text log file you get after you quit Calibre.

As a new MobileRead user, you might not be able to attach files to posts right away. In which case, I suggest posting it to a file host site somewhere and link to it from here.
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 494 05-18-2024 02:34 AM
[GUI Plugin] Open With kiwidude Plugins 403 04-01-2024 08:39 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 12:31 PM.


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