Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 08-22-2024, 01:08 PM   #61
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: 8,004
Karma: 5449552
Join Date: Nov 2009
Device: many
Indeed. Bulk loading of epubs like that was never meant to be. The older versions are your best bet. The separate warning message boxes were actually interfering with restoring the proper Sigil MainWindow and DockWidgets sizes at times. By catching them all and delaying them until after the MainWindow has been activated it prevented that interference.

So we won't be going back. I might think about a "dismiss all" button being added but not fixing these warnings can result in errors that could cause problems for Sigil.

Last edited by KevinH; 08-22-2024 at 01:27 PM.
KevinH is online now   Reply With Quote
Old 08-22-2024, 03:37 PM   #62
wildfire070
Enthusiast
wildfire070 began at the beginning.
 
Posts: 29
Karma: 10
Join Date: May 2012
Device: Kindle Oasis, Scribe, Paperwhite // Boox Palma
Thanks for the quick response! That's what I thought but figured I'd ask just to be sure. I'll switch back to the previous version since it worked out for my use case.
wildfire070 is offline   Reply With Quote
Old 08-25-2024, 07:58 AM   #63
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,156
Karma: 18843349
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
Found a little glitch. Granted, it's caused by my screwup, but it might be an easy fix.

The problem: Select all your xhtml files in book browser. Rename, and type in something that would produce a filename error, such as '.html/' (yes, I have less nimble fingers sometimes and my fingers are moving too fast to catch the error before I hit the enter key...) Sigil correctly admonishes me with an error 'A filename cannot contains [sic] the character "/".' BUT, like an old female horse, it continues to admonish me for EVERY file I had selected....

The possible solution: can you exit the rename loop on the first error instead??
Turtle91 is offline   Reply With Quote
Old 08-25-2024, 10:24 AM   #64
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: 8,004
Karma: 5449552
Join Date: Nov 2009
Device: many
Yes the detection of illegal characters in new file names does not come until quite late in the bulk rename process to better accommodate RegexRename which can generate many different filename pieces derived from the original.

I will duplicate the forbidden character check and add it much earlier in the rename template code and abort out of all renames if any part of the "template" has or uses forbidden characters.

Thanks for your bug report!

Update: I decided it would be best to check the user supplied rename template for forbidden characters and abort the entire rename if there are any issues by adding this routine in RenameSelect() in BookBrowser.cpp:

Code:
    if (!template_name.isEmpty()) {
        // Verify the template name does not have any forbidden chars in the name                                                       
        const QString badchars = "<>:\"/\\|?*";
        bool has_bad_chars = false;
        foreach(QChar ch, template_name) {
            has_bad_chars = has_bad_chars || badchars.contains(ch);
        }
        if (has_bad_chars) {
            Utility::DisplayStdErrorDialog(tr("Filenames can not contain these characters: \"%1\".").arg(badchars));
            return;
        }
    }
That seems to have done the trick for the case you reported. I have now pushed this to master.

Last edited by KevinH; 08-25-2024 at 10:58 AM.
KevinH is online now   Reply With Quote
Old 08-25-2024, 11:57 AM   #65
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,156
Karma: 18843349
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
Awesome! Thank you!!
Turtle91 is offline   Reply With Quote
Old 08-25-2024, 06:53 PM   #66
pete6055
Connoisseur
pete6055 began at the beginning.
 
Posts: 68
Karma: 10
Join Date: Nov 2012
Device: none
Push to Master on Github?

Quote:
Originally Posted by KevinH View Post
@DiapDealer and @BeckyEbook



Great! I will push that fix to master.

Update: Fix now in master
Hi,

When you push a fix to the master, where can it be retrieved? I assumed it would be reflected in the executable for download, but I am still getting double epub opening warnings on Windows after I refreshed my download.

Thanks
pete6055 is offline   Reply With Quote
Old 08-25-2024, 07:27 PM   #67
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 38,807
Karma: 153006036
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by pete6055 View Post
Hi,

