Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 02-22-2021, 11:06 AM   #91
Ashjuk
Fanatic
Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.
 
Ashjuk's Avatar
 
Posts: 500
Karma: 3498633
Join Date: May 2011
Location: Surrey, UK
Device: Kobo Aura One, Sony PRS 600/650
Quote:
Originally Posted by KevinH View Post
Great! Thank you! I will stay with your earlier versions that used
NotePad++ for the general "open with" images. I really only need PageEdit in the chapter dealing with the Preferred External XHtml Editor as that is where it is most likely to be used, whereas NotePad++ would be useful to a number users in open with

Kevin
You're welcome

As you say some reference to NotePad++ might be a good idea for those looking for a good external html editor.

Ashley
Ashjuk is offline   Reply With Quote
Old 02-22-2021, 05:11 PM   #92
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
Okay, pushed everything I have now to the sigil-user-guide repo. I have updated the src_updated_20210222_01.epub that is attached to the first post in this thread.

For future-proofing, I plan to convert this manual to an epub3 with backwards compatible ncx and guide so that all readers can benefit. This will allow me to add richer semantics and role info.

But that will only come after we have it updated and released.
KevinH is offline   Reply With Quote
Advert
Old 02-22-2021, 08:24 PM   #93
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
For most screenshots, just save it as RGB.

One way to save space on these screenshots is to throw away the Alpha (transparency) layer. This will chop it from a 32-bit image down to 24-bit (~25% filesize savings).

Let's take this as one example:

cover.png

Click image for larger version

Name:	cover.png
Views:	92
Size:	261.4 KB
ID:	185548 Click image for larger version

Name:	cover[NoAlpha].png
Views:	86
Size:	205.5 KB
ID:	185549

RGBA (261 KB) vs. RGB (205 KB) = ~78% of the size

The alpha was useless, so in this case the RGB image is EXACTLY the same.

- - -

Again, PNG is great because it's LOSSLESS.

When you then take something with millions/thousands of colors (RGB) though, and try to squash it into a <256 color box (Indexed), you'll be destroying lots of information.

(See more detail below.)

Quote:
Originally Posted by KevinH View Post
If you feel that some specific images in the user guide had gone too far in that tradeoff, please let us know.
Nearly all of them, which is why I questioned it.

- insert-file-main.png
- tutorial-load-html.png
- tutorial-saved-epub.png
- [...]

See the difference between:

Click image for larger version

Name:	tutorial-saved-epub[Zoomed][Orig].png
Views:	99
Size:	11.9 KB
ID:	185547 Click image for larger version

Name:	tutorial-saved-epub[Zoomed][Indexed].png
Views:	95
Size:	9.1 KB
ID:	185546

I super zoomed into a section, and you can see how:

In the original PNG, the icons/text are still perfectly crisp/clean.

In the Indexed PNG, it looks like they were saved as a JPG 50.

Quote:
Originally Posted by KevinH View Post
As for colour depth, does setting max number of colours to anything other than a power of 2 make sense?
Depends on what type of images you're running it on.

Although setting "Maximum number of colors" at 256 won't stop GIMP from using less if possible.

Keep that setting on 256 or 128 and you'll probably be fine.

The fewer colors, the more repetition the image has = higher compression.

BUT, the fewer the colors, the more loss/distortion occurs.

Images That Already Have <=256 Colors

Indexing this type is a purely lossless conversion.

Take icons as an example.

Let's say your simple icon has 32 different colors in it:

You may have saved it as:
  • RGBA (RGB + Alpha).
    • 32-bit image (8-bit R, 8-bit G, 8-bit B, 8-bit Alpha)
  • RGB
    • 24-bit image (8-bit R, 8-bit G, 8-bit B)
  • Indexed
    • 8-bit image (<256 colors, so every pixel can be stored within a single byte)

Name:  back-to-link-style[RGBA].png
Views: 233
Size:  411 Bytes Name:  back-to-link-style[RGB].png
Views: 228
Size:  360 Bytes Name:  back-to-link-style[Indexed].png
Views: 250
Size:  271 Bytes

