Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 05-01-2024, 05:28 PM   #196
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,572
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
That looks the inherent Qt dark mode. I've been having trouble getting the SIGIL_USES_DARK_MODE variable to behave lately. I'm actually trying to debug it right now!

I'll see what I can do. But it's getting harder and harder to force a light/dark theme that goes against the system/app setting with Qt on Windows.

In the meanwhile, you should be able to choose a custom color scheme on Windows: Apps dark/System light (or vice versa) that works well for me (with these latest Sigil betas). I realize that's a system-wide setting and not the Sigil-only override you're looking for, but we'll see what I can do.
DiapDealer is online now   Reply With Quote
Old 05-01-2024, 05:32 PM   #197
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 695
Karma: 2180740
Join Date: Jan 2017
Location: Poland
Device: Misc
Quote:
Originally Posted by DiapDealer View Post
In the meanwhile, you should be able to choose a custom color scheme on Windows: Apps dark/System light (or vice versa) that works well for me (with these latest Sigil betas).
That's what I've been testing and I confirm that it works amazingly well. By changing the mode on the system, Sigil adapts its theme to the system.
BeckyEbook is online now   Reply With Quote
Old 05-01-2024, 05:42 PM   #198
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,572
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I understand why the logic is failing to force a light theme when SIGIL_USES_DARK_MODE is set to 0, but that logic is turning very pretzel on me. I'll see if there's non-hacky way to fix it while preserving all other theming capabilities (including the inherent Qt dark fusion theme if desired).
DiapDealer is online now   Reply With Quote
Old 05-01-2024, 09:25 PM   #199
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,572
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I'm just not certain I'm going to be able to keep the SIGIL_USES_DARK_MODE override any longer. Forcing a particular theme (from within Sigil) while simultaneously supporting on-the-fly switching when system colors change has become untenable, I'm afraid.

I'll keep trying for a bit, but I don't have much hope of getting it all to play nicely together. So I'll probably need to remove it. The good news is that it's easy enough to switch Windows themes/colors (with Sigil still running) if one needs to temporarily force a particular Sigil theme You can even switch it to see Sigil light with Windows dark or Sigil dark with Windows light.

I just don't see people missing it for very long.

Last edited by DiapDealer; 05-01-2024 at 09:31 PM.
DiapDealer is online now   Reply With Quote
Old 05-02-2024, 02:48 PM   #200
Jaco
Junior Member
Jaco began at the beginning.
 
Posts: 8
Karma: 10
Join Date: May 2023
Device: none
Quote:
Originally Posted by KevinH View Post
Use of tables in epubs of more than just a few columns or a few rows creates many issues for smaller e-readers like phone or tablet based ones.

So what I do is define a new Clip that will insert the elements of a *small* table
in CodeView that I can then easily expand/manipulate by copy and paste.

There are limits on table use in Kindles as well (or their were) so promoting their use may not be in the best interest of of the epub designer.

Here is the Clip called "table" that I created with in any text editor and then used Sigil's Clips Editor to create a table clip using paste so that I can add a simple table framework into my CodeView xhtml with a single click:

Code:
<table>
 <caption> Table Caption </caption>
 <thead>
   <tr> <!-- Headings -->
     <th> Column 1 Header </th>
     <th> Column 2 Header </th>
   </tr>
</thead>
<tbody>
<tr> <!-- Row 1 -->
  <td> data1 </td>
  <td> data2 </td>
</tr>
<tr> <!-- Row 2 -->
  <td> data1 </td>
  <td> data2 </td>
</tr>
<tr> <!-- Row 3 -->
  <td> data1 </td>
  <td> data2 </td>
</tr>
</tbody>
<tfoot>
    <tr>
      <th> Footer1 </th>
      <th> Footer2 </th>
    </tr>
</tfoot>
</table>
You can just as easily create a Clip to paste into a CSS stylesheet when in CodeView to help style it. If I have to do a more elaborate table, you can create Clips that just are specific sub elements of a table and use them as needed.

Hope this helps.
Fine. I understand the problem. Thanks for giving me a solution
Jaco is offline   Reply With Quote
Old 05-02-2024, 02:51 PM   #201
Jaco
Junior Member
Jaco began at the beginning.
 
Posts: 8
Karma: 10
Join Date: May 2023
Device: none
Don't worry, thanks, I undestood the problem vs. the solution )

(I forgot to add quote speaking about tables, sorry. I am newbie in this :/ )

