Re: Language problems ... again

2017-12-12 Thread Jürgen Spitzmüller
Am Montag, den 11.12.2017, 21:07 -0500 schrieb Scott Kostyshak:
> Will Koji know that the string should be translated? I assumed that
> he
> just searches for text that is marked as English. Should we just
> notify
> him directly or should we make a "Changelog-sweave.lyx" file?

Either solution seems good to me.

Jürgen

signature.asc
Description: This is a digitally signed message part


Re: Plan for next announcement

2017-12-12 Thread Scott Kostyshak
On Tue, Dec 12, 2017 at 08:05:56AM +, Stephan Witt wrote:
> Am 12.12.2017 um 02:52 schrieb Scott Kostyshak :
> > 
> > On Tue, Dec 12, 2017 at 12:58:36AM +, Uwe Stöhr wrote:
> >> El 10.12.2017 a las 21:28, Scott Kostyshak escribió:
> >> 
> >>> One option is just to announce rc1 now.
> >> 
> >> I would announce it right now.
> >> 
> >> Please use build 8 of my RC1 installer.
> 
> Which Qt-Version did you use for this installer? I saw the request/question 
> to use Qt-5.9.3… 
> I’m able to provide a new package with 5.9.3 if that’s sensible. I saw Kornel 
> reporting problems
> on Linux - but Uwe preferred this for Windows and on Mac at least one ticket 
> is solved by using the newer Qt. 

I think 5.9.3 makes sense, especially since it fixed that ticket. I can
upload a new Mac binary for RC1 if you send it to me. If you prefer to
wait for RC2, that's fine too. Your call.

Scott


signature.asc
Description: PGP signature


Multi-mode editor?

2017-12-12 Thread Jonas -
Hello,

I recently wrote a blog about would look like the ideal WYSIWYM editor
according to me (
https://jonas17b.wixsite.com/monsite/home/wysiwym-editor-on-top-of-context-lout).
Basically it would be an editor with 2 edition modes:
1) A content edition mode that will be a trimmed down version of what LyX
currently is, where the user can be focused on the content
2) A template edition mode in which the user can define styling, spacing,
margins, etc with an intuitive interface

Do you think that's an approach that LyX could take in the future?

Cheers,
Jonas


Re: Updated Russian translation

2017-12-12 Thread Uwe Stöhr

El 12.12.2017 a las 07:37, Юрий Скалько escribió:


I hereby grant permission that my contributions to LyX can be released
under the license GPL v2 or later.


Many thanks Yuriy,

I added you now to the LyX credits.

regards Uwe


Re: Plan for next announcement

2017-12-12 Thread Uwe Stöhr

El 12.12.2017 a las 09:05, Stephan Witt escribió:


Which Qt-Version did you use for this installer?


Qt 5.9.3. I am using this build now for a while and wrote some new LyX 
documents with it. I have not encountered a problem.


regards Uwe


Re: LyX-Workarea: Background not shown correctly

2017-12-12 Thread Patrick De Visschere

> 
> Can you try to set/unset documentMode in DragTabBar::DragTabBar and see what 
> it does?
> 
> JMarc

I’ve inserted setDocumentMode(true/false); and it doesn’t make any difference.

I’ve then set breakpoints in :

QCocoaNativeInterface::setContentBorderEnabled(QWindow *window, bool enable)
and QMainWindow::setUnifiedTitleAndToolBarOnMac(bool set)

but these are never triggered ...

… because the format() you’ve been following is not from QCocoaBackingStore, 
but from QRasterBackingStore, as shown in this stack ...



… and that’s because the code for the QCocoaBackingStore::format() has changed 
between Qt-5.9 and Qt-5.10;
This is the code for Qt-5.10:

QImage::Format QCocoaBackingStore::format() const
{
if (windowHasUnifiedToolbar())
return QImage::Format_ARGB32_Premultiplied;

return QRasterBackingStore::format();
}

===
The top routine in the stack QSurfaceFormat::hasAlpha() returns:

return d->alphaBufferSize > 0; (with alphaBufferSize=8)

The latter is set in :

QSurfaceFormat QCocoaWindow::format() const
{
QSurfaceFormat format = window()->requestedFormat();

// Upgrade the default surface format to include an alpha channel. The 
default RGB format
// causes Cocoa to spend an unreasonable amount of time converting it to 
RGBA internally.
if (format == QSurfaceFormat())
format.setAlphaBufferSize(8);
return format;
}

===



Re: Plan for next announcement

2017-12-12 Thread Stephan Witt
Am 12.12.2017 um 02:52 schrieb Scott Kostyshak :
> 
> On Tue, Dec 12, 2017 at 12:58:36AM +, Uwe Stöhr wrote:
>> El 10.12.2017 a las 21:28, Scott Kostyshak escribió:
>> 
>>> One option is just to announce rc1 now.
>> 
>> I would announce it right now.
>> 
>> Please use build 8 of my RC1 installer.

Which Qt-Version did you use for this installer? I saw the request/question to 
use Qt-5.9.3… 
I’m able to provide a new package with 5.9.3 if that’s sensible. I saw Kornel 
reporting problems
on Linux - but Uwe preferred this for Windows and on Mac at least one ticket is 
solved by using the newer Qt. 

Stephan

> 
> OK I will.
> 
> Thanks,
> 
> Scott