Evstifeev Roman
Evstifeev Roman
p4a version: git master os: opensuse tumbleweed i have created ./recipes dir with `__init__.py` and `kivy_async.py`: ```python from pythonforandroid.recipes.kivy import KivyRecipe class KivyAsyncRecipe(KivyRecipe): version = '1.11.0' url = 'https://github.com/matham/kivy/archive/async-support.zip' name...
p4a version: git master os: opensuse tumbleweed I tried to build apk with command: `p4a apk --private /home/z/pproj/paradox_ssh/ --version=1.7 --bootstrap=sdl2 --local-recipes=./recipes --requirements=python3,kivy-async,openssl,sqlite3,pil,requests,sdl2,plyer --whitelist=./whitelist.txt --permission=CALL_PHONE --permission=INTERNET --orientation=portrait --package=org.spbelect.paradox2 --name="paradox2" --release` got...
OS: opensuse tumbleweed xdg-desktop-portal: 1.16.0 xdg-desktop-portal-gtk: 1.14.1 xdg-desktop-portal-kde: 5.27.1 When i shutdown kde session, sometimes the shutdown is delayed for 1.5 minutes due to xdg-document-portal timeout: ``` Apr 09 10:37:50...
The example say: ``` // Finally we sign this object with cryptographic material from // Alyssa's Car's capabilityDelegation field, and using the // capabilityDelegation proofPurpose. ``` It is unclear, who...
Added notes on configuring PDM to use venv or PEP 582 to relevant pages. refs #3120 refs #2708 refs #2174
refs #3120 When pdm is configured to use PEP 582 instead of default virtualenv, print extra info on how to revert back to the default behavior.
On my existing project i tried to make it use virtual environment, but pdm refused saying that i am using PEP 582 mode ``` $ pdm init pyproject.toml already exists,...
Sample html is missing that form is firing `@ajax:success="$dispatch('contact:updated')` and that dialog listens to this event to close itself. This commit adds missing parts to correspond to the live demo...
When user selects \, then \ value bound with alpinejs x-model attribute becomes '{value: "x"}' instead of 'x' **To Reproduce** ```html First item Second item ``` **Expected behavior** Expected same...
If schema contains conint, the migrations fail with ValueError: Cannot serialize: Gt(gt=0) ```python from django.db.models import Model from django_pydantic_field import SchemaField from pydantic import conint class WebsiteUser(Model): test: conint(gt=0, lt=9999)...