From fc834decb75fd3cb2d8694ecdcd663b0e0b37021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Thu, 12 Dec 2024 15:15:43 +0100 Subject: [PATCH 1/3] docs: add 12.6.0.GA blog post --- posts/2024/sdk_12_6_0_ga.md | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 posts/2024/sdk_12_6_0_ga.md diff --git a/posts/2024/sdk_12_6_0_ga.md b/posts/2024/sdk_12_6_0_ga.md new file mode 100644 index 0000000..dcf04d2 --- /dev/null +++ b/posts/2024/sdk_12_6_0_ga.md @@ -0,0 +1,42 @@ +--- +title: 'Titanium SDK 12.6.0.GA released' +date: '2024-12-12' +category: 'Release' +author: 'Hans Knöchel' +teaser: 'Gradle 8 Support' +image: https://tidev.io/images/titanium-general.png +--- + +![Titanium SDK 12.6.0.GA](/images/titanium-general.png) + +The next version of the Titanium SDK is now is available: 12.6.0.GA. Titanium SDK 12.6.0 is a minor +release of the SDK, adding new features and addressing potential bugs from previous releases. + +This release adds stable support for Gradle 8, allowing to build even more modern apps using APIs like Material 3 +(aka Material You). In addition, it includes some performance improvements for list views and other features like +native support for iOS 18+ dark mode app icons. Finally, we have added several new Ti.Calendar APIs to optimize +creating and deleting calendar events with up to 150x (!) the speed compared to before.ql + +**Important**: If you are using Android modules that were built with 12.6.0 or later in a project with a Titanium version prior to 12.6.0, you will see the following error: +``` +Unsupported class file major version 61as the module was build with JAVA_17 and the app is trying to build with JAVA_11 +``` +To resolve this error, simply use 12.6.0+ or recompile it with a lower Titanium SDK version. + +For a more detailed overview and all changes, see the release notes: [Titanium SDK 12.6.0.GA Release Note](https://titaniumsdk.com/guide/Titanium_SDK/Titanium_SDK_Release_Notes/Titanium_SDK_Release_Notes_12.x/Titanium_SDK_12.6.0.GA_Release_Note.html). + +## Install + +**Follow these steps to get SDK 12.6.0.GA:** + +1. Install the CLI with `[sudo] npm i -g titanium alloy` +2. Run `titanium sdk install 12.6.0.GA` +3. Set `12.6.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 d2b112e5317fb72c0a9a589ec398904f5258878c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Thu, 12 Dec 2024 16:25:15 +0100 Subject: [PATCH 2/3] fix: fix typo Co-authored-by: Chris Barber --- posts/2024/sdk_12_6_0_ga.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024/sdk_12_6_0_ga.md b/posts/2024/sdk_12_6_0_ga.md index dcf04d2..6a4db8b 100644 --- a/posts/2024/sdk_12_6_0_ga.md +++ b/posts/2024/sdk_12_6_0_ga.md @@ -15,7 +15,7 @@ release of the SDK, adding new features and addressing potential bugs from previ This release adds stable support for Gradle 8, allowing to build even more modern apps using APIs like Material 3 (aka Material You). In addition, it includes some performance improvements for list views and other features like native support for iOS 18+ dark mode app icons. Finally, we have added several new Ti.Calendar APIs to optimize -creating and deleting calendar events with up to 150x (!) the speed compared to before.ql +creating and deleting calendar events with up to 150x (!) the speed compared to before. **Important**: If you are using Android modules that were built with 12.6.0 or later in a project with a Titanium version prior to 12.6.0, you will see the following error: ``` From 070d4df866853d89db72ebcba7ea4cc722126547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Kn=C3=B6chel?= Date: Thu, 12 Dec 2024 16:25:30 +0100 Subject: [PATCH 3/3] fix: fix typo Co-authored-by: Chris Barber --- posts/2024/sdk_12_6_0_ga.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024/sdk_12_6_0_ga.md b/posts/2024/sdk_12_6_0_ga.md index 6a4db8b..f526e57 100644 --- a/posts/2024/sdk_12_6_0_ga.md +++ b/posts/2024/sdk_12_6_0_ga.md @@ -19,7 +19,7 @@ creating and deleting calendar events with up to 150x (!) the speed compared to **Important**: If you are using Android modules that were built with 12.6.0 or later in a project with a Titanium version prior to 12.6.0, you will see the following error: ``` -Unsupported class file major version 61as the module was build with JAVA_17 and the app is trying to build with JAVA_11 +Unsupported class file major version 61 as the module was build with JAVA_17 and the app is trying to build with JAVA_11 ``` To resolve this error, simply use 12.6.0+ or recompile it with a lower Titanium SDK version.