Skip to content

Commit a6349e8

Browse files
committed
Merge branch 'master' of github.com:Akylas/nativescript-gesturehandler
# Conflicts: # src/gesturehandler/gesturehandler.android.ts
2 parents 2a61b37 + eb97376 commit a6349e8

File tree

72 files changed

+23624
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+23624
-178
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ yarn-error.log*
2424
.gradle
2525
.project
2626
.yarn
27+
.cxx
2728
tmp/
28-
package-lock.json
29-
yarn.lock
3029

3130
!.eslintrc.js
3231
!.prettierrc.js
@@ -36,6 +35,7 @@ yarn.lock
3635
devices.js
3736

3837
*.framework
38+
*.xcframework
3939
**/*.js.map
4040
src/**/*.js
4141
packages/**/*.js
@@ -45,6 +45,7 @@ build
4545
Pods
4646
!packages/platforms
4747
/packages/**/*.aar
48+
/demo-snippets/**/*.aar
4849
*.xcuserdatad
4950
/packages/README.md
5051
packages/**/*js.map
@@ -54,6 +55,5 @@ packages/*.ngsummary.json
5455
packages/*.metadata.json
5556
packages/angular
5657
packages/typings
57-
pnpm-lock.yaml
5858

5959
/blueprint.md

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "tools"]
22
path = tools
3-
url = git@github.com:nativescript-community/plugin-seed-tools.git
3+
url = https://github.com/nativescript-community/plugin-seed-tools.git
44
[submodule "demo-vue"]
55
path = demo-vue
6-
url = git@github.com:nativescript-community/plugin-seed-demo-vue.git
6+
url = https://github.com/nativescript-community/plugin-seed-demo-vue.git

.npmrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
shamefully-hoist=true
2+
public-hoist-pattern[]=*eslint*
3+
public-hoist-pattern[]=source-map-support
4+
public-hoist-pattern[]=ts-patch
5+
public-hoist-pattern[]=typescript
6+
public-hoist-pattern[]=cpy-cli
27
strict-peer-dependencies=false
8+
shell-emulator=true
9+
auto-install-peers=false
310
loglevel=error
411
engine-strict=true

.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,2 @@
11
{
2-
"files.exclude": {
3-
"schema": true
4-
},
5-
"search.exclude": {
6-
"**/*demo*": true,
7-
"src/**/*.js": true,
8-
"src/**/*.js.map": true
9-
},
10-
"java.configuration.updateBuildConfiguration": "disabled",
11-
"editor.snippetSuggestions": "top",
12-
"NE.enable.snippets": true,
13-
"xml.fileAssociations": [
14-
{
15-
"systemId": "/Volumes/data/dev/nativescript/nativescript-carto/schema/tns.xsd",
16-
"pattern": "**/**/*.xml"
17-
}
18-
]
192
}

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nmHoistingLimits: workspaces
2+
3+
nodeLinker: node-modules
4+
5+
yarnPath: tools/.yarn/releases/yarn-3.6.4.cjs

