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-13-2022, 03:55 PM   #7306
Amalthia
Wizard
Amalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beauty
 
Amalthia's Avatar
 
Posts: 1,188
Karma: 32196
Join Date: Jan 2007
Location: Anchorage, AK
Device: Sony Reader PRS-505, PRS-650, PRS-T3, Pocketbook HD2
Hello,

I've upgraded my Calibre to the new 6.0 version.

After that when I downloaded a new fan fiction story, I noticed that my "output_css:" code no longer accepted "@font-face" information. When I have a @font-face line of code "fanficfare" disregards all my output_css settings. When I remove the @font-face block of code, the rest of the css is used to format the newly downloaded story.

Here is the output_css: I used in my personal.ini settings:

Code:
@font-face {font-family: "Times New Roman";  font-weight: normal;  font-style: normal;
src: url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman.ttf);}
@font-face {font-family: "Times New Roman"; font-weight: bold; font-style: normal;
src: url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Bold.ttf);}
@font-face {font-family: "Times New Roman"; font-weight: normal; font-style: italic;
src:url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Italic.ttf);}
@font-face {font-family: "Times New Roman"; font-weight: bold; font-style: italic;
src: url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Bold-Italic.ttf);}

body {font-family: "Times New Roman", serif; font-size: 1em; background-color: #ffffff ;
text-align: justify; margin: 2%; -epub-hyphens: none; adobe-hyphenate: none;
-webkit-hyphens: none; -moz-hyphens: none; hyphens: none;}
p {font-family: "Times New Roman", serif; margin-top: 0pt; margin-bottom: 0pt; text-indent: 15pt;}
h1, h2, h3, h4, h5, h6 { text-align: center; padding-bottom: 10pt;}
.CI {
text-align:center;
margin-top:0px;
margin-bottom:0px;
padding:0px;
}
.center {text-align: center;}
.cover {text-align: center;}
.full {width: 100%; }
.quarter {width: 25%; }
.smcap {font-variant: small-caps;}
.u {text-decoration: underline;}
.bold {font-weight: bold;}
I use the @font-face for my Sony PRS readers. Please let me know if you need any other information.

Last edited by Amalthia; 07-13-2022 at 05:23 PM. Reason: change quote tag to code tag
Amalthia is offline   Reply With Quote
Old 07-13-2022, 05:13 PM   #7307
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
When posting personal.ini settings, please use [code] tags instead of [quote] tags. The spacing matters and isn't preserved with quote.

Can you post an epub that displays the problem? And one that worked correctly in Cal5? (SFW please.)

I don't use embedded fonts, so I'm not well setup to test this.

UPDATE:
You can't be using the settings as posted directly in personal.ini, because the % signs aren't doubled to escape them. Are you using output_css_filelist instead? Because that also makes a difference...

UPDATE2:
I'm able to put your settings above in personal.ini (once fixed) and have them show up in the epub. Again, I don't have font files handy, so I don't know if they actually work.

Last edited by JimmXinu; 07-13-2022 at 05:20 PM.
JimmXinu is offline   Reply With Quote
Advert
Old 07-13-2022, 05:29 PM   #7308
Amalthia
Wizard
Amalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beautyAmalthia does all things with Zen-like beauty
 
Amalthia's Avatar
 
Posts: 1,188
Karma: 32196
Join Date: Jan 2007
Location: Anchorage, AK
Device: Sony Reader PRS-505, PRS-650, PRS-T3, Pocketbook HD2
Quote:
Originally Posted by JimmXinu View Post
When posting personal.ini settings, please use code tags instead of quote tags. The spacing matters and isn't preserved with quote.

Can you post an epub that displays the problem? And one that worked correctly in Cal5? (SFW please.)

I don't use embedded fonts, so I'm not well setup to test this.

UPDATE:
You can't be using the settings as posted directly in personal.ini, because the % signs aren't doubled to escape them. Are you using output_css_filelist instead? Because that also makes a difference...

UPDATE2:
I'm able to put your settings above in personal.ini (once fixed) and have them show up in the epub. Again, I don't have font files handy, so I don't know if they actually work.
I've updated my previous post to use the code tag instead of quotes.

I think I've also found out what I was doing wrong. I didn't have a space before the @font-face line of code.