RGBA (411 bytes) vs. RGB (360 bytes) vs. Indexed (271 bytes)

Choosing Image > Mode > Indexed and setting "Maximum Number of colors".

GIMP will test the image, and see "Oh, this icon only had 34 colors", so it will create a palette that's exactly 34 colors large.

How do you see how many colors there are in your Indexed image?

You can see this in GIMP by going to:

Windows > Dockable Dialogs > Colormap

Images That Already Have >256 Colors

Indexing this type is LOSSY.

There are many different algorithms/dithering methods to try to do this (posterization)... some tools are good, most are awful.

The lower # of colors you allow, the more distortion occurs.

See the above zoomed in images.

And again, when you have simple images, like a menu item. Okay, great, you can REALLY chop down on the colors.

But when you have large, complicated, colorful screenshots like the entire Sigil window (icons and all)... trying to cut that down to 256 colors is going to be AWFUL.

Quote:
Originally Posted by KevinH View Post
Ie. why 17 colours for your equations? I could see space savings from using 16 colours each represented as 4 bit wide fields with two fields packed into a single byte, but non-powers of 2 would seem to drop colour range with no associated space saving. Or am I missing something?
Biggest being the "4-bit PNG rendering bug", and bad support for 2-bit + 4-bit PNGs in some programs:

See the 2013 thread, "Sony Reader for PC -- not rendering 16-color png".