Last edited by Jaco; 05-02-2024 at 02:53 PM.
Jaco is offline   Reply With Quote
Old 05-02-2024, 02:58 PM   #202
Jaco
Junior Member
Jaco began at the beginning.
 
Posts: 8
Karma: 10
Join Date: May 2023
Device: none
Smile

Quote:
Originally Posted by KevinH View Post
a) I think there is a portable version of Sigil someplace for Windows users. Please search for a reputable one or ask in a new thread if people can recommend where to download from.

b) In general we are not interested in supporting web development as epubs use xhtml not html. That said you should explore Sigil Plugins. There already is a FolderOut plugin that can just the files to any folder. So creating your own plugin to export or save files anyplace should be easily doable. There already is a close tag feature than can be invoked by shortcut. Plus using Sigil Clips to enter template tag pairs already does most of that to speed entry. Plus Sigil's Mend will close tags left open by following the html parsing rules. You can also use our PageEdit app for proofing and minor typo correction.

Glad to hear you like Sigil.
Noted! And thanks again
Jaco is offline   Reply With Quote
Old 05-06-2024, 12:38 PM   #203
oston
Enthusiast
oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.
 
Posts: 48
Karma: 2138296
Join Date: Nov 2016
Device: ipad, Kindle Scribe, Kobo Libra 2
Editor for alt-text entries

When I have a lot of images that need alt-text, the "Update Alt for Each Image" within the Access-Aide plugin is very helpful. It's the normal way that I now add the alt-text entries.

But while using this, the access-aide plug-in is running. This prevents access to sigil for checking and other edits, while the alt-text creation is going on.

Would it be possible, as well keeping it in Access-Aide, to have a separate instance of the "Update Alt for Each Image" window, so it could be shown alongside other tabs, or popup like "Clip Editor" and allow editing in just the same way that we do when moving between html and opf files etc.

Thanks
Jim
oston is offline   Reply With Quote
Old 05-06-2024, 03:36 PM   #204
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,675
Karma: 5433388
Join Date: Nov 2009
Device: many
Unfortunately, that is not how plugins are designed to work in a safe manner (ie preventing a plugin from crashing Sigil). Sigil can not proceed until the PluginRunner has exited.

That said, you can of course open a second instance of Sigil to continue work on some other epub.
KevinH is offline   Reply With Quote
Old 05-06-2024, 04:02 PM   #205
oston
Enthusiast
oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.
 
Posts: 48
Karma: 2138296
Join Date: Nov 2016
Device: ipad, Kindle Scribe, Kobo Libra 2
Thanks for the explanation Kevin.

I was thinking that since the code for the "Update Alt for Each Image" was already written, it might be doable to turn that into a separate tool, independent of the plug-in.

I do not know of any alt-text editor for an epub, other than the one you have built into Access-Aide. And I am now using it for just about every project (55 illustrations in the current project!)
Jim
oston is offline   Reply With Quote
Old 05-06-2024, 04:41 PM   #206
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,675
Karma: 5433388
Join Date: Nov 2009
Device: many
Even if I did reuse the code internally in Sigil you could theoretically be live editing more than one xhtml file at the same time. So that type of dialog would have to be blocking / modal and only work on xhtml file at a time. Not any different than what you can accomplish with a simple Find and Replace for img tags and updating each tag's alt data in CodeView while looking at the image in the synced Preview.

So there would be no real benefit in the end.

Glad you find AccessAide useful.
KevinH is offline   Reply With Quote
Old 05-06-2024, 05:12 PM   #207
oston
Enthusiast
oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.oston ought to be getting tired of karma fortunes by now.
 
Posts: 48
Karma: 2138296
Join Date: Nov 2016
Device: ipad, Kindle Scribe, Kobo Libra 2
Thanks Kevin. Understood. It's all OK.
I'll keep on using the Alt editor in Access-Aide. That plugin is far more than useful. It's indispensible. :-)
Jim
oston is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Icon Redesign for future 1.0 Release of Sigil shorshe Sigil 38 06-06-2016 11:29 PM
Kindle Software Preview Release and calibre 'Fetch News' items tomsem Devices 25 07-20-2011 08:02 AM
Will amazon release another cheaper version of DX in the near future CalvinL Amazon Kindle 6 07-31-2010 05:01 PM
Suggestion For Future Release Of Calibre clambert Calibre 5 07-10-2010 01:45 PM
dotReader alpha release next month with future iLiad support possible Alexander Turcic News 7 09-28-2006 12:24 PM


All times are GMT -4. The time now is 05:28 PM.


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