0466ed8500
chore: adjust config
2024-11-01 19:37:20 -07:00
39dfdcfa53
chore: adjust config
2024-10-30 14:02:48 -07:00
2db8564a51
chore: adjust config
2024-10-30 13:46:33 -07:00
2b6682a48e
chore: add verbose ci logging
2024-10-30 13:31:56 -07:00
8e5249ec4e
chore: 8.8.5 next
2024-10-23 19:22:01 -07:00
ad9ed1b631
release: @nativescript/core 8.8.4
8.8.4-core
2024-10-23 19:21:29 -07:00
a320ca1fb3
revert: "perf(core): avoid setting the same value to view properties" ( #10618 )
...
Revert "perf(core): avoid setting the same value to view properties (#10602 )"
This reverts commit 499fe8dc82db623550a38d3f91eb9f9252304e31.
2024-10-23 13:14:04 -07:00
e92ef33885
chore: 8.8.4 next
2024-10-23 10:02:31 -07:00
909e563612
release: @nativescript/core 8.8.3
8.8.3-core
2024-10-23 10:01:50 -07:00
148a54b60c
chore: Nx 20 ( #10636 )
2024-10-23 09:25:25 -07:00
1cee35d4fb
fix(ios): replace deprecated UIApplication.shared.openUrl method call ( #10627 )
2024-10-23 07:57:52 -07:00
050601232a
fix(layout): prevent negative width/height values ( #10616 )
2024-09-03 08:59:03 -07:00
7b4cb8419c
feat: allow the passing of a bundle suffix ( #10614 )
2024-08-29 09:53:31 -07:00
ba3316e749
fix(ios): popover delegate should ignore non-native views ( #10609 )
2024-08-29 09:29:49 -07:00
73f9827d31
devops: replace FlyCI runners with GitHub runners ( #10607 )
2024-08-22 19:38:55 -07:00
6104b5bfa3
feat(core): added css class for styling dialog nested elements ( #10605 )
2024-08-22 19:06:22 -07:00
dca77183d1
fix(ios): proper cleanup of reused listview cell content ( #10603 )
2024-08-07 22:50:48 -07:00
499fe8dc82
perf(core): avoid setting the same value to view properties ( #10602 )
2024-08-07 17:28:15 -07:00
75c8e941a0
fix(ios): proper drawing bounds for colored borders ( #10600 )
2024-08-05 15:42:13 -07:00
f7b9d06e91
fix(android): RootLayout shade cover null color handling ( #10599 )
2024-08-05 15:40:46 -07:00
89fa6ec84d
fix(android): layout change listeners are ignored when using addEventListener ( #10597 )
2024-08-05 15:07:37 -07:00
8877becdf9
fix(color): four-digit hex color parse failure ( #10593 )
2024-08-05 15:05:27 -07:00
423a2d2dce
fix(core): include everything but core.aar in android platforms ( #10592 )
2024-07-25 17:37:16 -03:00
a703d9a7a1
chore: cleanup log ( #10586 )
2024-07-14 09:34:08 -07:00
174a1279c5
chore: 8.8.2 next
2024-07-12 11:03:24 -07:00
d8347d1481
release: @nativescript/core 8.8.1
8.8.1-core
2024-07-12 11:03:01 -07:00
4c705967d2
fix(android): targetSdk 34 registerBroadcastReceiver ( #10585 )
2024-07-12 10:56:29 -07:00
338fb264b9
release: @nativescript/webpack 5.0.22
2024-07-11 08:37:17 -07:00
1e2ad3dc6b
chore: 8.8.1 next
2024-07-11 08:25:06 -07:00
f1efcfd9ee
release: @nativescript/core 8.8.0
8.8.0-core
2024-07-11 08:23:43 -07:00
6041b2d083
fix(gestures): lowercase gesture handling and add deprecation notice when using non-string events ( #10581 )
2024-07-10 19:05:10 -07:00
41f938c5ee
fix(winter-cg): crypto ( #10580 )
2024-07-10 18:20:51 -07:00
f184d5b814
chore: workspace updates
2024-07-10 09:15:48 -07:00
2bfe8b38e3
fix(crypto): error expectation
2024-07-10 08:36:49 -07:00
f7679d725a
feat(winter-cg): crypto, atob, btoa ( #10577 )
2024-07-10 07:46:06 -07:00
774d4e2237
release: @nativescript/types 8.8
2024-07-09 21:48:30 -07:00
492eef087e
feat(types): iOS 18 beta 3
2024-07-09 21:44:51 -07:00
9541b1b68c
fix(embed): use factory only when it's available ( #10579 )
...
When embedding via 'ns embed ios', the .swift symbols may not be available and are not needed. This can be revisited in the future with project settings for embedded projects.
2024-07-09 14:40:40 -07:00
0e2db6e586
fix(webpack): union type ( #10575 )
2024-07-06 08:15:01 -07:00
7f2d51e7d0
revert: "perf: improve attribute selectors by adding single listeners ( #10384 )"
2024-07-04 10:33:45 -07:00
7e9be32e28
fix(android): prevent error while opening modal from background ( #10570 )
...
It is a known android "issue" that you cant commit/show a fragment while in background. The reason is, as explained [here](https://medium.com/@113408/avoid-fragment-illegalstateexception-can-not-perform-this-action-after-onsaveinstancestate-ba76ae4f00fe ) or [here](https://stackoverflow.com/questions/15729138/on-showing-dialog-i-get-can-not-perform-this-action-after-onsaveinstancestate ), that `onSaveInstanceState` is already called so any operation before activity start would be with state loss.
There are 2 solutions in this case:
* use `commitAllowingStateLoss`, `dismissAllowingStateLoss` ... but then you loose state ... This is what we are doing in N in many cases. We can do this with `show` too but we would need to override the `DialogFragment.show` method.
* delay the action until the activity is resumed.
This PR uses the second solution. We could add an option to `showModal` to use the first solution. The user experience is different. Solution 1: when the app is resumed the modal is already shown and layed out. Solution 2: you see the modal opening on app resume
2024-07-03 12:23:01 -07:00
80f3ff2042
feat(ios): SF Symbol scale support via iosSymbolScale ( #10569 )
2024-07-02 16:26:40 -07:00
893b858b80
feat(types-ios): iOS 18 ( #10558 )
2024-07-02 11:54:49 -07:00
71dfa15606
chore: 8.8.0 preview for next
2024-07-02 11:16:11 -07:00
c736f72fce
feat(config): embed options for existing platform host projects ( #10568 )
2024-07-02 09:37:46 -07:00
779d79285d
feat(core): ability to embed into platform host projects ( #10465 )
2024-07-01 16:47:33 -07:00
9fd361c2e6
feat(core): css media query support ( #10530 )
2024-07-01 09:28:59 -07:00
6dd441d6ba
perf(android): gridlayout with less JNI calls ( #10402 )
2024-07-01 09:20:14 -07:00
7036f12b5c
fix(android): prevent error on navigation back after using page transition ( #10439 )
2024-06-28 16:15:40 -07:00
4abcb216da
feat(android): background color/image handling improvements ( #10451 )
2024-06-28 15:07:10 -07:00