![]() |
Sigil-1.5.1 Released
Sigil-1.5.1
Sigil-1.5.1 represents a mix of bug fixes and new features for both epub2 and epub3. New Features:
Bug Fixes:
--------------------------------------------------------------------------- Please check the Sigil Wiki for important Sigil support links, additional resource downloads, and platform-specific trouble-shooting tips/requirements. Mac users should still download and install ActiveState's ActiveTcl Community Edition to utilize plugins that use Tk/Tcl GUIs. More here. Mac users should also check out the wiki entry on the New Release File Format The latest Sigil user guide can always be downloaded from its own repository. PGP Fingerprint The binary downloads (and source) can be found as assets at the bottom of The Sigil Github Release page. |
Might seem silly to do this all over again for basically the same release, but I've closed the beta one, so we need a thread for future issues/questions to be posted to.
Sigil 1.5.1 is not considered beta. |
I have just started tinkering with 1.5.1 but the new remove tags feature is amazing! Thank you so much :)
|
Linux install script (tested on Ubuntu 20.04.2 LTS)
1 Attachment(s)
Dears,
please see attached bash shell script "sigil_build_on_linux.txt". To run in a terminal, save locally and make executable with 'chmod a+x' Usage: sigil_build_on_linux.sh [-option] -n | noaction: show the script command flow -a | action: execute the script commands in order to 1. check if no local installation exists or a newer version is available online 2. create build structure in the current directory 3. download and install required build tools 4. download most recent sources from git hub 5. build from sources 6. install (default directory '/usr/local') 7. create desktop icon -b | bashonly: install/update required tools -d | download: download sources to current directory -r | version: check version (installed vs. remote) -u | uninstall: remove an existing installation -v | verbose [n] = show details level n=0-2 Have Fun! :) Thomas |
1 Attachment(s)
Thanks for all the hard work guys!! :iloveyou:
Minor issue found with the report function - for some reason it does not show a "Matched Selector" (or "found In") in the Classes Used report for my <blockquote>. When I ctrl-click on the class it takes me to the correct part of thee css sheet, and the style is displayed properly in the preview pane. Any ideas???? |
Yes because it shows only classes used in that report. Your actual selector is not just blockquote.write it has a descendent element and class.
To see if that complex descendent selector is used you need to use the CSS Selectors report. |
If you add a blockquote.write only in the css (no descendent additions), then classes used report should detect it being used. Does it?
|
Quote:
|
Yes, the previous version ignored the descendant classes and said it was used even though it may not have been since having that element with that class is not enough to know if that selector was used or not.
The new version does not say "used" if it is not clear. It then punts to the CSS Selectors used report for a complete test of the full exact selector. This prevents "Delete Unused Selectors" from suggesting you can remove something that is in fact really used. |
What has changed in version 1.5.1 after a recent fix due to MathML / MathJax that all icons are in only one bar and partially hidden. Previously, I had icons in two bars and saved clips in the third. What do I need to change to get back to the previous state.
Sorry for the English language, but it is not my language and I was assisted by translator. Regards bravosx |
Quote:
|
Quote:
Regards once again bravosx |
Hi, folks! Overall I'm enjoying the enhancements for 1.5.1, but I'm having an issue with the "Delete Unused Stylesheet Selectors" not working as expected. I've got an ePub with multiple stylesheets (a global, and several file-specific), and have removed all instances of most of the styles contained therein, but the delete function does nothing, despite all unused selectors being checked.
I've confirmed the styles aren't in use by a search, through the reports screen, and by deleting all xhtml files except a blank one, and clicking the "Delete Marked Styles" button seems to fail silently (the dialog dismissed but nothing else). Because I had updates from 1.4.3, I tried uninstallling and reinstalling fresh, and restarting, and it worked briefly, but the issue seems to be back again. Anyone else seeing this issue? Aside from that, when it worked, it was awesome. I like that it could also remove header-based style definitions. |
Hi
Sorry if this does not belong to this thread. Usually, Eli Schwartz publishes quite quickly a binary version of Sigil for Archlinux users. He informed this forum over a week ago that he would wait to provide a binary release of 1.5.1. (and Calibre btw) but, as of today, still failed to do so. A PageEdit version had been published earlier. Has somebody more info about this? |
Someone has flagged the current Arch sigil package as out of date (on the day Sigil 1.5.1 was released). Maybe he's out of town? Or maybe he's waiting to see that it's stable before updating it? I'm sure he'll get around to it.
|
Quote:
Both the epubs had relatively simple stylesheets with no overly complex selectors. I really could see no reason for having 3 stylesheets. |
Quote:
|
Quote:
|
Please provide a working test case that shows this. The only known bug (already fixed in master) is that the removal will fail if after removing ALL unused selectors, it would leave a completely empty stylesheet.
BeckyEbook already reported that bug and it has already been fixed. To workaround it, simply add a css comment someplace at the top of the css stylesheet so that it would not end up completely empty. If you are seeing a different bug, I could really use a testcase that shows the bug. Thanks, KevinH Quote:
|
1 Attachment(s)
Quote:
|
Sigil only searches the stylesheets for selectors that are actually linked to an xhtml file.
None of your stylesheets are linked to anything and therefore none of the selectors are tested (they can only be tested to be present in an xhtml file that links to them). If you want to see which stylesheets are used or not, simply use the Reports CSS files, which will tell you none of your css files are actually used (linked into any xhtml file). If I link them all in, running Remove Unused Selectors would remove all of the selectors inside each stylesheets leaving them all completely empty (except for your first one as @page is not a selector). This is exactly the bug I just explained that was already found and fixed in master. So link all your stylesheets into the one xhtml file. Edit each stylesheet and add /*css*/ to the top of each css file so that they are not left blank (to workaround the bug that has already been fixed in master) and give it a try. You will see all true selectors are now removed (leaving just the comment) and the first one still has @page since it is not a selector. Hope this helps, Kevin |
Okay, I understand now. Adding the comment works as you describe. Thanks for your help.
|
Quote:
I'm back now, catching back up on updates. The new sigil release is currently in the process of building. |
Thank you for your so helpful work.
"Un seul être vous manque et tout est dépeuplé" :) |
While waiting for Arch/Manjaro Linux to release Sigil 1.5.1 to their repositories I compiled it form source myself. Everything seems to work OK, but later I noticed that there is some other stuff on the GitHub: sigil-query, cssparser, dulwich, sigil-gumbo etc. Is any significant functionality missing from Sigil without those modules?
|
If you built Sigil and it works, then you built sogil-gumbo. It's integral and Sigil will not build or function at all without it. The only two pieces you would even have a say in whether or not you could build/use Sigil without them is css-parser and dulwich. Both provide functionality that would be missing from Sigil without them. The Arch package (which has already been updated to 1.5.1) includes all of the things you mentioned as required dependencies.
To be perfectly clear: only two of the items you mentioned are actually external modules (css-parser and dulwich are both python modules that Sigil requires for functionality). Everything else is integral C/C++ source code included with Sigil. |
>No one is finally dead until the ripples they cause in the world die away... -- Reaper Man -- Terry Pratchett
Something of a theft from Sartre's "No Exit". |
Ummm... :blink:
|
| All times are GMT -4. The time now is 10:54 PM. |
Powered by: vBulletin
Copyright ©2000 - 3.8.5, Jelsoft Enterprises Ltd.
MobileRead.com is a privately owned, operated and funded community.