File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 1.2.2
2+
3+ - Improved pub.dev scores
4+
15## 1.2.1
26
37- Updated the Onyx SDK
Original file line number Diff line number Diff line change 11name : onyxsdk_pen
22description : This plugin integrates the Onyx Pen SDK into Flutter to improve e-ink responsiveness in drawing apps.
3- version : 1.2.1
3+ version : 1.2.2
44homepage : https://github.com/saber-notes/saber/tree/main/packages/onyxsdk_pen
55
66topics :
Original file line number Diff line number Diff line change 1- name : onyxsdk_pen
1+ # This name should be replaced with `onyxsdk_pen` by the `patches/remove_proprietary_dependencies.sh` script.
2+ # This is because the Dart analyzer gets confused because there are two pubspec.yaml files with the name `onyxsdk_pen`.
3+ name : onyxsdk_pen_dummy
24description : This plugin integrates the Onyx Pen SDK into Flutter to improve e-ink responsiveness in drawing apps.
3- version : 1.2.0
5+ version : 1.2.2
46homepage : https://github.com/saber-notes/saber/tree/main/packages/onyxsdk_pen
57publish_to : ' none'
68
Original file line number Diff line number Diff line change 1010 sed -i -e ' s!/onyxsdk_pen!/onyxsdk_pen_dummy!' pubspec.yaml
1111fi
1212
13+ # find "name: onyxsdk_pen_dummy" and replace with "name: onyxsdk_pen"
14+ echo -n " Patching onyxsdk_pen_dummy to have name onyxsdk_pen: "
15+ # check if packages/onyxsdk_pen_dummy/pubspec.yaml contains name: onyxsdk_pen_dummy
16+ if grep -q " name: onyxsdk_pen_dummy" packages/onyxsdk_pen_dummy/pubspec.yaml; then
17+ echo " found"
18+ sed -i -e ' s!name: onyxsdk_pen_dummy!name: onyxsdk_pen!' packages/onyxsdk_pen_dummy/pubspec.yaml
19+ else
20+ echo " already done"
21+ fi
22+
1323# remove Onyx maven repo
1424echo -n " Removing Onyx,jitpack maven repo: "
1525# check if android/build.gradle contains "repo.boox.com"
You can’t perform that action at this time.
0 commit comments