v7.0.0
Search
K
Comment on page

TotalCross Changelog

All notable changes to this project will be documented in this file.

6.1.0 - July 2020

Welcome to the July 2020 release (version 6.1.0). We hope you enjoy the updates in this version. The key highlights are:
  • Maven plugin new version: your pom.xml file should change;
  • KnowCode Compatibility - It is now possible to run Android XMLs Layouts on Linux Arm;
  • Virtual Keyboard - New look and animations;
  • Using external applications - Through the runtime.exec method;
  • Anonymous user statistics - There is now an option to contribute by sending anonymous data;
  • Changing the SDL implementation - Removing the SDL code from within the TotalCross SDK and changing the static to dynamic link.
Join our community on the telegram to suggest activities and learn about development for embedded systems.

Maven plugin new version

After the latest Language Support for Java extension updates, some systems had compatibility issues with Java 11. We launched a new version of the TotalCross maven plugin to solve them, the 1.1.6. You must change the following line:
...
<plugin>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-maven-plugin</artifactId>
<!-- This line: -->
<version>1.1.6</version>
<configuration>
<name>${project.name}</name>
<platforms>
...

KnowCode compatibility

In this version, a name tag was added to ContentHandler (Pull request #20), making it possible for KnowCode, a tool that uses a neural network, to convert interface images to XML and TotalCross, allowing it to run on Linux Arm with the same performance as an application built directly with the TotalCross SDK
Home appliance application built with Android XML using KnowCode
Find out how to use KnowCode by clicking here.

Virtual Keyboard

In this milestone some improvements were implemented in the keyboard, which are:
  • In Linux Arm the virtual keyboard is enabled by default. To disable it just put Settings.virtualKeyboard = false in your MainWindowclass;
  • In order to improve performance and make the design cleaner, the ripple effect animation on the keyboard buttons was removed;
  • In order to obtain more effective responsiveness, the calculations of width and height were changed, leaving it less dependent on absolute values;
  • To make the interface richer, sliding animation was added to the popup and unpopup of the virtual keyboard. You can see these changes in detail in pull requests #40 and #65.
In the images below you can see the visual difference:

Before:

Virtual Keyboard on TCSDK 6.0.3 in Expanding Raspberry Pi Ports sample

After:

Virtual Keyboard on TCSDK 6.1.0 in Expanding Raspberry Pi Ports sample

External applications

To allow the use of external libraries in the simplest way possible is one of TotalCross goals. There is a branch in our repository called tcni which (still a Proof Of Concept) allows the use of these external libraries
TCNI is a foreign function interface programming framework that enables TotalCross/Java code running in a Java virtual machine to call and be called by native applications and libraries written in other languages ​​such as C, C ++ and assembly.
But while TCNI is not ready to be launched, we have developed a middle ground that allows the use of external applications in TotalCross, through the method runtime.exec(). This method creates a new process and executes the command you passed in this new process (Pull request #21).
For example, create a python script to access a temperature sensor and with the runtime.exec() get the return of it, as you can see in this example:
To better understand how it works using a sample application click here.

Anonymous user statistics:

When TotalCross decided to become a free and open source tool, the decision was made to no longer require an activation key from the user, which was previously necessary to differentiate free users from customers. As this removal would imply resolving a series of errors and making many changes, the team decided to generate an eternal and unlimited key and use it as a default, provisionally, until we resolve some pending issues and can go back to this point and withdraw it for good.
So in 6.1.0 we went back to that and removed the activation key, including the class register.java, as you can see in detail in pull request #53
And to better track which users' preferences when using the TotalCross SDK, we set up the SDK to ask if the developer wants to contribute anonymous data and if the answer is positive, we record parameters for Deploy, timezone, launchers, operating system version and version of TotalCross used.
You can see the details of the implementation in Pull Request #66.

Change in SDL implementation

We chose to remove SDL code from the SDK TotalCross in this version to improve the build organization and allow people to customize the build of their facilities according to their hardware.
In addition, we changed the SDL link from static to dynamic because:
  • Allows the distribution to have corrections and be used without having to compile the TC again but the guy needs to install the SDL before TotalCross
  • Avoids License compliance problems as FOSSA warns about the SDL license (GPLv3)
For details, see pull requests #23, #24, and #68.

Other changes:

6.0.4 - March 2020

Notes

General

  • Disabled screen shifting on Android and iOS (when clicking on edit the keyboard would appear over edit);
  • Added tag name to XML's ContentHandler.

Arm

  • SDL statically linked SDL dynamically linked for Linux x86-64;
  • Fix Linux x86 and 64 launcher (x-sharedlib to x-executable).

Android

  • Added Skia for Android so now is supported truetype fonts
  • Fixed Android buildType

iOS

  • Added iOS files on public repository;
  • Support to Metal on iOS;

Linux

  • Fixed SQLite on Linux Desktop.

Windows

  • There were no changes

WinCE

  • There were no changes

Build Information

  • Fixed SDK and VM build for all available platform on public repository:
    • WinCE;
    • Windows;
    • Android;
    • Linux;
    • Linux arm x86;
    • Linux arm x64;
  • Added build.xml for Ant build (without ProGuard);
  • Added documentation about how to build SDK and VM.

Community

  • TotalCross is under the LGPL v2.1;
  • Removed the mirror from GitLab to GitHub: GitHub is officially the main repository;
  • New TotalCross-Toradex Image added on GitHub.

5.1.4 to 6.0.3

The remaining changelogs will be added later

5.1.3 - 2019-08-28

Fixed

  • Edit
    • Fixed bug with masks containing two consecutive non-alphanumeric characters - TotalCross#581
    • When used for dates, the calendar now properly opens at the date informed on the edit - TotalCross#550
    • Fixed getCopy() to properly function when the Edit uses the field decimalPlaces - TotalCross#505
  • Spinner: fixed Spinner animation repainting over previous frames - TotalCross#568
  • OutlinedEdit: fixed NPE when using the cancel button on CalendarBox - TotalCross#547
  • PopupMenu: fixed performance issues with Material style caused by onPaint recreating the ninepatch on every refresh. This change also affects the performance of other components that may use PopupMenu, such as ComboBox.

5.1.2 - 2019-08-05

Highlights

  • Added support for generating QR codes natively on the device - #540
This feature is available on all supported devices, but not on the simulator yet. Refer to the documentation for more information and sample usage

Fixed

  • Camera: Fixed CAMERA_NATIVE_NOCOPY - #554
  • Fixed support to listening events on Android hardware buttons, broken on version 5.1.0 - #557, #559, #560
  • ComboBox: Fixed support for option usePopMenu

5.1.1 - 2019-07-16

Fixed

  • Fixed push and local notifications for Android 8+ - #316

5.1.0 - 2019-07-04

Highlights

  • YouTube Player: New API for displaying YouTube videos on Android and iOS
  • Added support for text prediction when using native keyboard on Android and iOS

Fixed

  • ListContainer: Fixed Check on ListContainer - TotalCross #393
  • InputBox: Removed dummy mask that caused trouble when using setMode - TotalCross #506
  • Toast: Fixed using '\n' on the String used on Toast.show - TotalCross #498
  • Button: Fixed using an image and no text position - TotalCross #527
  • Edit: Fixed base line not showing when running on devices with DP smaller than 1, such as most WinCE devices - TotalCross #389
  • PopupMenu: Fixed the Android UI style - TotalCross #369

Changed

  • TabbedContainer: Improved graphical performance and responsiveness

Added

  • MultiEdit: Added fields to set the text gap - TotalCross#489
  • Button: Added constant CENTRALIZE to centralize image and text buttons - TotalCross#498
  • Settings: Added field allowBackup, which may be used to disable Android's automate cloud backup - TotalCross#548

5.0.1 - 2019-05-07

Added

  • Added support for printing on Cielo Lio devices with embedded printer. Refer to the class totalcross.cielo.sdk.printer.PrinterManager for usage information.

Fixed

  • Grid: fixed column width sizing - #480
  • Button: fixed position of contents based on the gap value - #487
  • CalendarBox: fixed calculation of font size - #397
  • VirtualKeyboard: fixed Clear button and text input look - #397
  • Socket: fixed support for open timeout on iOS - #128

5.0.0 - 2019-04-15

Highlights

  • TotalCross is now aware of the device's screen pixel density and uses this information to scale UI elements uniformly on different platforms.
  • The font size is now expressed in scaleable pixels (sp) and will now scale uniformly on different screens. The font size should now be expressed as a constant value or based on Settings.deviceFontHeight, but never based on the screen's resolution or target platform.
Existing applications may require adjustments to their font sizes!
  • Improved overrall UI responsiveness and reduced application start time on Android
  • Several Vm.sleep calls in the vm had their time reduced by 50% or more, some calls were replaced with Thread.yield()
  • On Android and Java, reduced overhead in the event thread to improve UI responsiveness
Screen density support
All graphical components can now be scaled to have approximately the same physical height on any screen resolution.
Density by OS
  • Android and iOS: these devices expose a manufacturer-provided screen density value. On TotalCross 5 applications, this value is retrieved by default and used to ensure consistent component sizes across devices
  • Java: based on scale, e.g. /scale 0.5 = density 2.0, you can try different densities on the emulator by changing the scale command line argument
  • Win32 and WinCE: Most Windows devices do not natively expose screen density information and, thus, are kept at density 1.0. To improve the look and feel on smaller screens, we use a density of 0.75 on screens with width or height less than 320
  • Other platforms: nothing changed (= density 1.0)
Font
The font size is now expressed in scalable pixels (sp), this abstracts away the actual physical dimension (screen pixels) of the font. This way, their actual physical size is calculated based on the screen density. e.g: A font with size of 20sp with different screen resolutions:
  • Density 1.0: actual size 20 pixels
  • Density 1.5: actual size 30 pixels
  • Density 2.0: actual size 40 pixels
  • Density 0.75: actual size 15 pixels This change shall render TotalCross apps ready for different screen sizes with minimal implementation effort.
Updating for 5.0
Using Font.getDefaultFontSize is no longer necessary, you may now use constant values and the font size will be adjusted accordingly. Applications that tried to “guess” the appropriate font size based on screen resolution may need adjustments. Applications that used Settings.uiAdjustmentsBasedOnFontHeight should have their graphical components resized more uniformly across different platforms and screen densities.
Density Independent Pixels
Controls may now have their dimensions expressed in density independent pixels units (dp), which are scaled for the screen based on its pixel density. e.g:
// adds Button with height of 20dp
add(new Button("Ok"), RIGHT, BOTTOM, PREFERRED, DP + 20);
This is now the preferred way of setting the control’s dimensions.
Improved support for animations
We now provide a central update event that controls can register for. This event fires periodically and is meant to be used to drive all animations in the framework. In comparison to using timer events for animations, this approach uses less CPU and memory, and behaves better under high CPU usage scenarios.
Updating for 5.0
Several classes were updated to use the new update events and the effect on them should be noticeable without any changes. In special, we would like to highlight the ScrollContainer and the ControlAnimation components. Users are encouraged to replace similar uses of threads, sleeps and timer events with update events.
Smoother scrolling
The ScrollContainer and the Flick components were updated to provide smoother and more precise scrolling. The changes include the usage of quadratic easing animation and exponential decay. The Flick also factors in the screen’s pixel density and offers the user the option of tuning the flick acceleration. Lastly, Flick also supports consecutive drags to increase the scrolling speed.
Updating for 5.0
Most of the changes made are transparent to the user, but there were some breaking changes on Flick. User may have to remove the usage of fields that are no longer available.
Icon control
With the new Icon control it’s easier to add beautiful and meaningful icons to your application.
This is now the preferred way of adding icons to your application and should be favored over image files. One major reason to favor icon font sets over images is that they are highly scalable and will look sharp in any resolution while using only a fraction of the system resources an image would use. Material Icons are already bundled with the sdk and the IconType interface may be used to implement more font sets.
Alpha support for Labels and Icons
It’s now possible to change the opacity of text and icons within Label or Icon controls. This is a key feature to design beautiful applications, as it allows text to remain legible over any background color. Transparent status bar
Currently only supported on Android, but iOS support will be ready soon.
Navigation Drawer
All the previously listed changes were put in use to futher develop the SideMenuContainer, complying with the Navigation Drawer pattern defined by the Material Design guidelines (https://material.io/guidelines/patterns/navigation-drawer.html):
  • Action bar height is now 20 dp
  • Bar title and menu items using the Roboto Medium font (when available)
  • Labels and icons now use the correct font size, weight and opacity
  • Keylines and margins are respected both inside and outside the side menu (with a special exception for really small screens)
  • Smooth slide-in and out effects, with fade effect during slide removed
  • Resting elevation over the content
  • Swipe to open support is still in its early stages, but should be functional for most applications
  • Adjusts automatically when used with transparent status bar

Added

  • SideMenuContainer.Sub, a collapsible submenu for the navigation drawer
  • MaterialWindow, a popup window that slides from the bottom to the top of the screen

Changed

  • Camera: On Android, choosing an image from the Gallery no longer creates a copy of it when not necessary (images from a cloud service still require a local copy) - #400
  • Java
    • ByteArrayOutputStream: added several missing methods - #478
    • System: added method arraycopy
    • Charset: method forName now correctly validates the given charset name and may throw IllegalCharsetNameException
    • String: added constructor String(byte[] value, int offset, int count, String encoding) to allow the creation of strings with a given supported enconding

Deprecated

  • Settings: deprecated field WINDOWSPHONE, which will be removed in a future release.

4.4.0 - 2019-08-14

Fixed

  • Android: removed compile flag that caused applications to be unbearably slow in old or low-end devices - TotalCross#561, TotalCross#580
  • tccodesign script: fixed script not copying pkg files - TotalCross#572
  • Camera: partially reverted changes introduced in version 4.3.3 that caused problems on some devices - TotalCross#574
  • Grid: fixed column width sizing - TotalCross#480

4.3.9 - 2019-08-05

Fixed

  • tccodesign script: fixed support for push notification

Added

  • Added classes AsyncTask and ThreadPool to improve concurrency support, refer to the documentation and the PlayBook for more information and samples

4.3.8 - 2019-05-31

Highlights

  • Added support for Android 64 bits - TotalCross#515

Fixed

  • Fixed bug with large CRC or size values overflowing 32 bit integer - TotalCross#529

Changed

  • tccodesign script
    • Added --output parameter
    • Removed lined that deletes UIStoryLaunch
    • Fixed icon problem
    • Changed to use a temporary folder during the process

4.3.7 - 2019-05-06

Added

  • Added support for native barcode scanning on iOS, without using any external library - #333

4.3.6 - 2019-04-13

Highlights

  • Dropped support for Windows Phone 8

Changed

  • HttpStream: Reverts change "Query parameters are now encoded to support the usage of unsafe characters" introduced in 4.3.1 - #482, #483

4.3.5 - 2019-04-01

Fixed

  • Deploy: Fixed bug that would cause a method signature to be included in the constant pool as a class - #139, #468

4.3.4 - 2019-03-20

Fixed

  • Android
    • Reverted back the change reverted on last release and finally fixed the bug that was causing the assets to touble in size - #358
  • HttpStream: Fixed read operation not retuning EOF when the correct content length is provided on the reply - #464

4.3.3 - 2019-03-14

  • Changed generation of the TotalCross SDK jar:
    • Annotations @Deprecated and @ReplacedByNativeOnDeploy are no longer stripped by ProGuard - #411
    • Argument names are no longer obfuscated
    • The javadoc jar is now being deployed to our Maven repository - #391

Fixed

  • Android
    • Fixed deploy not being able to sign the apk when TOTALCROSS3_HOME is set with a relative path - #275
    • Reverts change on deploy that seems to be causing the assets to double the size in the apk
    • Fixed Camera NATIVE support
  • iOS
    • Fixed screen resolution for newer models such as iPhone XS - #308

4.3.2 - 2019-01-31

Fixed

  • iOS
    • Usage of "hide keyboard" button on the keyboard - #347

4.3.1 - 2019-01-14

Fixed

  • URI: Fixed parse of multibyte characters
  • Camera: Fixed regression in release 4.2.2 - #346
  • ArcChart: Fixed coloring of chart when a single series represents 100% of the data - #350

Changed

  • HttpStream: Query parameters are now encoded to support the usage of unsafe characters

Known issues

  • iOS
    • Using the "hide keyboard" button on the keyboard makes it unavailable for the application - #347

4.3.0 - 2019-01-04

Highlights

  • Added implementation of PBKDF2WithHmacSHA1
  • Removed SMS permissions from Android manifest when using the default deploy options, and added the new option /include_sms to deploy including them

Fixed

  • iOS
    • Fixed screen dimensions on IPhone XS
  • Resign script tccodesign:
    • Fixed issue with provided mobileprovision not being added to the Xcode mobileprovisions folder
    • Temp files are now removed before the script execution
    • Fixed issue with certificate name in the following format: iPhone Distribution|Developer: Provided Name (Team ID)
  • ImageList: Fixed bug introduced in version 4.2.0 with the correcion of issue #192 - #291
  • DiscoveryAgend: Fixed potential leaks when using service discovery on WinCE
  • Grid: Fixed sorting different types of data in Grid - #297

Changed

  • Removed SMS permissions from Android manifest when using the default deploy options, and added the new option /include_sms to deploy including them

Added

  • Added implementation of PBKDF2WithHmacSHA1

Known issues

  • Local notifications do not work on Android 8+. This is caused by a change in the security requirements of the Android native notification API that was not listed in the platform's release changelog. This issue will be fixed on the next release of TotalCross 5, but a fix for version 4 won't be issued to maintain our current compatibility with older Android devices.

4.2.7 - 2018-12-06

Fixed

  • Camera: Added request for external storage permission - #304
  • JSONFactory
    • Fixed processing of arrays in complex objects and added support for non-static inner classes - #326
    • Fixes bug on json parsing caused by usage of a regex expression

4.2.6 - 2018-12-03

Fixed

  • Vm.exec: Added permission REQUEST_INSTALL_PACKAGES to allow the application to install an apk on Android 8+
  • TreeMap: Fixed import of java.lang.Comparable

Changes

  • Scanner: Added camera permission request on Android (ZXing/Scandit)

4.2.5 - 2018-11-29

Fixed

  • Fixed location permission request

Changes

  • Camera: Removed picture rotation detection on Android - it was source of intermittent bugs on some Samsung and Motorola devices

4.2.4 - 2018-11-26

Fixed

  • Fixed permission requests for File constructor, delete and getSize on Android 6+ - #317
  • Fixed permission request for Camera on Android 6+
  • Fixed Vm.exec on Android: intents were not being able to pass external files to other applications - #69, #320, #232 fixes

Changes

  • GPS permission is no longer requested when the application is launched, instead the permission is automatically requested when required by the application

4.2.3 - 2018-11-07

Fixed

  • Fixed regression with the Android deploy that would produce an apk not acceptable by the Play Store
  • Radio
    • Fixed autoSplit when the control width is set to PREFERRED

4.2.2 - 2018-10-30

Fixed

  • Camera
    • Fixed CAMERA_CUSTOM not taking pictures when the device is held on vertical position, this affected a few models, most notably Samsung tablets - #233

Changes

  • Container
    • Method getChildren changed to return an empty array instead of null when the container has no children.

4.2.1 - 2018-10-19

Fixed

  • Notification
    • Fixed notification crashing on Android - #255
    • Clicking on a notification will no longer start a new instance of the application if there's already one running on background
  • PushButtonGroup
    • Fixed regression on PushButtonGroup that made them unclickable on Win32, affecting all dialogs - #263

Changes

  • Added a new virtual keyboard that looks more closely to the Android native keyboard and is now the default for Edit and MultiEdit.
  • HttpStream: Added support for http methods PUT, PATCH and DELETE in class HttpStream - #240

4.2.0 - 2018-10-01

Highlights

  • Android
    • Android package is now built with SDK 27 (previous releases were built with SDK 22) and the latest NDK r17b (up from NDK r8b!) - The minimum SDK level required to run TotalCross applications remains unchanged (SDK 10)
    • Applied the Android recommended changes to better handle activities and contexts to prevent possible resource
    • TotalCross now asks for the user permission to access phone state and location on startup
🚧 On Android, features that require user permission during runtime may not be working. Please report if you have any trouble with permissions.
  • iOS
    • iOS package is now built with SDK 12
    • Added permission request to use the camera
  • General
    • Improved some Color methods to produce better results by properly weighting the RGB components according to our perception of color brightness
    • Added support for local notifications on JDK, Android and iOS.
    • EscPosPrintStream - New API to handle ESC/POS printer commands
    • Added support for fast IDCT scaling on jpeg images. Combined with the usage of the new utility classes to manage scaling jpeg images, this can greatly reduce the memory footprint of jpeg images and improve graphical performance.
Using this approach to handle images of approximately 800x800 on medium sized devices can reduce memory consumption by up to 80% while doubling the image loading speed!

Fixed

  • Fixed bug during activation with some JDK versions - a FileNotFoundException could be thrown when trying to recursively create directories for a new file
  • Deploy
    • Will now correctly package tcz dependencies that were split over multiple files - #214
    • Added protection for unlikely (but possible) NPE
    • Fixed deploy with Java 10, dependencies are now listed in the jar's Manifest
    • Fixed NPE when deploying for Win32 without initializing Launcher.instance - #165
    • Fixed rare (but possible) NPE during deploy
    • Fix path for Win32 dll, case sensitive systems expect binaries on lowercased folders - #274
  • Scanner
    • Fixed barcode scanning on Dolphin/Honeywell devices - value of barcode's check digit was being carried over to the calculation of the check digit on the next reading - #228
  • ComboBox
    • Fixed vertical alignment of text - #192
  • ImageControl
    • Removed duplicated field effect
    • Fixed detection of press events
  • Toast
    • Fixed Toast appearing relative to the topMost window, when it should always be relative to the MainWindow
  • MultiButton
    • Fixed graphical bug - a transparent ComboBox arrow was being drawn on the background of the MultiButton (!)
  • PushButtonGroup
    • Fixed drag event to allow "giving up" on a press event by dragging outside the button bounds after a press
  • MultiEdit
    • Fixed text being hidden with Material style
    • Fixed bug that made every even character to disappear when you typed and reappear when you typed the next one
  • AccordionContainer
    • Fixed arrows not changing state when switching focus between multiple collapsible panes
  • CalculatorBox
    • Fixed enconding error with plus-minus sign - #206
  • Grid
    • Fixed column width wrong resize when dragging edge to before column start - #186
  • JSONFactory
    • Fixed recursive creation of complex objects
    • Improved JSON parser to map methods camel cased to underscored fields in the JSON object

Changes

  • Updated version of the Bouncy Castle dependency
  • On Java, Settings.appPath is now initialized even if the Launcher isn't executed - #165
  • Launcher
    • The Launcher (simulator) can no longer be used without an activation key
  • Deploy
    • Check paths from pkg file and throw more meaningful error message when a path is invalid
    • Print Deploy exceptions on System.err instead of System.out and using the default stack trace output
  • Whiteboard
    • No longer recreates the content image when repositioned - #187, #196
  • ListBox
    • Deprecated method add(Object[] moreItems, int startAt, int size) as it was redundant and more confusing than helpful
  • ComboBox
    • Deprecated method add(Object[] moreItems, int startAt, int size) as it was redundant and more confusing than helpful
  • Radio
    • Added feature autosplit - #180

Added

  • EscPosPrintStream - New API which supports several ESC/POS printer commands - refer to the class documentation and samples for more information
  • Notification and NotificatonManager - Allows the creation and presentation of local notifications to the user, currently implemented for Android, iOS and Java.
  • ImageLoader - New class to help managing image resources, especially jpeg images. Currently no caching is done by the class.
  • Image
    • Added static methods Image.getJpegScaled and Image.getJpegBestFit to load jpeg files using fast IDCT scale, more about this here
  • Java
    • Added classes ByteArrayOutputStream and UncheckedIOException
    • Added classes Charset and UnsupportedCharsetException, added also String.getBytes(Charset)
  • Added Cp437CharacterConverter, which supports encoding and decoding characters using the CP-437 charset (also known as IBM437, windows-437, among others). Especifically added to be used with EscPosPrintStream to properly support writing text to Leopardo A7.
  • Convert
    • Added method charsetForName(String name), which returns one of the registered charsets available
    • Added method registerCharacterConverter(AbstractCharacterConverter characterConverter), which allows users to create and registers their own subclass of AbstractCharacterConverter to support custom encodings
    • Added several aliases to the existing ISO-8859-1 and UTF-8 CharacterConverter classes and changed setDefaultConverter to be case insensitive and support any of listed aliases.
The existing CharacterConverter class and subclasses were changed to extend AbstractCharacterConverter, which extends Charset. The actual support to Java Charset is almost none, the main goal is to allow the usage String.getBytes(Charset) with the existing CharacterConverter and let users encode strings with different charsets without changing the charset used by the rest of the application through Convert.setDefaultConverter.

Deprecated

  • ListBox
    • Deprecated method add(Object[] moreItems, int startAt, int size) as it was redundant and more confusing than helpful
  • ComboBox
    • Deprecated method add(Object[] moreItems, int startAt, int size) as it was redundant and more confusing than helpful

Known issues

  • iOS
    • Applications signed for enterprise distribution cannot run on iOS 12 - apparently it fails to validate the certification chain that validates the signed application. It's not clear yet if this was an intended change or a bug, but there's no word from Apple about it yet.
    • Applications signed for distribution through the AppStore cannot be uploaded because of changes on the way image resources are handled starting from iOS 11. We are working on a definite fix for this, in the mean time feel free to contact us to manually package the application for the AppStore.
  • Notification
    • Android lacks support for custom images for notifications, only the default TotalCross logo is supported
    • Notification crashing application on Android - #255
  • PushButtonGroup
    • The fix for the drag event caused PushButtonGroup to be unclickable on Win32, affecting all dialogs - #263

4.1.4 - 2018-05-17

Highlights

  • TotalCross is now built with the iOS 11 SDK, as a side effect the minimum iOS version supported by TotalCross is now 8.0 (up from 5.1.1). Applications published on the Apple Store must be updated.

4.1.3 - 2018-04-12

Fixed

  • Fixed Edit's material caption animation when navigating using the keyboard
  • Fixed WrapInputStream.read() - the value returned is now between the range 0-255, as specified by the InpuStream.read() documentation. The class WrapInputStream is used by Stream.asInputStream()
  • Fixed MaterialEffect to stop discarding PEN_UP events sent to the target Control after the effect is removed from the target Control
  • Implemented ConnectionManager.getLocalHost() for iOS
  • On iOS, fixed keyboard being closed when navigating to the next text input control using the "Done" button
  • Fixed SideMenuContainer - the sidemenu is no longer draggable
  • Fixed retrieval of the device's current time on newer Android devices (and possibly other POSIX compliant platforms) - #147
  • Fixed BarButton only firing a pressed event targeting itself when Material UI style is used - #176
  • Fixed redraw after the device is unlocked on Moto G5 Plus - #173
  • Fixed javadocs not being included with the SDK

Changes

  • Usage of Vm.sleep(1) in the SDK replaced with Thread.yield() for clarity sake
  • Changes LineReader to use Thread.yield() between read attempts instead of stoping the Vm for 100 ms
  • Spinner's implementation changed to use TimerEvent instead of threads perform the animation
  • Edit's material caption animation is faster and will no longer get mixed with the blinking cursor
  • WrapInputStream.read(B[], I, I) no longer rethrows totalcross.io.IOException as java.io.IOException
  • WrapOutputStream.write(B[], I, I) no longer rethrows totalcross.io.IOException as java.io.IOException
  • WrapInputStream.close() will now properly close the underlying stream
  • WrapOutputStream.close() will now properly close the underlying stream
  • Changed the way we obtain the current device orientation and screen dimensions on Android, the previous implementations were deprecated

4.1.2 - 2018-02-20

Fixed

  • Fixed support for WinCE based scanners that use OpticonH16.dll

Added