Mathieu Virbel
Mathieu Virbel
This commit allow to pass a --functionId in order to not require user input, and be usable in scripts or ci/cd. Example: ``` $ appwrite deploy function --functionId xxxx ℹ...
Hi, I just find out that when you call connect(), it's actually a blocking command until the handshake is done. That's not what we expect when using a threaded client...
We have a setup.py, but never really used it, so must fix it.
``` PythonActivity = autoclass('org.renpy.android.PythonActivity') PythonActivity.RESULT_OK ``` give: ``` W/dalvikvm(16054): JNI WARNING: static fieldID 0x41643930 not valid for class Lorg/renpy/android/PythonActivity; W/dalvikvm(16054): base=0x418a3270 count=6 W/dalvikvm(16054): in Lorg/jnius/NativeInvocationHandler;.invoke0:(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object; (GetStaticIntField) ``` (triggered in a...
Take a look at this snippet: ``` python class DelayedRunnable(PythonJavaClass): __javainterfaces__ = ['java/lang/Runnable'] def __init__(self, callback, *args, **kwargs): super(DelayedRunnable, self).__init__(*args, **kwargs) self.callback = callback @java_method('()V') def run(self): self.callback() handler =...
Our current presplash / icon is not used at all in the tmplates with Xcode 5. I guess the goal is that buildozer handle the conversion (if needed) to the...
In non-debug build, stdout/err are not working, so we deactivate print. This patch allow to redirect stdout/err into NSLog if requested. Don't merge, i actually didn't tested this specific, but...
**Describe the bug** When using a DISPLAX tag supporting TUIO on a DISPLAX screen, oscpy TUIO listener crash: ``` ❯ oscli dump -P 3333 Exception in thread Thread-1: Traceback (most...
This is a tiny change that allow to change the AndroidManifest to use a custom icon for roundIcon, new in the SDK 25. Example:
The current dependency for `Flask-SuperAdmin` is `Flask-WTF>=0.9` which itself install `wtforms >= 1.0.4`. As for today, version for `Flask-WTF` is 0.11, and `wtforms` is 2.0.2. The following model crash: ```...