CHANGELOG.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,126 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.18](https://github.com/nativescript-community/gesturehandler/compare/v2.0.17...v2.0.18) (2023-11-08)
7+
8+
9+
### Bug Fixes
10+
11+
* override send all state events for app to handle ([b707c58](https://github.com/nativescript-community/gesturehandler/commit/b707c58f8d5e8989ce1124a9256b350fda22bf85))
12+
13+
14+
15+
16+
17+
## [2.0.17](https://github.com/nativescript-community/gesturehandler/compare/v2.0.16...v2.0.17) (2023-10-18)
18+
19+
**Note:** Version bump only for package gesturehandler
20+
21+
22+
23+
24+
25+
## [2.0.16](https://github.com/nativescript-community/gesturehandler/compare/v2.0.15...v2.0.16) (2023-10-18)
26+
27+
28+
### Bug Fixes
29+
30+
* **android:** fix for events not working after view unload/load ([46ce86c](https://github.com/nativescript-community/gesturehandler/commit/46ce86c4acc5163b1a3e4d4e7977de14e87dc5ec))
31+
32+
33+
34+
35+
36+
## [2.0.15](https://github.com/nativescript-community/gesturehandler/compare/v2.0.14...v2.0.15) (2023-10-17)
37+
38+
39+
### Bug Fixes
40+
41+
* **android:** build fix ([953b861](https://github.com/nativescript-community/gesturehandler/commit/953b861041b6543ce87a08c8c851cf42786d9d14))
42+
43+
44+
45+
46+
47+
## [2.0.14](https://github.com/nativescript-community/gesturehandler/compare/v2.0.13...v2.0.14) (2023-10-17)
48+
49+
50+
### Bug Fixes
51+
52+
* **android:** gradle improvement ([8a6f823](https://github.com/nativescript-community/gesturehandler/commit/8a6f823f74a2757d44fc4ec543ced5ea01da99c0))
53+
54+
55+
56+
57+
58+
## [2.0.13](https://github.com/nativescript-community/gesturehandler/compare/v2.0.12...v2.0.13) (2023-10-12)
59+
60+
61+
### Bug Fixes
62+
63+
* **android:** recycle MotionEvent when necessary ([d61e704](https://github.com/nativescript-community/gesturehandler/commit/d61e704c60f43c1daca00a362ed6584517958595))
64+
* **android:** support new optimized GridLayout (not yet released) ([8c03991](https://github.com/nativescript-community/gesturehandler/commit/8c03991bbee26e160c8328aabcf7f0afd099c2f8))
65+
* ensure we release all callbacks (N gesture override) ([dcd430a](https://github.com/nativescript-community/gesturehandler/commit/dcd430a5bc1e061a879e159eceb75ce121b17d66))
66+
67+
68+
69+
70+
71+
## [2.0.12](https://github.com/nativescript-community/gesturehandler/compare/v2.0.11...v2.0.12) (2023-06-27)
72+
73+
74+
### Bug Fixes
75+
76+
* **android:** broken build ([0a42307](https://github.com/nativescript-community/gesturehandler/commit/0a423078a415d113222fa745b3666cd64d58b0ce))
77+
78+
79+
80+
81+
82+
## [2.0.11](https://github.com/nativescript-community/gesturehandler/compare/v2.0.10...v2.0.11) (2023-06-27)
83+
84+
85+
### Bug Fixes
86+
87+
* **android:** fix for latest N and getting application context ([d1fa49f](https://github.com/nativescript-community/gesturehandler/commit/d1fa49f7fbd23d312f3ae2e55d9b145ac7cf9ca2))
88+
89+
90+
91+
92+
93+
## [2.0.10](https://github.com/nativescript-community/gesturehandler/compare/v2.0.9...v2.0.10) (2023-04-28)
94+
95+
96+
### Bug Fixes
97+
98+
* **android:** prevent gesture activation when outside the visible rect of a view ([5426539](https://github.com/nativescript-community/gesturehandler/commit/54265393d4f626ebac34c0eacbcbe56ed71a3bdb))
99+
100+
101+
102+
103+
104+
## [2.0.9](https://github.com/nativescript-community/gesturehandler/compare/v2.0.8...v2.0.9) (2023-03-08)
105+
106+
107+
### Bug Fixes
108+
109+
* GestureRootView layout fix ([611b4e2](https://github.com/nativescript-community/gesturehandler/commit/611b4e210d9b40044026fd7981d2ca4d2a72e1a3))
110+
111+
112+
113+
114+
115+
## [2.0.8](https://github.com/nativescript-community/gesturehandler/compare/v2.0.7...v2.0.8) (2022-12-16)
116+
117+
118+
### Bug Fixes
119+
120+
* N 8.4 final fix ([19b554d](https://github.com/nativescript-community/gesturehandler/commit/19b554d004967b23068eb558e5dd042813b23bca))
121+
122+
123+
124+
125+
6126
## [2.0.7](https://github.com/nativescript-community/gesturehandler/compare/v2.0.6...v2.0.7) (2022-12-01)
7127

8128
**Note:** Version bump only for package nativescript-gesturehandler

0 commit comments

Comments
 (0)