Kentaro Fukuchi

Results 10 issues of Kentaro Fukuchi

Controller::align incorrectly modified the alignment of the caption label twice. This patch fixes this issue.

This patch enables font-awesome's 'copy' icon. Copy icon is useful for a variety of purposes: this will help module developers. This patch is a purified version of cc300f468b2661cf7d06dce4faf2575a2733c34d of #1501.

This patch allows the user to duplicate an item from the admin dashboard. While the same feature is already implemented as a plugin ([ItemCopy](https://github.com/gegedenice/ItemCopy)), this implementation is much simpler. Plus,...

Adds getAddEditView() and makes addAction() and editAction() to use it. Referring this refactoring patch: 01f8dbd This will be needed to add copying action to the items. Here's my working branch:...

This patch allows the user to copy an existing resource template. Use case: Imagine you have some resource templates and now are going to create a new one. Typically your...

Basically, libqrencode uses 'int' instead of 'size_t' type for size attributes. While this worked without any problems, clang warns like following: ``` $ CC=clang CFLAGS="-Wshorten-64-to-32 -Wsign-conversion" ./configure --with-tests $ make...

David Dahl suggests: > Another item I have been thinking about is the possibility of > including the input string's value as metadata in the image file. It > may...

SVG and PNG images generated by qrencode from the same condition seem to differ to each other, when transparent color was given. An SVG image contains a filled rectangle as...

When using pynput on a Xorg server, if I start a MouseListener and/or KeyboardListener, stop it after a while, and then join, it does not join immediately. The join will...

Hi, Pressure value returned by getPoint() is always 0 in some environments. It is caused by a division-by-zero error. 138 float rtouch; 139 rtouch = z2; 140 rtouch /= z1;...