scratch-paint 1.1.54 → 1.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +3 -0
- package/CHANGELOG.md +7 -2
- package/dist/scratch-paint.js +31 -31
- package/dist/scratch-paint.js.map +1 -1
- package/pack/scratch-paint-1.2.0-beta.1.tgz +0 -0
- package/package.json +2 -2
- package/release.config.js +5 -0
- package/src/components/button/button.css +2 -2
- package/src/components/color-picker/color-picker.css +3 -2
- package/src/components/color-picker/icons/fill-horz-gradient-enabled.svg +1 -1
- package/src/components/color-picker/icons/fill-radial-enabled.svg +2 -2
- package/src/components/color-picker/icons/fill-solid-enabled.svg +2 -2
- package/src/components/color-picker/icons/fill-vert-gradient-enabled.svg +2 -2
- package/src/components/color-picker/icons/swap.svg +2 -2
- package/src/components/dropdown/dropdown-caret.svg +2 -2
- package/src/components/dropdown/dropdown.css +1 -1
- package/src/components/fixed-tools/fixed-tools.css +1 -1
- package/src/components/fixed-tools/icons/group.svg +9 -9
- package/src/components/fixed-tools/icons/redo.svg +2 -2
- package/src/components/fixed-tools/icons/send-back.svg +2 -2
- package/src/components/fixed-tools/icons/send-backward.svg +2 -2
- package/src/components/fixed-tools/icons/send-forward.svg +2 -2
- package/src/components/fixed-tools/icons/send-front.svg +2 -2
- package/src/components/fixed-tools/icons/undo.svg +2 -2
- package/src/components/fixed-tools/icons/ungroup.svg +8 -8
- package/src/components/font-dropdown/font-dropdown.css +1 -1
- package/src/components/forms/input.css +2 -2
- package/src/components/mode-tools/icons/copy.svg +3 -3
- package/src/components/mode-tools/icons/curved-point.svg +7 -7
- package/src/components/mode-tools/icons/delete.svg +2 -2
- package/src/components/mode-tools/icons/flip-horizontal.svg +3 -3
- package/src/components/mode-tools/icons/flip-vertical.svg +3 -3
- package/src/components/mode-tools/icons/paste.svg +3 -3
- package/src/components/mode-tools/icons/straight-point.svg +3 -3
- package/src/components/paint-editor/icons/rotation-point.svg +2 -2
- package/src/components/paint-editor/paint-editor.css +1 -1
- package/src/components/tool-select-base/tool-select-base.css +1 -1
- package/src/css/colors.css +2 -3
- package/pack/scratch-paint-1.1.54.tgz +0 -0
package/.circleci/config.yml
CHANGED
|
@@ -82,6 +82,7 @@ workflows:
|
|
|
82
82
|
ignore:
|
|
83
83
|
- master
|
|
84
84
|
- develop
|
|
85
|
+
- beta
|
|
85
86
|
- /^hotfix\/.*/
|
|
86
87
|
build-test-no-deploy:
|
|
87
88
|
jobs:
|
|
@@ -93,6 +94,7 @@ workflows:
|
|
|
93
94
|
ignore:
|
|
94
95
|
- master
|
|
95
96
|
- develop
|
|
97
|
+
- beta
|
|
96
98
|
- /^hotfix\/.*/
|
|
97
99
|
- gh-pages
|
|
98
100
|
build-test-deploy:
|
|
@@ -106,6 +108,7 @@ workflows:
|
|
|
106
108
|
only:
|
|
107
109
|
- master
|
|
108
110
|
- develop
|
|
111
|
+
- beta
|
|
109
112
|
- /^hotfix\/.*/
|
|
110
113
|
push-translations:
|
|
111
114
|
triggers:
|
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [1.2.0-beta.1](https://github.com/LLK/scratch-paint/compare/v1.1.53...v1.2.0-beta.1) (2023-05-08)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
*
|
|
11
|
+
* use looks secondary rather than tertiary color ([442afca](https://github.com/LLK/scratch-paint/commit/442afcab38cd59434eb53e364876181857d576e6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* use purple theme ([a0f6a55](https://github.com/LLK/scratch-paint/commit/a0f6a55a34c98e5a192cc7b5ec96f7ce3e716e14))
|
|
12
17
|
|
|
13
18
|
## [1.1.53](https://github.com/LLK/scratch-paint/compare/v1.1.52...v1.1.53) (2023-05-03)
|
|
14
19
|
|