(You can see the "zebra striping" that occurred in my+GrannyGrump's old pictures.)

17 colors still kept it as a (barely) 8-bit image, so you have no bugs AND you still get large filesize savings compared to a full 256 colors.

(Of course, that low # of colors only worked because it was simple shades of black/gray. Colorful/complicated pictures, you probably wouldn't want to go that low. )

Quote:
Originally Posted by KevinH View Post
BTW, I found a program on github called pngquant2 that seems to be using k-means cluster analysis on colours to determine true number of degrees of freedom represented by the colours actually used to determine the "best" set of palette colours to choose.
I'm really disappointed the guy who wrote pingo/ScriptPNG took down so many of his great image compression articles, but they can still be found via Archive.org:

https://web.archive.org/web/20161208...g-optimization
https://web.archive.org/web/20161003...ticles/truepng
https://web.archive.org/web/20161003...g-optimization

(There were many more, especially comparisons between all the different tools.)

I was able to recover this by visiting his website ~2016:

https://web.archive.org/web/20160601...ww.css-ig.net/

I think it was around 2018 that he "updated" his site to promote pingo, but he took down his entire article archive in the process.

Last edited by Tex2002ans; 02-22-2021 at 09:19 PM.
Tex2002ans is offline   Reply With Quote
Old 02-22-2021, 10:01 PM   #94
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
But can you and most people actually see a difference without "super zooming"? Seriously? I can not. And I really doubt anyone is going to be super zooming in on any of these images in Sigil's user guide. Given how easy it is to recreate these images as screenshots and how often they will need to be updated as gui interfaces change on each platform, if and when desktops go to 8k or 16k resolutions, we just recreate them.

The much much smaller file size with indexing and restricting it to a palette of 256 colours seems to be a very good tradeoff as smaller file sizes pays off in a multitude of ways when loading, and caching images in both an e-reader and in Sigil itself.
Especially when differences can only be seen when super zooming in.

I see no significant differences on a 4k+ retina display with these images at normal display sizes so the statement that at "nearly all of them" need to be reverted is just not something I can agree with at all.

So we must agree to disagree here.

Last edited by KevinH; 02-22-2021 at 10:07 PM.
KevinH is offline   Reply With Quote
Old 02-22-2021, 10:25 PM   #95
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
FWIW, I do understand about dropping the alpha channel, cropping, and restricting the number of colours and that it can end up being quite lossy. I understand that keeping high resolution images as originals is a smart idea and not using anything lossy until the final step makes great sense. And all of this makes even greater sense for print.

It is just that image file sizes on the web and in browsers trumps all of that for me as long as at normal display sizes no big differences are noticeable. Again, speed of loading, caching, reload, memory footprint, disk footprint, download size, bandwidth used all are greatly improved. Which is probably why Photoshop has a "save for the web" setting to begin with.

If this manual was destined for print, then I would agree with you. As it stands this user-guide will probably be viewed using Sigil and PageEdit in most cases as people play to learn and for that role, I think these images work well.

Last edited by KevinH; 02-22-2021 at 10:29 PM.
KevinH is offline   Reply With Quote
Advert
Old 02-23-2021, 12:06 AM   #96
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by KevinH View Post
And I really doubt anyone is going to be super zooming in on any of these images in Sigil's user guide.
To read the text in the labels?

To read the text in the menus?

To read the text in the UI?

Look at the "Book.xhtml" text in the "super zoomed in" version.

It's as if you've rubbed your eyes in vaseline.

Quote:
Originally Posted by KevinH View Post
But can you and most people actually see a difference without "super zooming"? Seriously? I can not.
Yes.

And when you've converted hundreds of ebooks, and know where to focus (flat colors, edges of text), you can tell the fuzz/artifacts from miles away:

https://www.scantips.com/basics9jb.html
https://photo.stackexchange.com/ques...one-about-them

PNGs are lossless and excel at screenshots + charts/graphs/artificial images.

It's the reason why you want to use PNG >> JPG in this case!

Quote:
Originally Posted by KevinH View Post
So we must agree to disagree here.

It is just that image file sizes on the web and in browsers trumps all of that for me as long as at normal display sizes no big differences are noticeable. Again, speed of loading, caching, reload, memory footprint, disk footprint, download size, bandwidth used all are greatly improved.
We don't live in the age of Kindle 1 anymore.

Devices can now:
  • "click-to-zoom" (to see the full quality image).
  • have plenty of RAM.
  • have plenty of space.

It would be like purposefully taking screenshots, shrinking them down to 800x600, blurring them... for absolutely no reason.

And we are talking 11 MBs... 11 MBs.

And 4 MBs of that was taken up by 1 4k + 1 2k image.

A single podcast is larger than this.

It's giving me flashbacks of the "Inline Greek JPG" + "Tables as Images" days when I first started making books.

I am back in Nam!

Quote:
Originally Posted by KevinH View Post
Which is probably why Photoshop has a "save for the web" setting to begin with.
That was because Adobe inserted a massive amount of metadata into the images.

You'd have a 1MB JPG with like 3MBs of garbage embedded in it.

"Save as Web" then removed the metadata + did some other potential settings (interlacing/progressive).

"Save as Web" for PNGs would also turn on higher compression instead of no/low compression + remove the Alpha channel if it's not used, etc.

Quote:
Originally Posted by KevinH View Post
But can you and most people actually see a difference without "super zooming"?
The "super zooming" was just to easily show the artifacts. And just how rotten/lossy Indexing the wrong types of images is.

Screenshots should stay PNG (RGB) throughout the workflow.

Lossless changes should be done (cropping, compression). Never destructive (resizing).

- - -

IF filesize then becomes an issue, then you go in descending order:
  • Throw away the Alpha.
  • + Losslessly compress.
    • PNG compression tools have gotten much better in the past 7+ years.
    • As you can see, I was able to compress another 3.2MBs (~22% drop) out of those PNGs.

If it's still an issue, then:
  • Index (if possible, within reason).
    • Lots of text + little color? Yes.
    • Entire colorful screenshot of Sigil? No.

If the image is too complicated/ugly using that method, then go back to source and:
  • crop to focus on relevant portion
  • recreate at lower resolution
    • Like those original 4k images. Someone can re-screenshot at 2k or 1080p (or whatever).

If that's not possible, then:
  • PERHAPS saving as a JPG.
    • Like the current cover may be smaller as a JPG.
    • PNG is usually larger for "photographic" images.
    • At least the JPG would still be millions of colors (vs. <256 Indexed PNG).

But always keep the original lossless source.

Last edited by Tex2002ans; 02-23-2021 at 12:13 AM.
Tex2002ans is offline   Reply With Quote
Old 02-23-2021, 06:12 AM   #97
Ashjuk
Fanatic
Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.
 
Ashjuk's Avatar
 
Posts: 500
Karma: 3498633
Join Date: May 2011
Location: Surrey, UK
Device: Kobo Aura One, Sony PRS 600/650
Quote:
Originally Posted by Tex2002ans View Post
Throw away the Alpha.
As I said in a previous post there appears to be no Alpha channel to throw away in my images. (See attachment to previous post)

Quote:
Originally Posted by Tex2002ans View Post
Losslessly compress. PNG compression tools have gotten much better in the past 7+ years.
I don't know what application you are using but I downloaded what is supposedly the number 1 free lossless compression tool - PNGGauntlet - and running one of my uncompressed images through it resulted in an almost identical file size to the original.

I'm not saying you are wrong as you obviously have much more knowledge and experience than I, but following the above suggestions has not worked for me.

Edit:

I have just tried another compression tool - PngOptimizer - on the largest of the image files (tutorial-main-window.png) and the optimised file was approximately 10% smaller.
Whilst there has been some saving in my mind it is not that significant, and less than half of the ~22% you had mentioned.

_tutorial-main-window = prior
tutorial-main-window = post

https://www.mobileread.com/forums/at...1&d=1614079591
Attached Thumbnails
Click image for larger version

Name:	result.png
Views:	121
Size:	6.7 KB
ID:	185558  

Last edited by Ashjuk; 02-23-2021 at 06:29 AM.
Ashjuk is offline   Reply With Quote
Old 02-23-2021, 07:44 AM   #98
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
@Tex2000ans, again I completely disagree. The maximum file size on MR attachments for epubs is 20meg and we were actually coming close with more images to come. File size does matter in any browser setting and engine and that is what Sigil is. You seem to be completely ignoring that in favour or things that typically can’t be seen.
KevinH is offline   Reply With Quote
Old 02-23-2021, 11:11 PM   #99
odamizu
just an egg
odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.
 
odamizu's Avatar
 
Posts: 1,597
Karma: 4798866
Join Date: Mar 2015
Device: Kindle, iOS
I am working on the Preferences chapter and need some help with the following:
  • Under Appearance > Code View, the Mac preferences window has a Highlight Matching Tags option whereas the Windows screenshot does not have this. Is this option only available on Macs?
  • Under Appearance > Main UI, what does High DPI Setting do? (Note: this setting is greyed-out on my Mac.)
  • Under Appearance > Main UI, what's a good way to describe what Tweak Drag Distance does? (This is also greyed-out on my Mac.)
  • In the Open Preferences Location section:
    • What's a brief description for what's inside the local-devtools folder?
    • I have a QtWebEngine folder in my Preferences folder. Is this a remnant from an old Sigil version? If it's relevant to Sigil 1.5.0, what's a brief description for what's inside?
    • I have a repo folder in my Preferences folder. Is this a remnant from an old Sigil version? If it's relevant to Sigil 1.5.0, what's a brief description for what's inside?

Muchas gracias for any assistance with the above
odamizu is offline   Reply With Quote
Old 02-24-2021, 12:55 AM   #100
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,606
Karma: 23165369
Join Date: Dec 2010
Device: Kindle PW2
Thanks for updating the most difficult chapter of the User Guide!


Quote:
Originally Posted by odamizu View Post
Under Appearance > Code View, the Mac preferences window has a Highlight Matching Tags option whereas the Windows screenshot does not have this.
The Windows screenshot is outdated.

Quote:
Originally Posted by odamizu View Post
Under Appearance > Main UI, what does High DPI Setting do? (Note: this setting is greyed-out on my Mac.)
GUI controls of some apps aren't rendered properly on high resolution screens.
You can see an explanation of each option, if you hover the mouse cursor over the Detect dropdown box.

Quote:
Originally Posted by odamizu View Post
Under Appearance > Main UI, what's a good way to describe what Tweak Drag Distance does? (This is also greyed-out on my Mac.)
For more information see this post by DiapDealer.

Quote:
Originally Posted by odamizu View Post
I have a repo folder in my Preferences folder. Is this a remnant from an old Sigil version? If it's relevant to Sigil 1.5.0, what's a brief description for what's inside?
AFAIK, It's used for saved checkpoints.

Last edited by Doitsu; 02-24-2021 at 02:10 AM.
Doitsu is offline   Reply With Quote
Old 02-24-2021, 04:01 AM   #101
Ashjuk
Fanatic
Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.
 
Ashjuk's Avatar
 
Posts: 500
Karma: 3498633
Join Date: May 2011
Location: Surrey, UK
Device: Kobo Aura One, Sony PRS 600/650
Quote:
Originally Posted by odamizu View Post
I am working on the Preferences chapter and need some help with the following:

Under Appearance > Code View, the Mac preferences window has a Highlight Matching Tags option whereas the Windows screenshot does not have this. Is this option only available on Macs?
Sorry about that - it must have been one that slipped through from the 1.4.3 screenshots that I originally started working on.

New version is here - https://drive.google.com/drive/folde...E03ldjIG-Cvks7
Ashjuk is offline   Reply With Quote
Old 02-24-2021, 08:50 AM   #102
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
- The local-devtools is a work folder generated when Preview's Inspector is used.
- The QtWebEngine folder is also a work folder that can cache and store things being used by Preview. Depending on version you may have a local-storage folder inside it as well.


Yes the repo folder is created to store Checkpoints and its contents should be managed via the Manage Repos checkpointing tool/menu.


Thanks!
KevinH is offline   Reply With Quote
Old 02-24-2021, 08:52 AM   #103
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
Both the local-devtools and QtWebEngine folders can be deleted safely when NOT running Sigil. They will be recreated automatically when needed.

repo and plugins should all be managed by Sigil itself. Users can edit things in plugin-prefs and it provides a place to store things that live on through a plugin being deleted and its new version installed (the update process).

Last edited by KevinH; 02-24-2021 at 08:55 AM.
KevinH is offline   Reply With Quote
Old 02-24-2021, 10:09 AM   #104
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,727
Karma: 5444398
Join Date: Nov 2009
Device: many
@Ashjuk,
One more change please. The image "preview-window.png" shows Preview showing on *old* version of the Metadata Editor and MetaData Icon in its image which is confusing since neither is in the most recent version of the manual.

So would you please recreate that image with Preview showing some other interesting image either from the current user-guide or the public domain Alice's Adventures in Wonderland epub used many tumes in the old user guide. I think you can download that epub here in MR's own repository. Otherwise I can post it as an attachment here. Just let me know.
KevinH is offline   Reply With Quote
Old 02-24-2021, 11:04 AM   #105
Ashjuk
Fanatic
Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.
 
Ashjuk's Avatar
 
Posts: 500
Karma: 3498633
Join Date: May 2011
Location: Surrey, UK
Device: Kobo Aura One, Sony PRS 600/650
@Kevin,

Done.
Ashjuk is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Wanted: Volunteers to Update the Sigil User's Guide KevinH Sigil 55 05-18-2018 02:52 AM
Sigil Improvement Projects for Developers/Volunteers KevinH Sigil 19 06-27-2016 06:19 PM
Sigil and chapters. p3aul Sigil 5 11-29-2012 09:23 PM
Sigil + Adobe Digital Editions + chapters wkuiper Sigil 6 11-23-2012 10:58 AM
Sigil and epub (can I delete empty chapters?) desaderal Sigil 3 03-24-2011 07:57 AM


All times are GMT -4. The time now is 06:13 PM.


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