Carsten Blüm
Carsten Blüm
To make more perceivable what is going on (cf. #23) when events are scripted using cliclick, it would be helpful if clicks could be (optionally) visualized, similar to what some...
Pashua’s current dialog configuration is ugly, redundant and verbose, and as it is a proprietary format, there is no 3rd party code which could be used for parsing it. It...
This would be more consistent with other parts of macOS or Apple software.
As JSON is ubiquitous and supported in every major language, Pashua should optionally support returning dialog data as JSON. In addition, it should be feasible to read the configuration as...
In addition to being able to declare elements as mandatory, it would be nice to be able to define valid / invalid input, for example through a RegEx. This would...
Motivation: choosing the optimum position and size. The generic approach currently used does not work equally well for controls as different as a textfield and radiobuttons
Over the years, requested by a number of users: being able to control the order in which a user can tab through the elements.
On a code base I work on, I have this line: `printf('"%s";"%s";"%s"'."\r\n", ...$line);` When I enable `NoSuperfluousConcatenationFixer`, this is the resulting code: `printf("\"%s\";\"%s\";\"%s\"\r\n", ...$line);` So the fixer concatenated the strings,...
As described in https://github.com/kubawerlos/php-cs-fixer-custom-fixers/issues/916, a concatenation of single-quoted and double-quoted strings can be intentional to reduce quote escaping in the code. This PR introduces a setting `keep_concatenation_for_different_quotes` which allows keeping...