![]() |
#1 |
Hedge Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 802
Karma: 19999999
Join Date: May 2011
Location: UK/Philippines
Device: Kobo Touch, Nook Simple
|
Next Version
Hi KevinH
Kovid had said he hopes to release the next copy of Calibre this month. ( I will give anyone, who complains about Kovid, if this slips a hard time. Things happen) Is there likely to be a new version of Sigil before Xmas, to go with the new version of Calibre? I am a heavy user of both and it would nice to have a new version of each. Last edited by Thasaidon; 09-14-2020 at 05:02 AM. Reason: Typo |
![]() |
![]() |
![]() |
#2 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,747
Karma: 5706256
Join Date: Nov 2009
Device: many
|
Probably but no guarantees.
|
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Hedge Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 802
Karma: 19999999
Join Date: May 2011
Location: UK/Philippines
Device: Kobo Touch, Nook Simple
|
Thank you.
I definitely was NOT asking for a guarantee. Things happen. I have the greatest respect for the work you and DiapDealer do in maintaining and developing Sigil and do NOT like it when some posters take it for granted or think they are entitled to tell you the line of development you must take. |
![]() |
![]() |
![]() |
#4 |
Member
![]() Posts: 10
Karma: 10
Join Date: Dec 2019
Location: Japan
Device: iPad
|
I'm sorry.
I've been sick and couldn't visit this forum. You're probably angry with me. Hi KevinH I have proposed an example. Have you thought about a new version for your team? I'll help you. Please give me a little more time as I prepare. |
![]() |
![]() |
![]() |
#5 |
Member
![]() Posts: 10
Karma: 10
Join Date: Dec 2019
Location: Japan
Device: iPad
|
in epub3
I don't know in epub2 About font-size and font-color Added as below to CSS (Size and color are examples) Code:
/* font-size */ .font-0em50 { font-size: 0.50em; } .font-0em60 { font-size: 0.60em; } .font-0em70 { font-size: 0.70em; } .font-0em75 { font-size: 0.75em; } .font-0em80 { font-size: 0.80em; } .font-0em85 { font-size: 0.85em; } .font-0em90 { font-size: 0.90em; } .font-1em { font-size: 1.00em; } .font-1em10 { font-size: 1.10em; } .font-1em15 { font-size: 1.15em; } .font-1em20 { font-size: 1.20em; } .font-1em30 { font-size: 1.30em; } .font-1em40 { font-size: 1.40em; } .font-1em50 { font-size: 1.50em; } .font-1em60 { font-size: 1.60em; } .font-1em70 { font-size: 1.70em; } .font-1em80 { font-size: 1.80em; } .font-1em90 { font-size: 1.90em; } .font-2em { font-size: 2.00em; } .font-2em50 { font-size: 2.50em; } .font-3em { font-size: 3.00em; } /* font-color*/ .color-black { color: #000000; } .color-dimgray { color: #696969; } .color-gray { color: #808080; } .color-darkgray { color: #a9a9a9; } .color-silver { color: #c0c0c0; } .color-gainsboro { color: #dcdcdc; } .color-white { color: #ffffff; } .color-transparent { color: transparent; } .color-red { color: #ff0000; } .color-blue { color: #0000ff; } .color-cyan { color: #00ffff; } .color-magenta { color: #ff00ff; } .color-orangered { color: #ff4500; } .color-yellow { color: #ffff00; } .color-green { color: #008000; } .color-purple { color: #800080; } When decorating Code:
<span class="font-1em20">text</span> <span class="color-red">text</span> Reader may not support font-color. iBooks can be displayed. (I haven't checked all the colors.) Since epub uses the same standard as the Web, I think the history of Web development will be helpful. If you have time, support it please. |
![]() |
![]() |
Advert | |
|
![]() |
#6 |
A Hairy Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,346
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
|
That looks like CSS that you can add to your personal CSS template - no need to add it to Sigil.
I, on the other hand, would never create a class simply for color or font-size. I adhere to the Keep It Simple Silly methodology and would apply color/size only to a specific class. Code:
CSS: p {font-size:1em; color:black} /*not recommended to put a standardized font-size or color here - just an example*/ p.SpecialPara {font-size:1.8em; color:red} HTML: <p>This is a normal paragraph.</p> <p>This is a normal paragraph.</p> <p>This is a normal paragraph.</p> <p>This is a normal paragraph.</p> <p class="SpecialPara">This is a special paragraph.</p> <p>This is a normal paragraph.</p> <p>This is a normal paragraph.</p> <p>This is a normal paragraph.</p> Code:
HTML: <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em80 color-red">This is a special paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> <p class="font-1em color-black">This is a normal paragraph.</p> CSS: /* font-size */ .font-0em50 { font-size: 0.50em; } .font-0em60 { font-size: 0.60em; } .font-0em70 { font-size: 0.70em; } .font-0em75 { font-size: 0.75em; } .font-0em80 { font-size: 0.80em; } .font-0em85 { font-size: 0.85em; } .font-0em90 { font-size: 0.90em; } .font-1em { font-size: 1.00em; } .font-1em10 { font-size: 1.10em; } .font-1em15 { font-size: 1.15em; } .font-1em20 { font-size: 1.20em; } .font-1em30 { font-size: 1.30em; } .font-1em40 { font-size: 1.40em; } .font-1em50 { font-size: 1.50em; } .font-1em60 { font-size: 1.60em; } .font-1em70 { font-size: 1.70em; } .font-1em80 { font-size: 1.80em; } .font-1em90 { font-size: 1.90em; } .font-2em { font-size: 2.00em; } .font-2em50 { font-size: 2.50em; } .font-3em { font-size: 3.00em; } /* font-color*/ .color-black { color: #000000; } .color-dimgray { color: #696969; } .color-gray { color: #808080; } .color-darkgray { color: #a9a9a9; } .color-silver { color: #c0c0c0; } .color-gainsboro { color: #dcdcdc; } .color-white { color: #ffffff; } .color-transparent { color: transparent; } .color-red { color: #ff0000; } .color-blue { color: #0000ff; } .color-cyan { color: #00ffff; } .color-magenta { color: #ff00ff; } .color-orangered { color: #ff4500; } .color-yellow { color: #ffff00; } .color-green { color: #008000; } .color-purple { color: #800080; } In your example you are using <span> tags, but the concept still applies: You don't need to have a list of all the possible font-sizes/colors in your CSS...just add the ones you need to a specific class for that specific <span>. Cheers, Last edited by Turtle91; 09-15-2020 at 07:15 AM. |
![]() |
![]() |
![]() |
#7 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,747
Karma: 5706256
Join Date: Nov 2009
Device: many
|
No, Sigil is NOT going to include a set of "standard" css just to make things easier for people who do not know or want to learn css.
Epub developers can find css examples many many places on the web and use whatever css they want. And Sigil's clips bar can make adding/using that css quite easy. |
![]() |
![]() |
![]() |
#8 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,725
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
|
Quote:
|
|
![]() |
![]() |
![]() |
#9 | |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,747
Karma: 5706256
Join Date: Nov 2009
Device: many
|
Nice plugin! May I add it to the Sigil plugin index from that link or would you rather create its own plugin thread?
Thanks! Quote:
|
|
![]() |
![]() |
![]() |
#10 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,552
Karma: 204127028
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Quote:
|
|
![]() |
![]() |
![]() |
#11 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,725
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
|
IMHO, it's a throwaway plugin. I'll double-check the code to make sure that it works with epubs with non-standard structures and create a separate thread for it.
|
![]() |
![]() |
![]() |
#12 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,747
Karma: 5706256
Join Date: Nov 2009
Device: many
|
|
![]() |
![]() |
![]() |
#13 | |
null operator (he/him)
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 21,711
Karma: 29711016
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
Quote:
![]() BR |
|
![]() |
![]() |
![]() |
#14 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,747
Karma: 5706256
Join Date: Nov 2009
Device: many
|
Luckily, Sigil has been Python 3 based from the very beginning and Sigil does not have to worry about database/library or reader based functionality either as Calibre does.
So our plan for Sigil is for incremental improvements since we just recently reached 1.0 after many many years. For example, the biggest new features in our next release will be support for multiple language spell checking with some minor refinements in Toolbars and bug fixes. |
![]() |
![]() |
![]() |
#15 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,552
Karma: 204127028
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
|
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How can I get back to version 5.9.2.0.1 on Kindle Oasis 9th with version 5.9.4? | filipemep | Amazon Kindle | 1 | 03-16-2018 08:42 AM |
Kindle preview version not including font but 'live' version does | heulwen.jones | Kindle Formats | 18 | 01-07-2017 11:01 PM |
Latest version of iOS5/iPad-only version temporarily available on App Store | kguil | Marvin | 0 | 01-05-2014 05:31 AM |
How to install prior version of Calibre when newer version installed? | SilentSeven | Calibre | 3 | 04-13-2011 12:46 PM |
Updated Christian Bible Launches eBook Version Before Print Version | tubemonkey | News | 21 | 12-30-2010 03:53 PM |