When you push a fix to the master, where can it be retrieved? I assumed it would be reflected in the executable for download, but I am still getting double epub opening warnings on Windows after I refreshed my download.

Thanks
Unless you are compiling Sigil yourself, any changes pushed to master will be seen in the next release.
DNSB is online now   Reply With Quote
Old 08-26-2024, 08:21 AM   #68
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,810
Karma: 198099188
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Yes. A release is based upon a snapshot of the source code at that point in time. Only in the rarest of cases (like a bad build--or an incorrectly signed build--that can be fixed without a change to the source code) would we alter the binaries attached to a release. If it's a critical fix, we would usually just make a new release.
DiapDealer is offline   Reply With Quote
Old Today, 03:26 AM   #69
philja
Zealot
philja began at the beginning.
 
Posts: 139
Karma: 10
Join Date: Nov 2015
Location: Europe EEC
Device: Kindle Fire HD6
I downloaded the latest Sigil.app-2.3.0-1-Mac-arm64.txz on my MacBook Air M2. Double tapped and it unzipped ok. I tapped the app and it opened with Mac's warning about it being a file downloaded from the internet - clicked ok and Sigil opened with a new blank file - as expected.

I was surprised that it was just named Sigil.app. Previous versions contained the version number eg Sigil 2.1.0.app which was useful since I often end up with multiple versions on the Mac.

I then slid the Sigil.app into the applications folder and slid a copy into the dock. That's where my trouble started. Clicking on the icon in the dock appeared to do nothing. The same when I clicked on Sigil.app in the applications directory. Eventually, I noticed a Sigil entry all alone at the top of a new blank screen, next to the Apple logo. Clicking on that icon gave me an invite to open a file. Which I did and it opened correctly. I closed the file ok.

Thereafter, when I tap the icon in the Dock, Sigil opens correctly with a new blank file.

Odd behaviour but maybe it happens in a MacBook?
philja is offline   Reply With Quote
Old Today, 08:37 AM   #70
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: 8,004
Karma: 5449552
Join Date: Nov 2009
Device: many
No. On MacOS the *unpacked* application is always called "Sigil.app" and nothing else. Perhaps your unpacking routine is wrapping it all in a folder?

Yes after unpacking you should drag and drop the unpacked Sigil.app into your /Applications folder. It will ask you if you want to replace any earlier version.

Then fire up Sigil.app from your Applications folder by double-clicking. Once launched properly you should already see its icon in your dock. You can just drag and drop that running dock icon to a permanent spot in the dock. No need to copy anything.

Sigil.app on macOS is a fully relocatable app. That means you can really rename it as you like (ie add version to name) and move it anyplace you like (not just stay in Applications) but you can NOT have 2 different versions Sigil of the Sigil.app running at the exact same time. You can of course open multiple Main Windows in the one running Sigil.app.

I have many many different versions of Sigil.app stored in different folders on my mac and can run them in place (one ar a time) so that I can debug issues more easily. So keeping older versions around is easy.

And yes you must look at the top menu bar to see if Sigil is still active, and use that top menubar menus to open a file or to CMD-Q to exit out of Sigil completely. Closing the MainWindow will NOT exit out of Sigil.

This ia how multi-main window apps has always worked on macOS (think Microsoft Word, etc ).
KevinH is online now   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sigil-1.5.1 Released DiapDealer Sigil 27 04-15-2021 10:27 AM
Sigil-1.2.0 Released DiapDealer Sigil 77 07-16-2020 12:55 PM
Sigil-0.9.7 Released DiapDealer Sigil 90 11-10-2016 01:30 PM
Sigil-0.9.6 Released DiapDealer Sigil 69 10-29-2016 10:35 AM
Sigil-0.8.900 released for testing - Wait for Sigil-0.8.901 KevinH Sigil 106 10-04-2015 10:41 AM


All times are GMT -4. The time now is 01:45 PM.


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