This is what I had posted that failed:

Code:
@font-face
I updated my script to add the space and it worked.

Code:
 @font-face
Thanks for your time and your help! I think once I heard that it worked for then it gave me an idea of what could be wrong.

Best Regards,
Amalthia
Amalthia is offline   Reply With Quote
Old 07-13-2022, 05:31 PM   #7309
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
"Spacing matters."
JimmXinu is offline   Reply With Quote
Old 07-13-2022, 07:35 PM   #7310
Keybounce
Enthusiast
Keybounce began at the beginning.
 
Posts: 44
Karma: 10
Join Date: Aug 2019
Device: kindle (various)
I am having trouble getting images associated with a story.

An example image that is not showing is
https://excessive.space/images/dunge...ter%200002.jpg

The source story is
https://www.royalroad.com/fiction/51893/the-heart-grows
Keybounce is offline   Reply With Quote
Advert
Old 07-14-2022, 02:39 AM   #7311
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: 125
Karma: 295674
Join Date: Jul 2021
Device: iPhone
After updating Calibre to 6.0, my add_to_output_css doesn't work. If I downgrade Calibre back to 5 it works again. I didn't change anything prior to upgrading Calibre.

Code:
add_to_output_css:
 body { font-family: "Segoe UI Variable Small", "Roboto", sans-serif; text-align: left; }
 .tag-summary-content p { margin: 0 0 0.75em 0; }
 .tag-summary-content a { text-decoration: none; color: white; }
 .tags {
  display: block;
  padding: 0;
  margin: 0.175em 0;
 }
 .tag-label {
  display: block;
  margin: 0;
 }
 dd { margin-left: 0.75em; }
 dl, dt { margin: 0; }
 hr { display: block; height: 1px;
  border: 0; border-top: 1px solid;
  margin: 1em auto; padding: 0; width: 75%%;
 }
 body.fff_titlepage {
  background-color: #980101;
  color: white;
 }
 .fff_titlepage .title h1,
 .fff_titlepage .title h2 {
  font-size: 2.5vmax;
 }
 .fff_titlepage .title h1,
 .fff_titlepage .title h2,
 .fff_titlepage .title a {
  margin: 0;
  color: white;
 }
 .fff_titlepage .title a, .fff_titlepage .series a { text-decoration: none; color: white; }
 .stats { font-size: 2.5vmax; margin-top: 0.5em; }
Also there's an error when using the find bar when editing the personal.ini or viewing plugin-defaults.ini.
Code:
calibre, version 6.0.0
ERROR: Unhandled exception: <b>AttributeError</b>:'QTextCursor' object has no attribute 'Right'

calibre 6.0  embedded-python: True
Windows-10-10.0.22000 Windows ('64bit', 'WindowsPE')
('Windows', '10', '10.0.22000')
Python 3.10.1
Windows: ('10', '10.0.22000', '', 'Multiprocessor Free')
Interface language: None
Successfully initialized third party plugins: FanFicFare (4, 14, 0) && Generate Cover (2, 1, 0) && Job Spy (1, 0, 192)
Traceback (most recent call last):
  File "calibre_plugins.fanficfare_plugin.dialogs", line 1453, in find
  File "calibre_plugins.fanficfare_plugin.dialogs", line 1469, in moveCursor
AttributeError: 'QTextCursor' object has no attribute 'Right'
culytera is offline   Reply With Quote
Old 07-14-2022, 12:53 PM   #7312
sorin61
Member
sorin61 began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Aug 2012
Device: Kobo touch
Issues updating stories on Literotica

Since the last update (or maybe even the one before) there is no prompt for the adult stories if I try to update a series. So the usual Update Existing Fanfic Books starts checking, and ends up with zero updates, because there was no confirmation, as the log says: Story requires confirmation of adult status.
The only way to update a story for now is to start it all over again and delete the old one.
sorin61 is offline   Reply With Quote
Old 07-14-2022, 03:28 PM   #7313
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 Keybounce View Post
I am vgetting images associated with a story.

An example image that is not showing is
https://excessive.space/images/dunge...ter%200002.jpg

