File tree 3 files changed +17
-6
lines changed
3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
spec . name = 'Drawsana'
3
- spec . version = '0.11 .0'
3
+ spec . version = '0.12 .0'
4
4
spec . license = { :type => 'MIT' }
5
5
spec . homepage = 'https://asana.github.io/Drawsana'
6
6
spec . documentation_url = 'https://asana.github.io/Drawsana'
7
7
spec . authors = { 'Steve Landey' => 'stevelandey@asana.com' }
8
8
spec . summary = 'Let your users mark up images with freehand drawings, shapes, and text'
9
- spec . source = { :git => 'https://github.com/asana/Drawsana.git' , :tag => '0.11 .0' }
9
+ spec . source = { :git => 'https://github.com/asana/Drawsana.git' , :tag => '0.12 .0' }
10
10
spec . source_files = 'Drawsana/**/*.swift'
11
11
12
- spec . platform = :ios , '9 .0'
12
+ spec . platform = :ios , '11 .0'
13
13
14
14
spec . swift_version = '5.2'
15
15
end
Original file line number Diff line number Diff line change 8
8
9
9
import UIKit
10
10
11
- public let DRAWSANA_VERSION = " 0.11 .0 "
11
+ public let DRAWSANA_VERSION = " 0.12 .0 "
12
12
13
13
/// Set yourself as the `DrawsanaView`'s delegate to be notified when the active
14
14
/// tool changes.
Original file line number Diff line number Diff line change 1
- # Drawsana 0.11 .0
1
+ # Drawsana 0.12 .0
2
2
3
3
Drawsana is a generalized framework for making freehand drawing views on iOS. You can
4
4
let users scribble over images, add shapes and text, and even make your own tools.
@@ -32,7 +32,7 @@ Add `Asana/Drawsana` to your Cartfile and update your project like you would for
32
32
Carthage framework, or clone the source code and add the project to your workspace.
33
33
34
34
```
35
- github "Asana/Drawsana" == 0.11 .0
35
+ github "Asana/Drawsana" == 0.12 .0
36
36
```
37
37
38
38
## Usage
@@ -95,6 +95,17 @@ open https://asana.github.io/Drawsana
95
95
96
96
## Changelog
97
97
98
+ ### 0.12.0
99
+ * Undo operations are now accessible outside the framework to enable you to make undoable changes with your own UI.
100
+ - ` AddShapeOperation `
101
+ - ` RemoveShapeOperation `
102
+ - ` ChangeTransformOperation `
103
+ - ` EditTextOperation `
104
+ - ` ChangeExplicitWidthOperation `
105
+ * Fix drawing view not being redrawn after being resized.
106
+ * Fix bugs related to color serialization.
107
+ * Fix bugs related to text entry.
108
+
98
109
### 0.11.0
99
110
100
111
* ` DrawingOperationStack.clearRedoStack() ` clears all redo operations from the
You can’t perform that action at this time.
0 commit comments