invent icon indicating copy to clipboard operation
invent copied to clipboard

Express yourself with code.

Results 69 invent issues
Sort by recently updated
recently updated
newest added

When installing `pypercard` on a new system, we should also mention all the system package based dependencies. Asking this particular as I spent the last 30 minutes to figure out...

It appears that the manifest is missing at least one file necessary to build from the sdist for version 0.0.1a4. You're in good company, about 5% of other projects updated...

Some of these were spotted by @peowebster - the `form_value`/`form_field` mixup was quite confusing for her in particular.

On Debian stretch, the system Python is python 3.5. Unfortunately the use of f-strings means that pypercard is incompatible with Python 3.5. Adding `python_requires='>3.5'` or similar to `setup.py` would, with...

The code below fails for me when run from mu-editor (alpha) but not when run from the command line. I'm on Debian 10 but the issue is clearly something to...

It would be useful to be able to dynamically create a selector field e.g. using a list stored in the data_store, something like: Card( "my_selector_card", form=Inputs.SELECT, options={my_list_in_data_store}, ... ) or...

It would be useful to be able to define a value for TEXTBOX, TEXTAREA and SLIDER forms that they take when they're initialised. In the case of TEXT* forms this...

On some Debian 10 systems, the transition to a new card fails if there is a problem in the user's code. We should wrap such transitions in exception handlers that...

I like to update a card's text value but like to stay on it. Although a transition function is evaluated and the data_store attributes changed, the text value does not....

It would be great to be able to format text in the 'text' attribute. Maybe even complexer structures like tables would become useful. Is it possible to enter html-Blocks into...