-
Content Count
1424 -
Joined
-
Last visited
-
Days Won
32
Everything posted by Dave Nottage
-
Going by the source, it appears it is called when the IDE first goes "idle", and it fires off a thread to do the check, so I doubt the delay is from the "phone home" check. FWIW, I see no noticeable delay with version 1.1.6.959
-
Microsoft Translator Text API v3.0
Dave Nottage replied to psycodad's topic in Network, Cloud and Web
The URL you are sending to does not appear to have any of the required values. It should (according to the link you gave) look at least something like this: https://api.cognitive.microsofttranslator.com/translate?api-version=3.0&to=de -
Application.MainForm, oddly enough Not really enough to go on - why do they need to be suppressed? i.e. why would they even show at the point when the IDE is shutting down?
-
For what purpose? That may define exactly what the add-in should "look for". One way might be to use a timer to monitor the Visible property of the main form. As far as I know, the only time it becomes invisible is when the IDE is shutting down
-
[iOS] TLocationSensor not firing in iOS12, w/ NSLocationAlwaysAndWhenInUseUsageDescription
Dave Nottage replied to Rollo62's topic in Cross-platform
This issue would be a part of the problem: https://quality.embarcadero.com/browse/RSP-21834 -
Does application.processmessages behaviour differ between VCL and FMX?
Dave Nottage replied to Incus J's topic in RTL and Delphi Object Pascal
ProcessMessages will not work as you may expect in FMX, and definitely not on Android. I suggest avoiding ProcessMessages entirely; then it won't matter which framework or platform you're using. It may be better to describe why you think it's necessary to use it (preferably with example code), because it's likely there are other ways to solve it. -
version control system Version Control System
Dave Nottage replied to Soji's topic in Delphi IDE and APIs
+1000 for SourceTree on macOS. Not as enthused about the Windows version- 49 replies
-
- git
- subversion
-
(and 1 more)
Tagged with:
-
Cross-platform discovery of device name and user name?
Dave Nottage replied to Lars Fosdal's topic in Cross-platform
The DW.OSDevice.xxx units here have implementations for GetDeviceName for iOS, Android, macOS, Windows and Linux: https://github.com/DelphiWorlds/KastriFree/tree/master/Core I could add something like GetUserName - which would likely return blank for iOS and Android -
It's probably Jeremy North's XE Plus Pack: http://jed-software.com/xepp.htm I'll point him in this direction
-
Delphi Developers Archive (Experimental)
Dave Nottage replied to Lars Fosdal's topic in Tips / Blogs / Tutorials / Videos
The post titles? If so, why? -
Delphi Rio IDE hangs opening 10.2.3 projects
Dave Nottage replied to Halted's topic in Delphi IDE and APIs
Hasn't happened to me. Any that you can share? -
CrossPlatform uPnP solutions for Delphi
Dave Nottage replied to Ugochukwu Mmaduekwe's topic in Network, Cloud and Web
Does this link (followed from the SO link) not give enough info? http://francois-piette.blogspot.com/2013/02/using-universal-plug-and-play-upnp-with.html -
Thanks for the heads up! For anyone else interested, here's a link: https://developer.tomtom.com/maps-sdk-ios
-
I'm curious as to how they've made it work, unless it uses an older Google Maps SDK. Delphi 10.3 Rio will not link against the frameworks in the latest Google Maps SDK version, even targeting iOS 11.2 SDK
-
I've just noticed this from your first post. I can only suggest checking what the differences are between the two. Perhaps make a copy of the converted application, and start removing parts of it until the problem is resolved.
- 8 replies
-
- osx
- delphi 10.2.1
-
(and 1 more)
Tagged with:
-
Is there a callstack?
- 8 replies
-
- osx
- delphi 10.2.1
-
(and 1 more)
Tagged with:
-
So that it's consistent with the overuse of padding in the IDE?
-
..or a refurbished model (including iMac or Macbook); preferably no earlier than 2013 to ensure that it'll run Mojave.
-
What is the exact error message? Can you ping the address from a command line window in your VM? I'm using VirtualBox VM's myself and have not had an issue with either NAT or Bridged, as long as the VM can "see the address" being connected to.
-
Delphi 10.3 and AdMob blocking UI updates on older versions of Android
Dave Nottage replied to Yaron's topic in Cross-platform
I have tested 10.3 on an Android 5.1.1 device and it updates the UI just fine -
Delphi 10.3 | Android : registerIntentAction -> java.lang.UnsupportedOperationException
Dave Nottage replied to WestyOz's topic in Cross-platform
I am trying to fathom why the web install and ISO install apparently has different versions of .DCUs (or perhaps source). Check the last comment, here: https://quality.embarcadero.com/browse/RSP-18836 They must be being packaged from different sources; the question is why on Earth are they? -
No more Transparent Forms on Android, now they are black
Dave Nottage replied to Jose Morango's topic in FMX
No suggestions as yet, however it has been reported: https://quality.embarcadero.com/browse/RSP-22314 -
Delphi 10.3 and AdMob blocking UI updates on older versions of Android
Dave Nottage replied to Yaron's topic in Cross-platform
Can you show how/where JInterstitialAd is being used? -
Delphi 10.3 | Android : registerIntentAction -> java.lang.UnsupportedOperationException
Dave Nottage replied to WestyOz's topic in Cross-platform
Whatever the reason, I've reported the problem: https://quality.embarcadero.com/browse/RSP-22877 -
Delphi 10.3 | Android : registerIntentAction -> java.lang.UnsupportedOperationException
Dave Nottage replied to WestyOz's topic in Cross-platform
I can't see how it could have ever worked. The code for registerIntentAction in FMXNativeActivity.java: public void registerIntentAction(String action) { mRegisteredIntentActions.add(action); } ..and where it is initialized: private List<String> mRegisteredIntentActions = Arrays.asList(NotificationInfo.ACTION_NOTIFICATION, NotificationPublisher.ACTION_GCM_NOTIFICATION); Arrays.asList returns a fixed size list: https://developer.android.com/reference/java/util/Arrays.html#asList(T...) i.e. it cannot be added to. Attempting to add anything will raise the error that you're seeing.