From 806e9146f171d4aa990bc3e0e0719d54b2abdf7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Wed, 17 Jul 2024 20:26:05 +0200 Subject: [PATCH 1/3] feat: add blog post for 12.4.0.GA --- posts/2024/sdk_12_4_0_ga.md | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 posts/2024/sdk_12_4_0_ga.md diff --git a/posts/2024/sdk_12_4_0_ga.md b/posts/2024/sdk_12_4_0_ga.md new file mode 100644 index 0000000..8b6991c --- /dev/null +++ b/posts/2024/sdk_12_4_0_ga.md @@ -0,0 +1,42 @@ +--- +title: 'Titanium SDK 12.4.0.GA released' +date: '2024-07-17' +category: 'Release' +author: 'Hans Knöchel' +teaser: 'Android API 34 Support' +image: https://tidev.io/images/titanium-general.png +--- + +![Titanium SDK 12.4.0.GA](/images/titanium-general.png) + +The next version of the Titanium SDK is now is available: 12.4.0.GA. Titanium SDK 12.4.0 is a minor release of the SDK, adding new features and platform updates. + +This update is focussed on supporting the latest Android API level 34, which will be required by Google for all new apps and app updates starting in August 2024. +To retain backwards compatibility in this minor release, the feature will be opt-in until the release of Titanium SDK 13.0.0, where it will become the new default value. + +To opt-in for API level 34, add the following to your tiapp.xml: +```xml + + + + + +``` + +For a more detailed overview and all changes, see the release notes: [Titanium SDK 12.4.0.GA Release Note](https://titaniumsdk.com/guide/Titanium_SDK/Titanium_SDK_Release_Notes/Titanium_SDK_Release_Notes_12.x/Titanium_SDK_12.4.0.GA_Release_Note.html). + +## Install + +**Follow these steps to get SDK 12.4.0.GA**: + +1. Install the CLI with `[sudo] npm i -g titanium alloy` +2. Run `titanium sdk install 12.4.0.GA` +3. Set `12.4.0.GA` in your `tiapp.xml` + +## Report Bugs + +If you run into any issues that seem related to the update, please report them on [GitHub](https://github.com/tidev/titanium-sdk/issues). + +## How can I support? + +If you like our work and want to support, think about a [donation](/donate) or to [contribute](/contribute) with your time and code. From f9b9a5abe1980a5f4a51351252a9428482129737 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Wed, 17 Jul 2024 14:07:05 -0500 Subject: [PATCH 2/3] Update posts/2024/sdk_12_4_0_ga.md Co-authored-by: Michael Gangolf --- posts/2024/sdk_12_4_0_ga.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024/sdk_12_4_0_ga.md b/posts/2024/sdk_12_4_0_ga.md index 8b6991c..7934792 100644 --- a/posts/2024/sdk_12_4_0_ga.md +++ b/posts/2024/sdk_12_4_0_ga.md @@ -11,7 +11,7 @@ image: https://tidev.io/images/titanium-general.png The next version of the Titanium SDK is now is available: 12.4.0.GA. Titanium SDK 12.4.0 is a minor release of the SDK, adding new features and platform updates. -This update is focussed on supporting the latest Android API level 34, which will be required by Google for all new apps and app updates starting in August 2024. +This update is focused on supporting the latest Android API level 34, which will be required by Google for all new apps and app updates starting in August 2024. To retain backwards compatibility in this minor release, the feature will be opt-in until the release of Titanium SDK 13.0.0, where it will become the new default value. To opt-in for API level 34, add the following to your tiapp.xml: From af262e0270fd179076b53001eb1d9d9eb9495c39 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Wed, 17 Jul 2024 14:07:17 -0500 Subject: [PATCH 3/3] Update posts/2024/sdk_12_4_0_ga.md Co-authored-by: Michael Gangolf --- posts/2024/sdk_12_4_0_ga.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/posts/2024/sdk_12_4_0_ga.md b/posts/2024/sdk_12_4_0_ga.md index 7934792..eda1cee 100644 --- a/posts/2024/sdk_12_4_0_ga.md +++ b/posts/2024/sdk_12_4_0_ga.md @@ -22,7 +22,22 @@ To opt-in for API level 34, add the following to your tiapp.xml: ``` - +## Features + +Besides the Android API level 34 update we have some other highlights in this release: + +* Android/iOS: Swipe actions support for Ti.UI.TableView ([demo video](https://github.com/tidev/titanium-sdk/pull/14065)) +* Android: new moveToBackground() method to move the whole app to the background +* Android: option to hide scrollbars in a WebView +* Android: missing Event.remove() method was added +* Android: parity for OptionBar color properties
+* Android: change track colors in a Ti.UI.Switch
+* Android: text alignment for date pickers
+* Android: change video playback speed +* Android: defaultLang option in tiapp.xml (in case you run an app that doesn't have EN as the first language) +* iOS: iOS 17 symbol effects ([demo video](https://github.com/tidev/titanium-sdk/pull/13982)) +* iOS: change the backgroundColor of a RefreshControl
+* iOS: use overrideUserInterfaceStyle for a Picker For a more detailed overview and all changes, see the release notes: [Titanium SDK 12.4.0.GA Release Note](https://titaniumsdk.com/guide/Titanium_SDK/Titanium_SDK_Release_Notes/Titanium_SDK_Release_Notes_12.x/Titanium_SDK_12.4.0.GA_Release_Note.html). ## Install