Re: Donations

2022-12-16 Thread Dr Eberhard W Lisse
Contact the developers off list and find out what they (or one of them)
need in hardware.  Or pay for the Apple developer license so they can
sign the sucker.

el

On 16/12/2022 19:17, Paul A. Rubin wrote:
> On 12/16/22 09:06, Pavel Sanda wrote:
>> On Wed, Dec 14, 2022 at 05:40:40PM -0500, Paul A. Rubin wrote:
>>> Is it possible to make an unrestricted donation via PayPal.  Every
>>> time I try (using the button from the LyX.org donation page), I get
>>> the following response: "Things don't appear to be working at the
>>> moment.  Please try again later."  "At the moment" is apparently
>>> Latin for "ever".
>> No, we don't have viable donation channel anymore and no one seems to
>> be motivated to push this through...
>>
>> Pavel
> Thanks Pavel.
> 

-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: master compile errors gzlib?

2022-12-16 Thread Yu Jin
Am Fr., 16. Dez. 2022 um 21:47 Uhr schrieb Scott Kostyshak:

> On Fri, Dec 16, 2022 at 09:18:08PM +0100, Yu Jin wrote:
> > Done at 26a3a085
>
> Sorry for the late comment Yu Jin, but should that line be conditional
> on (not?) LYX_EXTERNAL_Z?
>
> I'm guessing that the answer is that it's only necessary if
> LYX_EXTERNAL_Z is OFF, but that if LYX_EXTERNAL_Z is ON, it doesn't
> hurt? If this is indeed the answer, I think I would still be in favor of
> adding the conditional, although not a strong opinion.


sounds plausible actually. How do I use external Zlib though? I mean Qt
does not seem to have a zlib.lib somewhere in the kit, so including Qts
zlib.h does not make sense then either. Would I have to compile my own
zlib.lib separately and use the corresponding zlib.h? Then I would also not
need QtZlib, indeed I would also get the same error if I compiled a
different zlib.lib version then Qts zlib.h... As I already wrote, the whole
thing seems kinda suspicious. The variable is called
_Qt6ZlibPrivate_OWN_INCLUDE_DIRS, "private" suggests like it is just for
Qt, not for the application which uses Qt (like LyX), so why does it
include it in LyX in the first place?
I mean I don't know, as I wrote my commit was a workaround rather than a
solution...
--
  Eugene
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: master compile errors gzlib?

2022-12-16 Thread Scott Kostyshak
On Fri, Dec 16, 2022 at 09:18:08PM +0100, Yu Jin wrote:
> Am Fr., 16. Dez. 2022 um 09:16 Uhr schrieb Kornel Benko :
> 
> > Am Fri, 16 Dec 2022 07:37:00 +0100
> > schrieb Yu Jin:
> >
> > > > Yes it does work, but actually I had a better idea to use
> > > > ${_Qt6ZlibPrivate_OWN_INCLUDE_DIRS} instead of
> > "${CMAKE_PREFIX_PATH}/include/QtZlib",
> > > > because it is in the variable already. I have sent a patch here:
> > > > https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg218797.html
> > can you test it
> > > > again, it contains 2 more changes, but you can ignore those, they only
> > affect
> > > > wininstaller. Then I can push it if it still works for linux.
> > > >
> > > Here is a separate patch for just the CMake part.
> > >
> >
> > +1 to commit
> 
> 
> Done at 26a3a085

Sorry for the late comment Yu Jin, but should that line be conditional
on (not?) LYX_EXTERNAL_Z?

I'm guessing that the answer is that it's only necessary if
LYX_EXTERNAL_Z is OFF, but that if LYX_EXTERNAL_Z is ON, it doesn't
hurt? If this is indeed the answer, I think I would still be in favor of
adding the conditional, although not a strong opinion.

Scott


signature.asc
Description: PGP signature
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: master compile errors gzlib?

2022-12-16 Thread Yu Jin
Am Fr., 16. Dez. 2022 um 09:16 Uhr schrieb Kornel Benko :

