Sergey Romanenko

Results 34 issues of Sergey Romanenko

We should have this tool for image optimisation https://github.com/psliwa/image-optimizer This library is able to optimize png, jpg and gif files in very easy and handy way. It uses optipng, pngquant,...

priority: medium
type: improvement

To go forward - code and structure need to be refactored for upcoming Flextype 0.9.7! 1. Review **pds/skeleton** and implement some parts of https://github.com/php-pds/skeleton 2. Review possibility of migration to...

priority: high
type: improvement

update license year

We should able to set fractions for element width Draft implementation: ```php if (preg_match('/(\d+)\/(\d+)/', (string) $widthStyle, $matches)) { $widthStyle = intval($matches[1] / $matches[2] * 100); } ``` need to check...

priority: medium
type: feature

We should able to set percentage for element width Draft implementation: ```php if (preg_match('/^\d+(?:\.\d+)?%$/', (string) $widthStyle)) { $widthStyle = intval(($widthStyle / 100) * Terminal::getWidth()); } ``` need to check this...

priority: medium
type: feature

type: feature

type: feature

We should have emojies support for the element value. With the current implementation of the box model calculations for value length with emojies are little bit wrong because some emojies...

type: feature

We should have ability to import and export entries from files. New Entries methods: ```php /** * Import. * * @param string $file File with data to import. */ public...

priority: high
type: feature