Skip to content

Commit

Permalink
1.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
ivictbor committed Feb 3, 2021
1 parent 8f5f9e9 commit df69551
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Painterro({
|`defaultTextStrokeAndShadow` | Enables Stroke and Shadow for text tool by default (easier recognize text on screenshots) | `true` |
|`defaultSize` | default image size, should be string in format `<width>x<height>` in pixel, e.g. `'200x100'`. If value is `'fill'`(default) than all container size will be used | `'fill'` |
|`defaultTool` | Tool selected by default | `'select'` |
|`hiddenTools` | List of tools that you wish to exclude from toolbar e.g. something from this list `['crop', 'line', 'arrow', 'rect', 'ellipse', 'brush', 'text', 'rotate', 'resize', 'save', 'open', 'close']`, You can't hide default tool | `['redo']` |
|`hiddenTools` | List of tools that you wish to exclude from toolbar e.g. something from this list `['crop', 'line', 'arrow', 'rect', 'ellipse', 'brush', 'text', 'rotate', 'resize', 'save', 'open', 'close', 'undo', 'redo']`, You can't hide default tool | `['redo']` |
|`initText` | Display some centered text before painting (supports HTML). If null, no text will be shown | `null` |
|`initTextColor` | Color of init text | `'#808080'` |
|`initTextStyle` | Style of init text | `"26px 'Open Sans', sans-serif"` |
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "painterro",
"version": "1.2.18",
"version": "1.2.19",
"description": "HTML5 image editor widget",
"main": "build/painterro.commonjs2.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion wp/trunk/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
return {
longname: "Painterro",
author: "Ivan Borshchov",
version: "1.2.18",
version: "1.2.19",
};
}
});
Expand Down
4 changes: 2 additions & 2 deletions wp/trunk/painterro-wp.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
Plugin Name: Painterro
Plugin URI: https://github.com/ivictbor/painterro
Description: Paste screenshots and edit images directly in browser. Adds Painterro button to visual editor for images editing. Absolutely free and open source.
Version: 1.2.18
Version: 1.2.19
Author: Ivan Borshchov
License: MIT
*/

define("PAINTERRO_FILE", "painterro-1.2.18.min.js");
define("PAINTERRO_FILE", "painterro-1.2.19.min.js");

function include_painterro_script()
{
Expand Down

0 comments on commit df69551

Please sign in to comment.