From 0eb38c0cd40781b69a504075fed0ac2a224f9d93 Mon Sep 17 00:00:00 2001 From: "Allan C. M. Lira" Date: Mon, 18 Jan 2021 12:10:49 -0300 Subject: [PATCH] bumps: version 7.0.0 Upgrade changelog and SDK tag to version 7.0.0 --- CHANGELOG.md | 65 +++++++++++++++++++ TotalCrossSDK/build.gradle | 2 +- .../main/java/totalcross/sys/Settings.java | 4 +- 3 files changed, 68 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e07f12dd8..3df9de0822 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,71 @@ # TotalCross Change Log All notable changes to this project will be documented in this file. +## 7.0.0 - January 2021 + +Welcome to 2021, and our first **stable release**! Let's get straight to the objectives: + +- **Huge bug fixes** - Many long-standing bugs have been resolved; +- **arm64 distribution** - Now deploy TotalCross applications for linux arm64 is much easier; +- **Skia update** - A new room for improvements. + +Join our [community on the telegram](https://t.me/totalcrosscommunity) to give feedback about this release! + +### Huge bug fixes + +Our main goal with this version is to keep it as stable as possible. We need a solid foundation for the future of the tool. With that we focus on correcting new and old problems that accompanied us in version 6. The main bugs resolved and that are very important for totalcross stackholders are: + +- `VirtualKeyboard` issues: this component widely used for embedded devices has some bugs that hinder the execution of applications; +- Android black screen: now everything works correctly when running the .apk for the first time; +- Build issues: we updated the versions of Android API, Android NDK and Gradle. Fixed bugs related to the build for legacy systems (GLIBC issue). Changes were made to implement CICD with Github Actions. + +You can see the full list of issues resolved at the end of the note. + +### arm64 distribution + +As a cross-platform tool we need to pay attention in market changes and one of those that has caught our attention is the adoption of arm64 devices. To meet this demand we are launching a new feature: + +> Any package made with the `-linux_arm` flag will **also** result in arm64 artifacts. + +As always just transfer the files to your device! You can customize the build for your distro for now the `TotalCross/totaldocker` repository can help :sweat_smile: + +### Skia update + +Our Skia branch was starting to get outdated, so we upgraded to branch `m87` in some platforms. They are: `linux` (x86_64) and `linux_arm` (32v7). This opened the door to a new room of enhancement that we will work along the 7.x.x lifecycle. Some bugs have already been detected and should appear as minors or patches. In the next versions we will have the new Skia on more platforms. + +### Fixes + +We closed the following issues: + +- #124 +- #140 +- #185 +- #176 +- #180 +- #184 +- #181 +- #193 +- #198 +- #123 +- #179 +- #165 +- #92 +- #190 +- #234 +- #238 +- #236 +- #248 +- #177 +- #235 +- #231 +- #217 +- #189 +- #196 +- #178 + +You can see all of these issues in the repository https://github.com/TotalCross/totalcross/issues. + + ## 6.1.1 - October 2020 Hello! This minor release has as main objective: - **Static SDL2** - Brings it back to work properly on Angstrom for target Linux ARM; diff --git a/TotalCrossSDK/build.gradle b/TotalCrossSDK/build.gradle index 4488886229..0f76028b3f 100644 --- a/TotalCrossSDK/build.gradle +++ b/TotalCrossSDK/build.gradle @@ -14,7 +14,7 @@ apply plugin: 'java' apply plugin: 'maven-publish' sourceCompatibility = 1.8 -version = '6.1.1' +version = '7.0.0' group = 'com.totalcross' archivesBaseName = 'totalcross-sdk' diff --git a/TotalCrossSDK/src/main/java/totalcross/sys/Settings.java b/TotalCrossSDK/src/main/java/totalcross/sys/Settings.java index bf5daa10e4..8a8c460e2c 100644 --- a/TotalCrossSDK/src/main/java/totalcross/sys/Settings.java +++ b/TotalCrossSDK/src/main/java/totalcross/sys/Settings.java @@ -22,10 +22,10 @@ public final class Settings { * base 100. For example, version 1.0 has value 100. version 4 has a * version value of 400. A beta 0.81 VM will have version 81. */ - public static int version = 611; + public static int version = 700; /** Field that represents the version in a string form, like "1.36". Only digits and dot is allowed or an exception will be throws during tc.Deploy. */ - public static String versionStr = "6.1.1"; + public static String versionStr = "7.0.0"; /** Current build number for the TotalCross SDK. * @since TotalCross 1.53