01-05-2012, 11:27 AM | #16 |
Well trained by Cats
Posts: 30,439
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Flightcrew checks (errors repaired) will continue to show as bad if the page is Still in splitview, Switching to BV only, and the check then passes.
|
01-05-2012, 11:54 AM | #17 |
Bookmaker
Posts: 420
Karma: 2143650
Join Date: Sep 2010
Device: Cybook Opus
|
I confirmed that the lack of space was there by moving the cursor back and forth. Furthermore, the you-need-to-save star wasn't there when I opened the document and appeared upon my entering Code View. Something changed.
|
Advert | |
|
01-05-2012, 12:59 PM | #18 | |
Wizard
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
|
Quote:
I have the distinct feeling it is attached to switching Views and the Split View. Unfortunately I cannot really repeat it. It is not file related, because when I try again with the same file, it works. I really hate it when errors are not reproducible. |
|
01-05-2012, 02:16 PM | #19 |
Wizard
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
|
Had several crashes in S&R. Almost every time I did a count first and tried a replace all next. The replace by string was: <p class="endimage"><img alt="" src="../Images/wheel_small.jpg" /></p><h2
Perhaps the string is too long? Oh, the look was 'current file' since I will split later on. Does this help? |
01-05-2012, 02:20 PM | #20 |
Bookmaker
Posts: 420
Karma: 2143650
Join Date: Sep 2010
Device: Cybook Opus
|
Also, this may be my font snobbery, but would it be possible to use a different default font? I approve of the move to serif, but I think something like Charis would be even better.
|
Advert | |
|
01-05-2012, 02:42 PM | #21 |
Sigil developer
Posts: 1,274
Karma: 1101600
Join Date: Jan 2011
Location: UK
Device: Kindle PW, K4 NT, K3, Kobo Touch
|
If you double click on an image file repeatedly it opens new tabs each time, unlike Text or Styles which switches you to the open tab if a tab already exists.
|
01-05-2012, 02:53 PM | #22 |
Well trained by Cats
Posts: 30,439
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
TOC Generate oddity
XP SP3
Working in BV, added a space between digits and text. (nbsp in CV below) Code:
<h3 id="heading_id_3">48 Psychiatrist’s Report</h3> Still showed as 48Psychiatrist’s Report Switched to CV Repeated the Generate TOC Now correct |
01-05-2012, 03:33 PM | #23 | |
Sigil developer
Posts: 1,274
Karma: 1101600
Join Date: Jan 2011
Location: UK
Device: Kindle PW, K4 NT, K3, Kobo Touch
|
Quote:
Code:
diff --git a/src/Sigil/Tabs/TabManager.cpp b/src/Sigil/Tabs/TabManager.cpp index 3f34fee..7980bab 100644 --- a/src/Sigil/Tabs/TabManager.cpp +++ b/src/Sigil/Tabs/TabManager.cpp @@ -352,6 +352,13 @@ bool TabManager::SwitchedToExistingTab( Resource& resource, text_tab->ScrollToLine( line_to_scroll_to ); return true; } + + ImageTab *image_tab = qobject_cast< ImageTab* >( tab ); + + if ( image_tab != NULL ) + { + return true; + } } return false; |
|
01-05-2012, 07:52 PM | #24 |
Sigil & calibre developer
Posts: 2,487
Karma: 1063785
Join Date: Jan 2009
Location: Florida, USA
Device: Nook STR
|
@Meme, I'll integrate that path soon.
I'm going to do some testing over the next few days but I think Qt 4.8 is causing some major issues. There might be another beta this weekend. |
01-05-2012, 08:54 PM | #25 |
Sigil & calibre developer
Posts: 2,487
Karma: 1063785
Join Date: Jan 2009
Location: Florida, USA
Device: Nook STR
|
Switching back to Qt 4.7.4 makes a huge difference. The dataloss after a replace and switching to BV from CV goes away. It's still not updating properly but nothing is lost. Also, I noticed some major rendering issues in both BV and CV which go away with 4.7.4.
|
01-05-2012, 09:01 PM | #26 | |
Well trained by Cats
Posts: 30,439
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Quote:
We can only give Sigil a workout and try and spot issues. You have the skill and insight, to resolve them. |
|
01-06-2012, 03:40 AM | #27 |
Sigil developer
Posts: 1,274
Karma: 1101600
Join Date: Jan 2011
Location: UK
Device: Kindle PW, K4 NT, K3, Kobo Touch
|
And in case its missed, this post details an issue with F&R not finding text - https://www.mobileread.com/forums/sho...36&postcount=9
|
01-06-2012, 08:06 AM | #28 | |
Sigil & calibre developer
Posts: 2,487
Karma: 1063785
Join Date: Jan 2009
Location: Florida, USA
Device: Nook STR
|
Quote:
The .*Release also has the same issue because it starts matching a the beginning of the line so if your cursor is at the start of class then you're already past the start point for the match. So what this really comes down to is how to determine what a match is. I'm looking at the entire document beginning to end right now. Would it be better to do a forward and then backward search from the cursor position? The reason I went with a beginning to end search is you will always get the same count no matter where you are in the document. Going by cursor position (as shown with this example) you will get different matching results depending on where your cursor is due to the nature of regex's including or not including text. |
|
01-06-2012, 08:29 AM | #29 |
Sigil & calibre developer
Posts: 2,487
Karma: 1063785
Join Date: Jan 2009
Location: Florida, USA
Device: Nook STR
|
Content not updating properly when switching between BC and CV after a replacement has been fixed.
|
01-06-2012, 10:10 AM | #30 |
Techno-geek
Posts: 225
Karma: 1116651
Join Date: Nov 2006
Location: Mississippi, USA
Device: PRS-T1 (Black), PRS-T3S (Black), Kobo Aura ONE
|
Will going back to QT 4.7.4 allow use with Snow Leopard?
--MH |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
New Beta for BB? | FF2 | Amazon Kindle | 2 | 05-28-2011 10:21 AM |
BETA TESTER | The Terminator | Kobo Reader | 1 | 12-14-2010 10:23 PM |
Beta Beta Test of Major New Features | Starson17 | Calibre | 45 | 05-17-2010 10:55 AM |
0.6 out of beta? | Nate the great | Calibre | 3 | 07-17-2009 02:45 AM |