> Am Fri, 16 Dec 2022 07:37:00 +0100
> schrieb Yu Jin:
>
> > > Yes it does work, but actually I had a better idea to use
> > > ${_Qt6ZlibPrivate_OWN_INCLUDE_DIRS} instead of
> "${CMAKE_PREFIX_PATH}/include/QtZlib",
> > > because it is in the variable already. I have sent a patch here:
> > > https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg218797.html
> can you test it
> > > again, it contains 2 more changes, but you can ignore those, they only
> affect
> > > wininstaller. Then I can push it if it still works for linux.
> > >
> > Here is a separate patch for just the CMake part.
> >
>
> +1 to commit


Done at 26a3a085
-- 
  Eugene
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Donations

2022-12-16 Thread Paul A. Rubin

On 12/16/22 09:06, Pavel Sanda wrote:

On Wed, Dec 14, 2022 at 05:40:40PM -0500, Paul A. Rubin wrote:

Is it possible to make an unrestricted donation via PayPal. Every time I try
(using the button from the LyX.org donation page), I get the following
response: "Things don't appear to be working at the moment. Please try again
later." "At the moment" is apparently Latin for "ever".

No, we don't have viable donation channel anymore and no one seems to be
motivated to push this through...

Pavel

Thanks Pavel.

--
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Is loading inputenc with two encodings a bug?

2022-12-16 Thread Udicoudco
On Fri, Dec 16, 2022 at 5:32 PM Scott Kostyshak  wrote:
>
> Attached is a .lyx file that produces the following code when exported
> with LaTeX (pdflatex):
>
>   \usepackage[latin9,cp1255]{inputenc}
>
> Ulrike Fisher points out the following [1]:
>
>   \usepackage[latin9,cp1255]{inputenc} doesn't make any sense, your
>   files can't have two encodings at the same time.
>
> Should I make a trac ticket for this?
>
> Scott
>
>
> [1] 
> https://tex.stackexchange.com/questions/668474/cant-compile-when-using-wrap-figure?noredirect=1#comment1661827_668474

I've exported the .lyx file to a .tex file and erased the latin9
option. It seems to work fine with both English and Hebrew. But,
wouldn't utf8 encoding be preferable?  Attached a minimal example.
> --
> lyx-devel mailing list
> lyx-devel@lists.lyx.org
> http://lists.lyx.org/mailman/listinfo/lyx-devel


hebrew_pdflaex.tex
Description: Binary data
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Is loading inputenc with two encodings a bug?

2022-12-16 Thread Scott Kostyshak
Attached is a .lyx file that produces the following code when exported
with LaTeX (pdflatex):

  \usepackage[latin9,cp1255]{inputenc}

Ulrike Fisher points out the following [1]:

  \usepackage[latin9,cp1255]{inputenc} doesn't make any sense, your
  files can't have two encodings at the same time.

Should I make a trac ticket for this?

Scott


[1] 
https://tex.stackexchange.com/questions/668474/cant-compile-when-using-wrap-figure?noredirect=1#comment1661827_668474


example.lyx
Description: application/lyx


signature.asc
Description: PGP signature
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Donations

2022-12-16 Thread Pavel Sanda
On Wed, Dec 14, 2022 at 05:40:40PM -0500, Paul A. Rubin wrote:
> Is it possible to make an unrestricted donation via PayPal. Every time I try
> (using the button from the LyX.org donation page), I get the following
> response: "Things don't appear to be working at the moment. Please try again
> later." "At the moment" is apparently Latin for "ever".

No, we don't have viable donation channel anymore and no one seems to be
motivated to push this through...

Pavel
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: master compile errors gzlib?

2022-12-16 Thread Kornel Benko
Am Fri, 16 Dec 2022 07:37:00 +0100
schrieb Yu Jin :

> > Yes it does work, but actually I had a better idea to use
> > ${_Qt6ZlibPrivate_OWN_INCLUDE_DIRS} instead of 
> > "${CMAKE_PREFIX_PATH}/include/QtZlib",
> > because it is in the variable already. I have sent a patch here:
> > https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg218797.html can you 
> > test it
> > again, it contains 2 more changes, but you can ignore those, they only 
> > affect
> > wininstaller. Then I can push it if it still works for linux.
> > 
> Here is a separate patch for just the CMake part. 
> 

+1 to commit

Kornel


pgpSExDkAX5YT.pgp
Description: Digitale Signatur von OpenPGP
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel