Re: (browser) focus hocus pocus broke us

2018-09-25 Thread panagiotis merakos via use-livecode
Mikey you have the Business Edition don't you? I was wondering if XPDF could be useful in your use case. Best, Panos -- On Tue, Sep 25, 2018 at 3:44 AM Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > I'm loading a pdf, not a web page into the widget. >

Re: App Dead on iOS 12

2018-09-24 Thread panagiotis merakos via use-livecode
Hi all, If you folks still see crashes on startup on iOS 12 and you are using an Apple Enterprise Cert/ Provisioning Profile, then this is the culprit. Regenerating the certificate/provisioning profile seems to fix the problem: https://quality.livecode.com/show_bug.cgi?id=21597 Best, Panos -

[ANN] This Week in LiveCode 147

2018-09-24 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #147 here: https://goo.gl/KkeEZG This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Standalone build workaround

2018-09-19 Thread panagiotis merakos via use-livecode
Hello Jacque, The Standalone Builder closes and opens the stack when building a standalone, so this means that all the messages that are sent when closing and opening the stack will be sent. So yes, all the (pre)open*/close* messages are expected to be sent. The "if" block should change to: if

Re: App Dead on iOS 12

2018-09-18 Thread panagiotis merakos via use-livecode
@Dan and @Terry (and everyone that still sees a crash on iOS 12) Could you please send a sample stack that crashes on iOS 12 for you to panos.mera...@livecode.com? Moreover, could you also mention: 1. The MacOS version 2. The iOS 12 device you used I had tested with 9.0.1 RC-2 (which is almost

Re: App Dead on iOS 12

2018-09-18 Thread panagiotis merakos via use-livecode
Hello Terry, RE the icons, make sure you are using the correct version of command line tools: 1. Open Xcode 9.4.1 2. Go to Xcode's menubar : Xcode -> Preferences -> Locations -> Command Line Tools and choose "9.4.1" Hope this helps. Best, Panos -- On Tue, Sep 18, 2018 at 9:13 AM Terry Judd

[ANN] This Week in LiveCode 146

2018-09-17 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #146 here: https://goo.gl/zB6zFc This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: [ANN] Release 9.0.1

2018-09-17 Thread panagiotis merakos via use-livecode
Hello Alex, Sorry, I thought I had replied already. Yes, if you are on MacOS High Sierra you have to use either Xcode 9.4 or 9.4.1. Just make sure the command line tools (Xcode -> Preferences -> Locations -> Command Line Tools) you use matches the Xcode version. Best, Panos --

Re: LIC 9.0.1 Stable Redraw Problem

2018-09-14 Thread panagiotis merakos via use-livecode
Hello Randy, I just tested on iOS 11.4 simulator and I cannot reproduce this problem. Could you file a bug report and attach a simple stack that demonstrates the problem? If it is a bug we will try to fix it in the upcoming 9.0.2 rc1. BTW, which version of LC did you use to build these apps,

[ANN] Release 9.0.1

2018-09-12 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.1 STABLE. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.1 STABLE contains more

[ANN] This Week in LiveCode 145

2018-09-10 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #145 here: https://goo.gl/WQPYZu This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Timezone library - how to use in Livecode Server?

2018-09-06 Thread panagiotis merakos via use-livecode
Hello Matthias, In the PR Mark posted, click on the tab "Files Changed". Then scroll down until you see the diffs for the macstatusmenu.lcb file. Click on the "View" button for this file. Then click on "Raw". This should take you to this page:

[ANN] Release 9.0.1 RC-3

2018-09-04 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.1 RC-3. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.1 RC-3 comes with 1

[ANN] This Week in LiveCode 144

2018-09-03 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #144 here: https://goo.gl/KYVehE This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: ImageHandles_v105

2018-09-03 Thread panagiotis merakos via use-livecode
Thanks Hermann :) On Sat, Sep 1, 2018 at 7:28 PM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > Just uploaded hhImageHandles to "Sample Stacks". > > This is a group of handles that is attachable to any image. > All you have to do (after copying the group to your stack): > send

Re: Trouble with iOS Logos/No Appearing on Home Screen

2018-09-03 Thread panagiotis merakos via use-livecode
Hello Brahmanathaswami, If you only see the default icon, then you might need to download Xcode's additional components. See https://quality.livecode.com/show_bug.cgi?id=21531 also, why would you check (uncheck) Prerendered choice? This was needed for some older iOS versions (I think

Re: Android Audio Recorder Woes

2018-09-03 Thread panagiotis merakos via use-livecode
Hello Dan, Hehe no worries, you're welcome. The Android Audio Recorder Lib is currently the only case where you'll have to ask for a permission explicitly. In all other cases (including Location) the permission dialog is shown automatically. For example, RE location access, if you call , this

Re: Android Audio Recorder Woes

2018-08-31 Thread panagiotis merakos via use-livecode
Hello Dan, Ok, so since 9.0.1 uses the new android permissions model, you might have to ask for permission to record audio first. See the command androidRequestPermission in the dictionary. Best, Panos On Fri, Aug 31, 2018, 23:30 Dan Friedman wrote: > Panos. > > > > Thank you for the reply!

Re: Android Audio Recorder Woes

2018-08-31 Thread panagiotis merakos via use-livecode
Hello Dan, Which LC version are you using? Best, Panos On Fri, Aug 31, 2018, 18:51 Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello! I am trying to implement the Android Audio Recorder options in my > project, but it’s not working. I have checked the “Android

[ANN] This Week in LiveCode 143

2018-08-27 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #143 here: https://goo.gl/9XrMGR This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Android permissions

2018-08-24 Thread panagiotis merakos via use-livecode
Hello Jacque, Currently all the commands/functions that do stuff which will require special permissions will trigger the permission dialog automatically. Then only exception is commands/functions that exist in a LCB library. Currently the only example that falls into this category is the Android

Re: What happened to the LC 9 UI font?

2018-08-24 Thread panagiotis merakos via use-livecode
-Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im > Auftrag > von panagiotis merakos via use-livecode > Gesendet: Freitag, 24. August 2018 11:06 > An: How to use LiveCode > Cc: panagiotis merakos > Betreff: Re: What happene

Re: What happened to the LC 9 UI font?

2018-08-24 Thread panagiotis merakos via use-livecode
Hello Tiemo, Do you see that on Mac or Windows? Best, Panos -- On Fri, Aug 24, 2018 at 11:53 AM Tiemo Hollmann TB via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello, > > > > Windows 10. > > The standard UI font has changed from LC 8 to LC 9. It looks a little bit > like "bold",

[ANN] Release 9.0.1 RC-2

2018-08-22 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.1 RC-2. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.1 RC-2 comes with 7

[ANN] This Week in LiveCode 142

2018-08-20 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #142 here: https://goo.gl/xe8Hxa This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

[ANN] This Week in LiveCode 141

2018-08-14 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #141 here: https://goo.gl/VKHEdV This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

[ANN] This Week in LiveCode 140

2018-08-06 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #140 here: https://goo.gl/tww8bD This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: iOS 12 compatibility

2018-08-05 Thread panagiotis merakos via use-livecode
Hi Andrew, sure, send it to panos.mera...@livecode.com along with a recipe to reproduce the problem. Best, Panos On Sun, Aug 5, 2018, 20:39 wrote: > I've been trying to figure out the exact recipe and/or a workaround > for this problem and I can't. From the testing that I've done, >

Re: Move command on iOS

2018-08-04 Thread panagiotis merakos via use-livecode
Hello all, I have added a comment to the bug report. Best, Panos -- On Sat, Aug 4, 2018 at 7:53 AM, Monte Goulding via use-livecode < use-livecode@lists.runrev.com> wrote: > This seems to work fine here testing on a device > > > On 4 Aug 2018, at 2:20 pm, J. Landman Gay via use-livecode < >

Re: Too fundamental to be a bug, so what's wrong?

2018-07-30 Thread panagiotis merakos via use-livecode
Hello Tom, What is the output of: global gTSsettings["teamcount"]; put gTSsettings["teamcount"] - 4 Best, Panos -- On Mon, Jul 30, 2018 at 10:32 PM, Tore Nilsen via use-livecode < use-livecode@lists.runrev.com> wrote: > I have not encountered any differences in how variables are declared from

Re: Home Screen Icon Not Rendered on iOS

2018-07-30 Thread panagiotis merakos via use-livecode
, Sannyasin Brahmanathaswami via use-livecode wrote: > All the icons have RGB change, Red, Green, Blue > > I found one (1024x1024) that was set to "index" > I re-exported from Illustrator, > > Still did help > > Brahmanathaswami > > > On 7/30/18, 5:53 AM, "

[ANN] This Week in LiveCode 139

2018-07-30 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #139 here: https://goo.gl/TwJhD7 This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Home Screen Icon Not Rendered on iOS

2018-07-30 Thread panagiotis merakos via use-livecode
Do the icons have an alpha channel? I *think* they are not allowed to have one. Best, Panos -- On Mon, Jul 30, 2018 at 4:01 PM, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > Yes, I've had a similar problem, but I haven't figured it out. I went back > and found a

Re: Browser Widget question

2018-07-26 Thread panagiotis merakos via use-livecode
Hi Bill, On iOS http URL are blocked by ATS (App Transport Security). You can disable ATS in the iOS standalone settings, but it is not recommended. Another way is to add a whitelist of URLs that should not be blocked by ATS. This requires using a custom plist. Best, Panos -- On Thu, Jul 26,

Re: iOS 12 compatibility

2018-07-25 Thread panagiotis merakos via use-livecode
ode@lists.runrev.com> wrote: > Not to be alarmist, but does this discovery suggest all current iOS apps > will break when iOS 12 comes out? > > be well, > randy > www.classroomFocusedSoftware.com > > > On Jul 25, 2018, at 5:22 PM, panagiotis merakos via use-livecode < &g

Re: iOS 12 compatibility

2018-07-25 Thread panagiotis merakos via use-livecode
Ok, one less issue to tackle then :) If you could file a bug report with a reproducible recipe (and ideally a sample stack), this will help us identify and fix the problem in an upcoming release. Best, Panos -- On Wed, Jul 25, 2018 at 5:13 PM, wrote: > I've been using 9.0.0. > > When using

Re: Oauth2 (Dropbox) on iOS

2018-07-25 Thread panagiotis merakos via use-livecode
BTW if you want to add a whitelist for ATS in the plist, here are some more details on which keys/values you need and how to add them: http://forums.livecode.com/viewtopic.php?f=49=28294 Best, Panos -- On Wed, Jul 25, 2018 at 3:16 PM, panagiotis merakos wrote: > Hi Ben, > > The "App URL Query

Re: Oauth2 (Dropbox) on iOS

2018-07-25 Thread panagiotis merakos via use-livecode
Hi Ben, The "App URL Query Whitelist" field is for specifying a list of custom url schemes that the standalone can launch (using the "launch URL custom_url_scheme" command) on iOS 9+. See bug https://quality.livecode.com/show_bug.cgi?id=18687 for more details. Best, Panos -- On Wed, Jul 25,

Re: iOS 12 compatibility

2018-07-25 Thread panagiotis merakos via use-livecode
@Andrew thanks for checking. Which LC version do you now use? We have fixed *a lot* of acceleratedrendering-related issues in LC 9.0.1- RC-1, so issue #2 might be already fixed. Best, Panos -- On Wed, Jul 25, 2018 at 2:11 PM, Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote:

Re: iOS 12 compatibility (panagiotis merakos)

2018-07-25 Thread panagiotis merakos via use-livecode
Hi all, It seems the crash is related to screen updates, and adding this to the preopenstack handler prevents the app from crashing: Could you please confirm? Best, Panos -- PS: We are still investigating. On Thu, Jul 19, 2018 at 9:51 AM, panagiotis merakos wrote: > Thanks Andrew. I just

[ANN] This Week in LiveCode 138

2018-07-23 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #138 here: https://goo.gl/TpJVrX This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Android, acceleratedRendering and visual effect

2018-07-21 Thread panagiotis merakos via use-livecode
What Jacque said; Originally you had built the standalone with LC 9.0.1 rc1 (and installed it in the device), so its manifest had targetSDKversion=26. Then you built a new one with LC 9.0.0, so it had its targetSDKversion equal to the minSDKversion, as specified in the standalone settings, and

Re: Android, acceleratedRendering and visual effect

2018-07-21 Thread panagiotis merakos via use-livecode
> > On 7/21/18, 12:53 PM, "use-livecode on behalf of panagiotis merakos via > use-livecode" use-livecode@lists.runrev.com> wrote: > > Can you try setting the app identifier in the standalone settings to > something unique that definitely is not already i

Re: Android, acceleratedRendering and visual effect

2018-07-21 Thread panagiotis merakos via use-livecode
Can you try setting the app identifier in the standalone settings to something unique that definitely is not already installed in the device? Is it possible that you have installed an app with the same identifier (com.yourcompany.yourapp) in the device, which was built with 9.0.1 rc1? On Sat, Jul

Re: Android, acceleratedRendering and visual effect

2018-07-21 Thread panagiotis merakos via use-livecode
Hello Dan, What is the version of Android the device is running? I am wondering if you get this error because of the value of the targetSdkVersion set in the manifest. Best, Panos On Sat, Jul 21, 2018, 20:32 Ray via use-livecode < use-livecode@lists.runrev.com> wrote: > Are you having this

Re: iOS 12 compatibility (panagiotis merakos)

2018-07-19 Thread panagiotis merakos via use-livecode
Thanks Andrew. I just upgraded the test device to iOS 12 beta 4 and I confirm apps still crash on startup. Sigh :( Best, Panos -- On Wed, Jul 18, 2018 at 6:28 PM, Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote: > Based on the fact that my apps are still crashing on load in

Re: how to refresh LC IDE dictionary after i changed a api.lcdoc file?

2018-07-18 Thread panagiotis merakos via use-livecode
Hi Matthias, Not sure if this will work, but try deleting the Documentation Cache folder of the LC version you modified: /Users//Library/Application Support/RunRev/Documentation Cache/ .. Best, Panos -- On Wed, Jul 18, 2018 at 10:51 AM, Matthias Rebbe via use-livecode <

Re: iOS 12 compatibility

2018-07-18 Thread panagiotis merakos via use-livecode
lt; >> use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>> >> wrote: >> > Skype also crashes. With Adobe AIR apps a current app crashes, but one >> from >> > four years ago doesn’t. Hopefully Apple will fix things. >> > >> &

Re: iOS 12 compatibility

2018-07-18 Thread panagiotis merakos via use-livecode
s.runrev.com>> > wrote: > > Skype also crashes. With Adobe AIR apps a current app crashes, but one > from > > four years ago doesn’t. Hopefully Apple will fix things. > > > > On Tue, Jul 3, 2018 at 1:53 PM panagiotis merakos via use-livecode < > > use-livec

Re: Property inspector / custom properties - how can i resize the value field

2018-07-16 Thread panagiotis merakos via use-livecode
Hi all, Thank you for the feedback. We are aware of this problematic behavior. There is a bug report about it: https://quality.livecode.com/show_bug.cgi?id=20701 Best, Panos -- On Mon, Jul 16, 2018 at 9:34 PM, Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Tom,

[ANN] This Week in LiveCode 137

2018-07-16 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #137 here: https://goo.gl/udrjpg This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Boiling over with excitement . . .

2018-07-10 Thread panagiotis merakos via use-livecode
Hello Richmond, This fix can easily be applied to your local install of LC 8.x: 1. Navigate to LiveCode 8.x.y.app/Contents/Tools/Toolset/resources/supporting_files/property_definitions/ 2. Find file "com.livecode.interface.classic.PolygonGraphic.tsv" and rename it to

Re: [Bug 19998] The non-appearance of Polygon graphics in LC 8.1.4 and above

2018-07-09 Thread panagiotis merakos via use-livecode
Hi Richmond, LC 8.x is now EOLed, but regarding this specific bug fix, you can apply the fix locally to your install of LC 8.x, as it includes changes only in the IDE code. Best, Panos -- On Mon, Jul 9, 2018 at 8:26 PM, Richmond Mathewson via use-livecode < use-livecode@lists.runrev.com> wrote:

[ANN] Release 9.0.1 RC-1

2018-07-09 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.1 RC-1. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.1 RC-1 comes with more

[ANN] This Week in LiveCode 136

2018-07-09 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #136 here: https://goo.gl/5GBXt7 This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Standalone in IDE Test Works; But Not From SA

2018-07-09 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, This does sound strange. I would expect either to successfully install the app to your phone in both cases, or to fail in both, as the "Test" button uses mergDeploy to install the app, which essentially does what Xcode does, but all in one button. Does the device log from

Re: iOS 12 compatibility

2018-07-04 Thread panagiotis merakos via use-livecode
AIR apps a current app crashes, but one from > four years ago doesn’t. Hopefully Apple will fix things. > > On Tue, Jul 3, 2018 at 1:53 PM panagiotis merakos via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Hello Andrew, > > > > No we did not h

Re: iOS 12 compatibility

2018-07-03 Thread panagiotis merakos via use-livecode
Hello Andrew, No we did not have a chance to look at it yet, but we are aware of the issue. I think I had filed a bug report a week ago, I'll double check and let you know. Best Panos -- On Tue, Jul 3, 2018, 21:34 Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote: > Had my

Deploying to Android from Linux

2018-07-03 Thread panagiotis merakos via use-livecode
Hello folks, Spent some time on this today, so I post it here in case anyone sees the same problem: I wanted to deploy to my Android device from Linux. My device was shown as "Android ???" in the "Test Target" menu. I ignored this and chose it and clicked Test. The S/B was stuck to the

[ANN] This Week in LiveCode 135

2018-07-02 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #135 here: https://goo.gl/pqKtJ8 This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: What exactly does the status pending in Livecode Quality Control Center mean

2018-06-28 Thread panagiotis merakos via use-livecode
Hi all, This problem happened because some on-rev servers (Jasmine, Sage and Diesel) had only the 64 bit version of this library, while others (e.g. Tio) had both the 32 and 64 bit version. Robin has identified and fixed the problem, so the 32bit version of LC Server 9 now does work on all

Re: tsNet issues

2018-06-28 Thread panagiotis merakos via use-livecode
Hi Richard, RE 2, this is a bug that will be fixed in 9.0.1 rc1. You can apply locally the changes described here until we release 9.0.1 rc1: https://github.com/livecode/livecode/pull/6567 Best, Panos On Thu, Jun 28, 2018, 21:08 Richard Gaskin via use-livecode < use-livecode@lists.runrev.com>

Re: LC 9 Dictionary, Linux

2018-06-27 Thread panagiotis merakos via use-livecode
Hi Warren, If you quit LC, this setting is lost next time you open LC. You could probably tweak the script that checks the value of this setting. It should be in the script of stack revIdeLibrary, around line 4583: *function* revIDEBrowserWidgetUnavailable * return* (the platform is "Linux")

Re: What exactly does the status pending in Livecode Quality Control Center mean

2018-06-27 Thread panagiotis merakos via use-livecode
@Ralf, I see the same error when trying to install LC 9 32 bit on Sage. However the exact same setup is successful on Tio. So I guess some of the on-rev servers do have this library, while others don't. I will ask Robin about this. Best, Panos -- On Wed, Jun 27, 2018 at 12:08 PM, Ralf Bitter

Re: LC 9 Dictionary, Linux

2018-06-27 Thread panagiotis merakos via use-livecode
Hi Warren, We made this "hack" to open the Dictionary in a browser as a workaround to the problem where some Linux distros could not display the browser widget. If your Linux machine is not affected by this issue, then you can do the following to open the Dictionary in a LC stack (as it used to

Re: iOS 12 compatibility

2018-06-26 Thread panagiotis merakos via use-livecode
Hi Andrew, oh what fun! I will install iOS 12 beta in one of our office devices and investigate tomorrow. After a quick google search it seems that other non-LC apps crash on startup on iOS 12 beta, so probably Apple has changed something. BTW what version of LC / MacOS/ Xcode did you use to

Re: What exactly does the status pending in Livecode Quality Control Center mean

2018-06-25 Thread panagiotis merakos via use-livecode
gt; > Btw., as it even does not work on your own hosting platform > On-Rev/Livecode Hosting, did someone at Livecode ever used tsNet with LC > server successfully? > And if so, which OS and which LC server was used? > > Regards, > > Matthias > > > > Am 25.06.20

Re: What exactly does the status pending in Livecode Quality Control Center mean

2018-06-25 Thread panagiotis merakos via use-livecode
Hi Matthias, Pending status means that the LC team needs to take action in order to confirm (or not confirm) the bug. We usually set this status when a bug requires a bit of setup to test. I assume you ask about the tsnet with LC server issue. Best, Panos On Mon, Jun 25, 2018, 18:32 Matthias

[ANN] This Week in LiveCode 134

2018-06-25 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #134 here: https://goo.gl/gHVa6q This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: 8.1.10 Reporting the ScreenSize of a iPhone7: 0,0,375,667

2018-06-23 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, I think I have found the culprit. I don’t have a Plus device to check, but the differences you see between the iPhone 7 Plus device and simulator is probably because you have enabled the "Zoomed Mode" in the device. If you have "Zoomed Mode" enabled in the iPhone 6+/7+/8+

Re: IOS 11.4 -- Stuck

2018-06-22 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, You should still be able to deploy iOS apps to your iOS 11.4 device. This does NOT depend on the Xcode version you use to build the app. It depends only on the dropdown in the iOS standalone settings. For example, if you choose "8.0 or later" then your app will run on any iOS

Re: 8.1.10 Reporting the ScreenSize of a iPhone7: 0,0,375,667

2018-06-18 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, If your device is iPhone7 Plus, then you have to put the appropriate splash screens in the "iPhone 6 Plus Portrait" and "iPhone 6 Plus Lscape" slots in the standalone iOS settings. Best, Panos -- On Mon, Jun 18, 2018 at 4:25 PM, Sannyasin Brahmanathaswami via use-livecode

[ANN] This Week in LiveCode 133

2018-06-18 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #133 here: https://goo.gl/JLuWLG This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Dark Mode in macOS Mojave, any thoughts from the mothership?

2018-06-16 Thread panagiotis merakos via use-livecode
Hi Tekne, We have filed this bug report to track the crash on startup on MacOS Mojave: https://quality.livecode.com/show_bug.cgi?id=21363 Note that Mojave is currently in early beta, so it might be the case that this issue is resolved on the next beta. If I remember correctly, a similar problem

Re: LiveCode - Andoid SDK - Java compatibility chart?

2018-06-15 Thread panagiotis merakos via use-livecode
Hi Tiemo, Currently Java 9 and 10 are not supported, because of some packages being reshuffled/removed/renamed in these versions, so LC does not find the expected tools in the expected location. So this is a bug in LC, not a compatibility issue. There is a bug report here:

[ANN] This Week in LiveCode 132

2018-06-11 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #132 here: https://goo.gl/x6H5Ym This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Problems with jsonToArray and special chars like: æøå

2018-06-06 Thread panagiotis merakos via use-livecode
question does > not show up in the keys of the array. Another thing that puzzles me is that > som values, like -0.2 or -0.4 will show up with som additional zeros in the > JSON-text. When I add a space between the minus operator and the number, it > is displayed correctly. > >

Re: Problems with jsonToArray and special chars like: æøå

2018-06-06 Thread panagiotis merakos via use-livecode
Hi Tore, jsonToArray uses the mergJSON external. The mergJSON external expects the data passed to JSONtoArray() to be utf-8 encoded (this is the case with any LC external, such revDB etc). So something like this should work: global kommuneArray on preOpenStack put empty into kommuneArray

Re: Siva Siva App in iOS version 1.2 in now out

2018-06-05 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, Congratulations for the release. Just a quick note for the landscape issue on Android, this is now fixed and it will be available in the next LC 9 release (9.0.1 RC-1): https://quality.livecode.com/show_bug.cgi?id=19465 Best, Panos -- On Tue, Jun 5, 2018 at 4:25 PM,

[ANN] This Week in LiveCode 131

2018-06-04 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #131 here: https://goo.gl/UBMWUD This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: CRASH after entering "put the hostnametoaddress" into MSG

2018-05-31 Thread panagiotis merakos via use-livecode
Thanks Klaus :) On Thu, May 31, 2018 at 12:15 PM, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Clarence, > > > Am 31.05.2018 um 13:09 schrieb Clarence Martin via use-livecode < > use-livecode@lists.runrev.com>: > > > > I don't know if this helps: > > I tried this

Re: Livecode 9 Server seems not to run when custom installed on On-Rev and HostM

2018-05-31 Thread panagiotis merakos via use-livecode
@Matthias, RE the tsNet error, since you 've installed the 32bit version of Livecode Server Business, you'll need the 32 bit version of the tsNet external, so you'll have to use the `tsNet-x86.so` file instead of the `tsNet-x64.so` Does that fix the problem for you? Best, Panos -- On Thu,

Re: CRASH after entering "put the hostnametoaddress" into MSG

2018-05-31 Thread panagiotis merakos via use-livecode
I see that too :) Would you mind filing a bug so as we fix it in the next release, if possible, Best, Panos -- On Thu, May 31, 2018 at 11:07 AM, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Hakan, > > > Am 31.05.2018 um 11:14 schrieb ha...@exformedia.se: > > > >

Re: Android APK sanity check

2018-05-31 Thread panagiotis merakos via use-livecode
Hi all, The first thing that came to my mind was the bug report that Paul referenced, but I had a look at the Samsung S5 specs and it seems it has an ARM chip, so it should not be affected by this bug. @Jacque does that happen with any android standalone you build with LC 9.0.0, or just this

Re: LC >= 8 no more HC friendly?

2018-05-30 Thread panagiotis merakos via use-livecode
Hi Klaus, Yes, unfortunately this happens since LC 7 with some HC stacks. Best, Panos -- On Wed, May 30, 2018 at 2:55 PM, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi friends, > > I am trying to open some old HyperCard stacks (thanks Jaqueline :-) > and LC 8.1.9,

Re: How To Become Android Developer

2018-05-29 Thread panagiotis merakos via use-livecode
Hi all, The older versions of Android SDK Tools now are a bit difficult to find, as they are well-hidden in Google's archives. If e.g. you need version 24.4 (which I confirm works as expected), try these links, depending on the platform you are:

Re: Is anyone using tsNet external with LCserver?

2018-05-29 Thread panagiotis merakos via use-livecode
livecode.com account, so there is no URL of this form which you can alter to give you a direct download. Best regards, Panos -- On Tue, May 29, 2018 at 5:37 PM, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > On 05/29/2018 03:41 AM, panagiotis merakos via use-livec

Re: Is anyone using tsNet external with LCserver?

2018-05-29 Thread panagiotis merakos via use-livecode
Starting from 8.1.9 IIRC, there are two editions of LC commercial server: Indy and Business. You have to login into your account in livecode.com and then you can download the edition that matches your license. For example if you are Business on Mac and want to download LC Server 9, the .zip file

[ANN] This Week in LiveCode 130

2018-05-28 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #130 here: https://goo.gl/QmXovP This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Graphing Solution...

2018-05-28 Thread panagiotis merakos via use-livecode
Hi Glen, The best place to start is probably the LC Dictionary: Open Dictionary -> Go to tab "Guide" -> Click on "Extending LiveCode" section Best, Panos -- On Mon, May 28, 2018 at 2:18 PM, Glen Bojsza via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks everyone for your

Re: Is anyone using tsNet external with LCserver?

2018-05-28 Thread panagiotis merakos via use-livecode
does this really mean that all tsNet Business > features are enabled on LC server (business)? > > Just did tests (got my files from the shelf) using > as an example asynchronous requests, which failed. > Synchronous flavours worked as expected. > > > Ralf > > > &

Re: Is anyone using tsNet external with LCserver?

2018-05-28 Thread panagiotis merakos via use-livecode
> > Am 28.05.2018 um 11:28 schrieb panagiotis merakos via use-livecode < > use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>>: > > > > Hi all, > > > > > > > > *>>>>>>>>And don't expect to get

Re: Is anyone using tsNet external with LCserver?

2018-05-28 Thread panagiotis merakos via use-livecode
Hi all, *And don't expect to get access to the extended feature setof tsNet Business on LC server. Seems there is no way to activatea business license for tsNet on server, don’t think this has changed.* This is no longer the case, this bug has been fixed since LC 8.1.8 RC-1:

Re: Should "put" to the Message Box be affected by lockMessages?

2018-05-24 Thread panagiotis merakos via use-livecode
Thanks Richard. I just saw this thread. This has been reported in the past as well ( https://quality.livecode.com/show_bug.cgi?id=16235), against LC 6.7.x. Best, Panos -- On Thu, May 24, 2018 at 7:28 PM, Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks for

Re: [ANN] Release 8.1.10

2018-05-22 Thread panagiotis merakos via use-livecode
Hi Ben, Yes, there will not be any other LC 8.x releases, and this includes LC 8.2 as well. In LC 8.2 we introduced the CommunityPlus license and the auto-complete feature, both of which are now included in LC 9.0.0. If you have not moved your projects to LC 9 yet, now is the time :) Best,

[ANN] Release 8.1.10

2018-05-22 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 8.1.10 STABLE. ** Note 8.1.10 STABLE is the last planned release in the 8.x series ** Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater.

[ANN] This Week in LiveCode 129

2018-05-21 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #129 here: https://goo.gl/yo6mRp This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Building in 8.1.10.RC 2 for iOS - Missing Undefined symbols

2018-05-15 Thread panagiotis merakos via use-livecode
Hi Brahmanathaswami, For using LC 8.1.10 RC2, you'll probably have to: 1. Keep only Xcode9.3 in Mobile Prefs 2. In the terminal, type: sudo xcode-select -s /path/to/xcode9.3 Note you'll have to do the same for Xcode9.2 if you want to use LC 9 Best, Panos -- On Wed, May 16, 2018 at 4:00 AM,

Re: [BUG] Browser widget implemented without access to localStorage API

2018-05-15 Thread panagiotis merakos via use-livecode
ndre > > On Tue, May 15, 2018 at 6:35 PM, panagiotis merakos via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Hi Andre, >> >> Have you tested with LC 8.1.10 rc1 (or rc2)? We added support for local >> storage on Android browser in

Re: [BUG] Browser widget implemented without access to localStorage API

2018-05-15 Thread panagiotis merakos via use-livecode
Hi Andre, Have you tested with LC 8.1.10 rc1 (or rc2)? We added support for local storage on Android browser in this PR: https://github.com/livecode/livecode/pull/6362 Best, Panos -- On Tue, May 15, 2018 at 8:56 PM, Andre Garzia via use-livecode < use-livecode@lists.runrev.com> wrote: >

<    1   2   3   4   5   6   7   8   9   >