Malcolm Smith
Malcolm Smith
MediaWiki renders the following as an indented table: ``` :{| |- |rowspan=5 valign=top|1 astronomical unit |= {{val|149597870700}} [[metre]]s (exactly) |- |≈ {{val|92.955807}} million [[mile]]s |} ``` But mwparserfromhell doesn't...
Gmvault is listed as version "1.5-beta". This has been the case through versions 1.9, 1.9.1, and the 1.9.2 beta linked in #285.
``` def f(): x = None def g(): # Programmer forgot to add `nonlocal` here. if x is None: x = "hello" ``` `foo.py:5:12: F823 local variable 'x' (defined in...
Currently we run `sdkmanager --list_installed` within `verify_tools` in every Briefcase Android command. But this takes at least 1.5 seconds to run on my machine, even in the relatively small SDKs...
There are lots of legitimate reasons for someone to stay on an old Briefcase version, so we should make it easy for those people to find matching documentation. But Read...
**Describe the bug** I used the ANDROID_SDK_ROOT environment variable to make Briefcase use my existing Android SDK. This resulted in the following warnings when Briefcase runs `sdkmanager --list_installed` (duplicate lines...
It's occurred to me that the Chaquopy template PR (https://github.com/beeware/briefcase-android-gradle-template/pull/52) won't be compatible with old versions of Briefcase, because its briefcase.toml omits `app_support_path`, and replaces `app_packages_path` with `app_requirements_path`. The Flatpak...
**Describe the bug** I somehow ended up in a situation where `adb devices` returned the following: ``` List of devices attached emulator-5554 device product:sdk_gphone64_x86_64 model:sdk_gphone64_x86_64 device:emulator64_x86_64_arm64 transport_id:1 emulator-5556 device transport_id:2...
Generated APKs and AABs currently include the following ABIs: * armeabi-v7a * arm64-v8a * x86_64 We can't drop armeabi-v7a yet, because there are still too many 32-bit devices in use...
As discussed in beeware/toga#1521, any changes to the Toga API should preserve the old API and give it a DeprecationWarning. However, DeprecationWarning is disabled by default to avoid displaying irrelevant...