The source story is
https://www.royalroad.com/fiction/51893/the-heart-grows
Works fine for me. Can you describe "having trouble" in more detail?
JimmXinu is offline   Reply With Quote
Old 07-14-2022, 03:47 PM   #7314
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
multi-reply

Quote:
Originally Posted by culytera View Post
After updating Calibre to 6.0, my add_to_output_css doesn't work. If I downgrade Calibre back to 5 it works again. I didn't change anything prior to upgrading Calibre.
I'm not seeing any issues when I paste your settings into personal.ini under [defaults]. What exactly are you seeing?

Quote:
Originally Posted by culytera View Post
Also there's an error when using the find bar when editing the personal.ini or viewing plugin-defaults.ini.
Should already be fixed in the last test version. Link in my sig.

Quote:
Originally Posted by sorin61 View Post
Since the last update (or maybe even the one before) there is no prompt for the adult stories if I try to update a series. So the usual Update Existing Fanfic Books starts checking, and ends up with zero updates, because there was no confirmation, as the log says: Story requires confirmation of adult status.
The only way to update a story for now is to start it all over again and delete the old one.
Set is_adult:true in personal.ini to avoid this.

I assume you mean you are downloading a series as an anthology. I'll have to go look to see if this is broken or expected.

The whole 'are you adult' thing is kind of moot when you're downloading from a site called Literotica. I expect most users to have is_adult:true unless they specifically want to avoid adult content.
JimmXinu is offline   Reply With Quote
Old 07-14-2022, 03:54 PM   #7315
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

2022-07-14
- Remove site: webnovel.com See #843

FYI, I plan to release a point version shortly to address the cal6/qt6 edit search issues.
JimmXinu is offline   Reply With Quote
Old 07-14-2022, 11:50 PM   #7316
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: 125
Karma: 295674
Join Date: Jul 2021
Device: iPhone
Quote:
Originally Posted by JimmXinu View Post
I'm not seeing any issues when I paste your settings into personal.ini under [defaults]. What exactly are you seeing?
It should look like the image on the left, but on Calibre 6 it looks like the image on the right. I'll post the titlepage settings as well.

This did make me realize I should figure out how to hide the Additional Tags line if there aren't any additional tags lol

Edit: I forgot about titlepage_entries, it'll change the formatting a little but it's fine. My only problem now is the CSS not rendering properly on Calibre 6 for some reason.
Click image for larger version

Name:	rendering copy.jpg
Views:	119
Size:	131.8 KB
ID:	195001
Code:
add_to_output_css:
 body { font-family: "Segoe UI Variable Small", "Roboto", sans-serif; text-align: left; }
 .tag-summary-content p { margin: 0 0 0.75em 0; }
 .tag-summary-content a { text-decoration: none; color: white; }
 .tags {
  display: block;
  padding: 0;
  margin: 0.175em 0;
 }
 .tag-label {
  display: block;
  margin: 0;
 }
 dd { margin-left: 0.75em; }
 dl, dt { margin: 0; }
 hr { display: block; height: 1px;
  border: 0; border-top: 1px solid;
  margin: 1em auto; padding: 0; width: 75%%;
 }
 body.fff_titlepage {
  background-color: #980101;
  color: white;
 }
 .fff_titlepage .title h1,
 .fff_titlepage .title h2 {
  font-size: 2.5vmax;
 }
 .fff_titlepage .title h1,
 .fff_titlepage .title h2,
 .fff_titlepage .title a {
  margin: 0;
  color: white;
 }
 .fff_titlepage .title a, .fff_titlepage .series a { text-decoration: none; color: white; }
 .stats { font-size: 2.5vmax; margin-top: 0.5em; }

## Items to include in the title page
## Empty metadata entries will *not* appear, unless .SHOW_EMPTY is
## appended.  Eg: titlepage_entries: ..., characters.SHOW_EMPTY,
## ships,... will always display Characters, but only show
## Relationships if there are any.  You can include extra text or HTML
## that will be included as-is in the title page. Eg:
## titlepage_entries: ...,<br />,summary,<br />,...
## All current formats already include title and author.
titlepage_entries:seriesHTML


