Re: LC & Mac M1 Chip

2021-01-08 Thread panagiotis merakos via use-livecode
Hello all, Just a clarification - the bug about dashes in menus in standalones on Big Sur is: https://quality.livecode.com/show_bug.cgi?id=23009 and not https://quality.livecode.com/show_bug.cgi?id=23013 BTW, could someone that has a M1 Mac confirm that in the LC 9.6.2 RC-1 IDE there are no

Re: LC & Mac M1 Chip

2021-01-08 Thread Andre Garzia via use-livecode
Hi Panos, Just updated https://quality.livecode.com/show_bug.cgi?id=22955 with a screenshot from 9.6.2-rc-1 running on my M1 machine. I can't reproduce the bug, I guess it is fixed. On Fri, 8 Jan 2021 at 10:35, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello

Re: Threads in LC

2021-01-08 Thread David Bovill via use-livecode
I would find it very helpful if we would share some code in this “thread” about threads? At the moment I have a need to break up a heavy indexing task on a LiveCode server into a series of smaller steps that execute asynchronously. The web server receives a webhook  notifying it that there is

POST does not work under lock messages

2021-01-08 Thread Neville Smythe via use-livecode
It took me a while to figure this one out. I have a number of scripts which POST to LiveCode Server .lc scripts. All were working fine except one which always returned the output from whatever POST had last been executed. Evidently the previous form request was being resubmitted. Turns out I

Re: Threads in LC

2021-01-08 Thread Graham Samuel via use-livecode
On a purely personal note (does that make it OT?), I think I am beginning to accept, at a pretty advanced age, that just understanding LC coding is not really enough to get stuff done. Linux for example I have managed to avoid, and many other technologies… perhaps learning all this stuff is

Re: LC & Mac M1 Chip

2021-01-08 Thread Paul Dupuis via use-livecode
Andre and Panos, Thank you both. That given us some confidence we can release under LC 9.6.2rc1 so that customers can go ahead with their M! Big Sur systems as they want to. On 1/8/2021 6:46 AM, Andre Garzia via use-livecode wrote: Hi Panos, Just updated

Re: Threads in LC

2021-01-08 Thread JeeJeeStudio via use-livecode
Not that I know of. When using LC it uses the GPIO library/api from the Master Library in which it was embedded. If I recall correct that uses access to the GPIO library which is on the Raspberry. For this i can't recall if i needed to install something via terminal, which i needed to do for

Re: LC & Mac M1 Chip

2021-01-08 Thread Richmond via use-livecode
Your back stories made me fire up a G5 iMac I have here running macOS 10.5 and download the latest LiveCode to work on it . . . . Love and lunacy, Richmond. On 8.01.21 1:06, Curry Kenworthy via use-livecode wrote: Paul: > we have several customer who have said > they are upgrading to M1

Re: POST does not work under lock messages

2021-01-08 Thread Brian Milby via use-livecode
The docs don’t list all messages but do say that navigation and object creation messages are not sent. It gives a couple examples of each. This is in addition to get/set prop. Sent from my iPhone > On Jan 8, 2021, at 6:33 AM, Neville Smythe via use-livecode > wrote: > > It took me a

Re: Threads in LC

2021-01-08 Thread Alex Tweedly via use-livecode
On 08/01/2021 01:51, Bob Sneidar via use-livecode wrote: I have thought about this a bit. If what you mean by multiprocessing is that a new process can be spawned while your app can go off and do other things and get notified later that something happened, then this is quite doable. If what