## metadata ${title}, etc.  Make sure to keep at least one space
## at the start of each line and to escape % to %%.
titlepage_start:<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <title>${title} by ${author}</title>
 <link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/>
 <meta name="calibre-html-render-data" content='{"size": "A3", "margins": [0, 0, 0, 0]}'/>
 </head>
 <body class="fff_titlepage" style="font-size: 2.2vmax;">
 <div class="title">
 <h1><a href="${storyUrl}">${title}</a> by ${authorHTML}</h1>
 </div>
 <hr/>
 <div>
 <dl class="tags">


## ${id}, ${label}, ${value}
titlepage_entry:
 <dt class="series"><b>${label}:</b> ${value}</dt>


## ${id}, ${label}, ${value}
## Used with entries listed in wide_titlepage_entries, typically description, storyUrl, authorUrl
titlepage_wide_entry:


## When using tables, make these span both columns.
wide_titlepage_entries:


## ${id}, ${value}
## For example, if you've set description_label:
## (that is, nothing)
titlepage_no_title_entry:


## metadata
titlepage_end:
 <dt><b>Fandom:</b> ${category}</dt>
 <dt><b>Rating:</b> ${rating}</dt>
 <dt><b>Warnings:</b> ${warnings}</dt>
 <dt class="tag-label"><b>Relationships:</b></dt><dd class="relationships">${ships}</dd>
 <dt class="tag-label"><b>Characters:</b></dt><dd>${characters}</dd>
 <dt class="tag-label small"><b>Additional Tags:</b></dt><dd>${freeformtags}</dd>
 <dl class="stats">
 <dt><b>Words & Chapters:</b> ${numWords} &bull; ${chapterslashtotal}</dt>
 <dt><b>Published:</b> ${datePublished}</dt>
 <dt><b>Updated:</b> ${dateUpdated}</dt>
 </dl>
 </dl>
 <hr/>
 <div class="tag-summary-content">${description}</div>
 </div>
 </body>
 </html>

Last edited by culytera; 07-15-2022 at 02:07 AM.
culytera is offline   Reply With Quote
Old 07-15-2022, 01:53 AM   #7317
sorin61
Member
sorin61 began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Aug 2012
Device: Kobo touch
Quote:
Originally Posted by JimmXinu View Post
multi-reply
Set is_adult:true in personal.ini to avoid this.
Thank you, that did it.
Was it a change in the plugin that brought this?
sorin61 is offline   Reply With Quote
Old 07-15-2022, 10:01 AM   #7318
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
multi-reply

Quote:
Originally Posted by culytera View Post
Edit: I forgot about titlepage_entries, it'll change the formatting a little but it's fine. My only problem now is the CSS not rendering properly on Calibre 6 for some reason.
From what I see, the red background doesn't appear in the cal5 reader, either. It does in both the cal5 & cal6 Edit book preview.

Honestly, FFF is only responsible for getting the CSS into the file. Whether it works or not is between you, your CSS and the reader program you use.

If you still think there's something different in FFF in cal5 vs cal6, please post the two epubs(from cal5 & cal6) and I'll dissect them.

Quote:
Originally Posted by sorin61 View Post
Thank you, that did it.
Was it a change in the plugin that brought this?
I'm not seeing it--the 'Are you adult?' dialog is appearing for me in cal6 doing an anthology update with an adult story.

The only thing that comes to mind is I vaguely recall some adapters throw the AdultCheckRequired required during chapter update instead of metadata collection. Without knowing the site, I don't know.
JimmXinu is offline   Reply With Quote
Old 07-15-2022, 11:32 AM   #7319
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 Version Released

Point release for calibre 6 fix.

Version 4.14.3 - 2022-07-15
- Update translations.
- Remove site: webnovel.com See #843
- Fix for qt6 vs qt5 in Calibre6 and personal.ini search.
JimmXinu is offline   Reply With Quote
Old 07-15-2022, 04:20 PM   #7320
slantybard
my parent's oops...
slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.
 
Posts: 492
Karma: 1477572
Join Date: Feb 2009
Device: Vx->Handera->Clie-> Axim->505->650->KPW/Aura ->L2->iOS/CBW
I'm not sure if this has been answered somewhere already, but I was wondering if there is a way to have FFF automatically start a new line/entry after pasting a fanfic url into the download window. This would save me from always having to enter a "return" keystroke after every pasted link when downloading multiple fanfics.
slantybard 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 05:56 AM.


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