TotalCross Changelog
All notable changes to this project will be documented in this file.
Last updated
Was this helpful?
All notable changes to this project will be documented in this file.
Last updated
Was this helpful?
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 to suggest activities and learn about development for embedded systems.
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:
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 MainWindow
class;
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;
In the images below you can see the visual difference:
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.
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.
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.
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
Disabled screen shifting on Android and iOS (when clicking on edit the keyboard would appear over edit);
Added tag name to XML's ContentHandler.
SDL statically linked SDL dynamically linked for Linux x86-64;
Fix Linux x86 and 64 launcher (x-sharedlib to x-executable).
Added Skia for Android so now is supported truetype fonts
Fixed Android buildType
Added iOS files on public repository;
Support to Metal on iOS;
Fixed SQLite on Linux Desktop.
There were no changes
There were no changes
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);
TotalCross is under the LGPL v2.1;
Removed the mirror from GitLab to GitHub: GitHub is officially the main repository;
The remaining changelogs will be added later
Edit
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.
ComboBox: Fixed support for option usePopMenu
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
TabbedContainer: Improved graphical performance and responsiveness
Added support for printing on Cielo Lio devices with embedded printer. Refer to the class totalcross.cielo.sdk.printer.PrinterManager
for usage information.
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:
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
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
SideMenuContainer.Sub, a collapsible submenu for the navigation drawer
MaterialWindow, a popup window that slides from the bottom to the top of the screen
Java
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
Settings: deprecated field WINDOWSPHONE
, which will be removed in a future release.
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
tccodesign script: fixed support for push notification
tccodesign script
Added --output parameter
Removed lined that deletes UIStoryLaunch
Fixed icon problem
Changed to use a temporary folder during the process
Dropped support for Windows Phone 8
Android
Changed generation of the TotalCross SDK jar:
Argument names are no longer obfuscated
Android
Reverts change on deploy that seems to be causing the assets to double the size in the apk
Fixed Camera NATIVE support
iOS
iOS
URI: Fixed parse of multibyte characters
HttpStream: Query parameters are now encoded to support the usage of unsafe characters
iOS
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
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)
DiscoveryAgend: Fixed potential leaks when using service discovery on WinCE
Removed SMS permissions from Android manifest when using the default deploy options, and added the new option /include_sms to deploy including them
Added implementation of PBKDF2WithHmacSHA1
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.
JSONFactory
Fixes bug on json parsing caused by usage of a regex expression
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
Scanner: Added camera permission request on Android (ZXing/Scandit)
Fixed location permission request
Camera: Removed picture rotation detection on Android - it was source of intermittent bugs on some Samsung and Motorola devices
Fixed permission request for Camera on Android 6+
GPS permission is no longer requested when the application is launched, instead the permission is automatically requested when required by the application
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
Camera
Container
Method getChildren changed to return an empty array instead of null when the container has no children.
Notification
Clicking on a notification will no longer start a new instance of the application if there's already one running on background
PushButtonGroup
Added a new virtual keyboard that looks more closely to the Android native keyboard and is now the default for Edit and MultiEdit.
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 bug during activation with some JDK versions - a FileNotFoundException could be thrown when trying to recursively create directories for a new file
Deploy
Added protection for unlikely (but possible) NPE
Fixed deploy with Java 10, dependencies are now listed in the jar's Manifest
Fixed rare (but possible) NPE during deploy
Scanner
ComboBox
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
Grid
JSONFactory
Fixed recursive creation of complex objects
Improved JSON parser to map methods camel cased to underscored fields in the JSON object
Updated version of the Bouncy Castle dependency
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
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
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
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.
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
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
PushButtonGroup
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.
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 javadocs not being included with the SDK
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
Fixed support for WinCE based scanners that use OpticonH16.dll
Added support for native laser scanning for Android based Symbol/Motorola scanners
Launcher default color depth changed from 16 bpp to 24 bpp
Fixed Switch
disappearing on Android - calculation of alpha channel applied to the switch was wrong
Fixed Socket
and HttpStream
to properly handle EOF during read operation
Fixed screen not being shifted when device is in landscape
Fixed issue where a focused Edit
would not receive keypress events
Fixed bug in Edit
on Android - backspace events would not be issued when the Edit had text but had not received any typing events
Added Edit.canMoveFocus
to disable focus change
Added Stream.write(int)
, convenience method to write a single byte to the stream
Added ScrollContainer.setScrollBars
to allow subclasses to add or remove scrollbars after its creation
Pressing ENTER in a set of Edit
inside a ScrollContainer
will now automatically scroll to the next control
Improved Control.setRect
error messages, it will now throw distinct messages for invalid width or height
Implementation for sending and receiving data SMS also disables changing the state of the receiver when the application is paused and resumed
Font support
Improved FontGenerator to create better looking fonts. Regenerate your fonts to make them look smoother on device.
Spacing between characters was also improved.
Fixed support for some unicode characters and handling of the ranges passed to the command line.
Fixed ScrollContainer
to properly display the controls if the order is changed
Fixed MaterialEffect on a ListBox
that was scrolled up
Fixed Radio not being correctly painted when checked is set to true within the same event that changed it to false
Fixed MaterialEffect
fade out duration - alpha is now computed based on remaining time instead of using a constant decreasing value
Fixed ScrollPosition
's handle not being hidden when released
Fixed Check and Radio sending PRESSED event when setChecked
is called, even when Settings.sendPressEventOnChange
is set to false
Fixed Launcher to better handle missing or bogus font files when running on desktop
On Graphics, fixed NullPointerException
and ArrayIndexOutOfBoundsException
when repaint is called from a thread
Fixed iOS icons by adding method colorDist (int rgb1, int rgb2)
and addFillPoint (int x, int y)
Fixed ImageControl
zooming with poor quality, it was scaling the resized image displayed in the control instead of the original image
Fixed usage of internal scanners on Android devices
Fixed bug where screen was not being shifted when changing focus between Edits using PEN_UP
or ENTER
Fixed NullPointerException
in Graphics.drawText
that would occur under some situations when the UI is loaded from a thread
Fixed Window incorrectly calling onClickedOutside
when a two-finger movement is performed
Fixed MaterialEffect
to not apply effects during a flick
Added Settings.showUIErrors
, which can be set to false to disable UI errors that are shown in desktop only.
Added Flick.dontPropagate
, which can be useful if you have two or more intrinsic ScrollContainers
and dont want to propagate the scroll among them
Added ScrollContainer.canShowScrollBar
s, which gives child classes finer control on whether scrollbars should be displayed or not
Added ComboBox.getArrowColor
and now you can change the arrow color at runtime
Added classes java.awt.Dimension
and its dependencies - java.awt.geom.Dimension2D
, java.lang.InternalError
, java.lang.VirtualMachineError
Added method Long.toString(long i, int radix)
to java.lang.Long
The tcvm.dll no longer requires elevated privileges to be run on Windows desktop
Changes Spinner
to have transparent background by default
Changes Spinner
to not mess with the colors when created using an Image
On iOS, the application now receives an ENTER key event when the keyboard is closed
A RuntimeException
is no longer raised in JavaSE when you add a control to an AccordionContainer
, and its height reaches zero during animation
Changed ImageControl
to paint material effects only if there is an image and setPressedEventsEnabled
was called
Now Edit.autoSelect
puts cursor at end of line instead of begining, matching the behaviour of MultiEdit
Now if you press ENTER in a set of Edits that are inside a ScrollContainer
, it scrolls automatically to the next control.
Increased cursor thickness on Edit
for devices with high resolution
Changed Time(char[] sqlTime)
to also parse the milliseconds value (SQLite.getTime()
now includes milliseconds)
The following fields and methods were deprecated and should no longer be used
File
readAndClose
eadAndDelete
writeAndClose
read()
UIControls
spinnerFore
spinnerBack
Methods annotated with @ReplacedByNativeOnDeploy
and array arguments were not being replaced by their native counterpart on deploy
Fixed deploy to iOS in Linux without X11 display
Android binaries are now compiled in release mode, because the Play Store no longer allows debug binaries
TotalCross should no longer require elevated user access to run on Windows desktop
Fixed pressed event not being fired when the re-selecting the same item on a ComboBox
Fixed crash on WinCE, invalid function references would make the application crash on startup on some devices
Applied annotation @ReplacedByNativeOnDeploy
on classes of package totalcross.crypto
, stack trace line numbers should now be the same either on Java or device
Fixed crash on File.listFiles
when crawling very big paths
Fixed support for WinCE devices without the aygshell library, like the Compex PM200
Fixed IOException
hierarchy
Fixed algorithm for ImageControl.scaleToFit
Fixed pressed event not being fired when using a popup with ComboBox
Added CLOSED
state to File
, which allows it to be properly used in a try-with-resources
Updated dependency dd-plist.jar to version 1.19
Familiar with the Material design User Experience? Well, you can now give it to your user!
@ReplacedByNativeOnDeploy
annotation to denote every method that runs with a native implementation on device
The Java implementation is replaced by a native call during the deploy
java.util.function.*
functional interfaces of Java 8 to provide a deeper dive into functional programming
The project needs to be compiled with Java 8 to works, even if it has been downtargeted by RetroLambda
NOTE: no default methods nor static methods yet
The file all.pkg
is dynamically updated with your dependencies and restored to it's original state
See build examples:
Prevents null pointer when resizing ScrollContainer
Fixed deploy issue with java.lang.System
while running with Java 8
Fixed deploy issue with java.lang.Character
while running in a headless environment
totalcross.io.Connection
implements AutoCloseable
, so you may use try-with-resources
with any totalcross.io.Stream
, like HttpStream
or File
It also warns Resource leak when the compiler detects that you are not releasing a opened resource
Launcher no longer requires an activation key to run, instead it shows a dismissible popup to input the activation key to be stored on the user's AppData system equivalent directory.
The stored activation key is used by default for both Launcher and Deploy if the activation key is not provided as a command line argument.
AccordionContainer.collapseAll
not using showAnimation
when set to false.
AccordionContainer expand/collapse not resizing the parent window.
Fixed not being able to set focus to a Window under the current top one.
ImageControl not using the alphaMask that may have been assigned to the Image.
Graphics.getAnglePoint
implementation fixed by using the same algorithm of Graphics.drawPie
.
Added missing qsort methods to Vector to allow sorting in ascending or descending order.
Now you can get Firebase identity token to send a unicast message to a single Android device
Any news, we will keep updating the post and the source
Deploy with absolute path in Unix system, it isn't anymore mistakenly recognized as a slash argument
Fixed ScrollBar.recomputeParams
to ensure the values calculated are within a valid range.
Fixed TotalCross.apk deploy, which was not including Litebase libraries.
This affected only applications that used Litebase without packaging TotalCross (option /p
) on Android.
Added missing constructor Throwable(String, Throwable, boolean, boolean)
Added missing constructor Exception(String, Throwable, boolean, boolean)
Added missing constructor RuntimeException(String, Throwable, boolean, boolean)
Added method Image.resizeJpeg(String inputPath, String outputPath, int maxPixelSize)
to resize images on the file system with a smaller memory footprint.
On iOS, this method has a native implementation that does not require loading the image on memory, greatly improving performance and memory consumption.
On every other platform this method will still load the image on memory to perform the resize, but it should still be preferred over other resize methods as we intend to also add native implementation for other platforms in the future.
Added Toast.show(final String message, final int delay, final Window parentWindow)
, where you can pass the window where the tooltip will be shown.
Added Font.percentBy
which returns a font resized based on the given percentage.
SmsManager.sendTextMessage
asks the SMS composer application to automatically exit after the message is sent, switching back to the TotalCross application
Set the MessageBox
default colors in the constructor instead of onPopup
MessageBox
colors will no longer change if the UIColors
constants are changed after the object is created
ImageControl
resizes and pans the background image with the foreground image.
Vm.exec
on Android should now properly execute any video type supported by the viewer, using the MIME type associated with the file extension.
Unsupported or wrong file extensions may not work, so make sure the file is ok if this method fails to play it.
Those classes are no longer used:
totalcross.phone.PushNotification
totalcross.ui.event.PushNotificationEvent
New class SmsManager
to handle sms messages, only on Android for now.
New component SideMenuContainer
, a template to make creating applications using a navbar and a sidemenu. This is an incubating feature, therefore backwards compatibility is not guaranteed for future releases.
Fixed AccordionContainer
when showAnimation
is false
Added support for Compex scanners
Added property Bar.drawBorders
to remove the component's borders
Added constructor for TopMenu
to allow using other borders type besides the default ROUND_BORDER
Fixed Edit.clipboardMenu
so that it uses the same font from its parent's Window
Additional check when drawing TopMenu
to avoid NPE when there are no items to show
Deprecated method Image.setTransparentColor
- use images with alpha channel instead
Fixed deploy for Android, which was broken on the last release
There were some issues with the CI on the last release that could make the deployed application fail to start on Android, but this was fixed and new tests added to the CI to prevent this problem from happening again
Added Vector.ensureCapacity(int)
method
Added AccordionContainer.expand(boolean)
and AccordionContainer.collapse(boolean)
Whether one wish to show an animation, just pass true
as the argument
Added initial support to some classes and interfaces to provides better Java compliance:
java.io.FilterOutputStream
java.io.PrintStream
java.lang.Appendable
java.lang.AssertionError
java.lang.CharSequence
java.lang.System
: only the attributes out
and err
; both out
and err
prints to the DebugConsole
Deploy time support to referencing java.lang.ref.Reference
and java.lang.ref.WeakReference
; no semantics yet
Deploy time support to referencing java.util.concurrent.ConcurrentLinkedQueue
; no semantics yet
java.inject.Provider
java.lang.Class.desiredAssertionStatus()
method, returning false
java.lang.Error(String, Throwable)
constructor
java.lang.String.contains(CharSequence)
method
java.lang.String.replaceFirst(String, String)
method
java.lang.String.subsequence(int, int)
method
java.lang.StringBuffer.append(CharSequence)
and java.lang.StringBuffer.append(CharSequence, int, int)
methods
totalcross.ui.font.Font.toString()
method returns the font name and some other properties
like TCFont$N12
Added ImageControl.setImage(Image, boolean)
, where one may tells that it is desired (or not) to reset positions
OpticonH16.dll
DLL to run proper scanner on WinCE devices
Project files/folder structure ressembles a Maven/Gradle project
AccordionContainer.expand()
and AccordionContainer.collapse()
calls AccordionContainer.expand/collapse(true)
If the deploy process does not end happily, it will throw an exception and return code will be non-zero
ImageControl.setImage(Image)
calls ImageControl.setImage(Image, boolean)
requesting to reset positions
Default background color components changed to white
The Win32 deploy now also copies TotalCross files (dll and tcz) to the application folder
ComboBox.clear()
now may default to clearValueInt
when clearValueStr
is set but not available on the options
Fixed possible stack overflor on Throwable
constructors calls
Fixed Throwable.toString()
result to match the format used by the JDK
Pressing enter on iOS devices fires a SpecialEvent.ENTER
key
Added support to refer to a non-TotalCross-recognized HTTP method and forces to send the data
Added FONTSIZE
on relative positioning constants
Added AccordionContainer.collapseNoAnim
totacross.sql.ResultSet
and totalcross.sql.Statement
interfaces extends Autocloseable
LineReader
now uses the current CharacterConverter
Increased height of ControlBox
to add a few more distance between the message, the control and the buttons
TopMenu.setRect
visibility changed to protected
Now if you set minH
to a negative value, the value will be computed as -minH * fmH
(font height); this is useful when the font changes dynamically
SQLite handling correctly UTF8 (if asked to)
Added Sound.fromText
(Android only)
Socket
open timeout in Java working properly
Fixed LineReader
reading of a single non-\n
-terminanted string
Fixed Settings.showMousePosition
not taking into account the scale
Fixed TopMenu
when the widthInPixels
is computed dynamically and in a rotation the old value is used instead
Fixed item's height when a single control is used
Fixed issue when you set ScrollContainer.uiAdjustmentsBasedOnFontHeightIsSupported
to false and then the ScrollContainer reseta it to true
Fixed some issues with Honeywell and Dolphin scanner
Support for IPV6 on iOS
Refactored basic HTTP authentication so that Proxy Authentication
and Authentication
uses the same logic int HttpStream
Treating gracefully cancelled photo
TotalCross VM is now built with Android API level 23
Fixed basic authentication in HttpStream
Do not deploy placeholder icon, but icon informed icon (Android)
Workaround to get mac address in Android 6+
Fixed possible invalid access when freeing a OpenGL texture
Fixed issue with scanners:
Honeywell (Android)
Dolphin (WinCE)
Fixed opening Gallery photo
Implemented base 64 decode stream
Download google-services.json and include within your project and it will automagically work
There is no longer use for totalcross.sys.Settings.pushTokenAndroid
There is no reliable way yet to treat Firebase notifications in the app
Implemented Class.getCanonicalName()
Added java.lang.Autocloseable
interface
Added Window.isSipShown()
to check if the keyboard is currently showing
Added java.io.InputStream
Added totalcross.io.Stream.asInputStream()
, which returns a java.io.InputStream
that wraps the original totalcross.io.Stream
Added java.io.Reader
Added java.io.InputStreamReader
Added java.io.StringReader
Added java.io.Closeable
interface
Added java.io.Flushable
interface
Added java.io.Writer
Added java.io.StringWriter
Added StringBuffer.append(String, int, int)
Added instance method Control.showTip
Avoiding overflow operations within Long.compareTo(Long)
End of stream treated properly in zlib, returns -1
instead of throwing an exception
Fixed deploy for in-house distribution (iOS)
Class.getCanonicalName()
doesn't return the canonical name, but defaults to Class.getName()
In this version, a name tag was added to ContentHandler (Pull request ), making it possible for , a tool that uses a neural network, to convert with the same performance as an application built directly with the TotalCross SDK
Find out how to use KnowCode by clicking .
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 and .
To allow the use of external libraries in the simplest way possible is one of TotalCross goals. There is a which (still a Proof Of Concept) allows the use of these external libraries
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 ).
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 :
To better understand how it works using a sample application click .
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
You can see the details of the implementation in Pull Request .
Avoids License compliance problems as warns about the SDL license (GPLv3)
For details, see pull requests , , and .
back to a previous version to fix a bug that caused the content to be pulled back after a scroll;
Fixed ;
Fixed ;
Fixed ;
Fixed on devices that use skia with .ttf file type fonts.
Fixed initialization;
Fixed : the animation is now working as intended.
Added documentation about how to build and .
New added on GitHub.
Fixed bug with masks containing two consecutive non-alphanumeric characters -
Added support for generating QR codes natively on the device -
Camera: Fixed CAMERA_NATIVE_NOCOPY
-
Fixed support to listening events on Android hardware buttons, broken on version 5.1.0 - , ,
Fixed push and local notifications for Android 8+ -
ListContainer: Fixed Check on ListContainer - TotalCross
InputBox: Removed dummy mask that caused trouble when using setMode - TotalCross
Toast: Fixed using '\n' on the String used on Toast.show - TotalCross
Button: Fixed using an image and no text position - TotalCross
Edit: Fixed base line not showing when running on devices with DP smaller than 1, such as most WinCE devices - TotalCross
PopupMenu: Fixed the Android UI style - TotalCross
MultiEdit: Added fields to set the text gap - TotalCross#
Button: Added constant CENTRALIZE to centralize image and text buttons - TotalCross
Settings: Added field allowBackup
, which may be used to disable Android's automate cloud backup - TotalCross
Grid: fixed column width sizing -
Button: fixed position of contents based on the gap value -
CalendarBox: fixed calculation of font size -
VirtualKeyboard: fixed Clear button and text input look -
Socket: fixed support for open timeout on iOS -
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 ():
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) -
ByteArrayOutputStream: added several missing methods -
Added classes and ThreadPool
to improve concurrency support, refer to the documentation and the PlayBook for more information and samples
Added support for Android 64 bits - TotalCross
Fixed bug with large CRC or size values overflowing 32 bit integer - TotalCross
Added support for native barcode scanning on iOS, without using any external library -
HttpStream: Reverts change "Query parameters are now encoded to support the usage of unsafe characters" introduced in 4.3.1 - ,
Deploy: Fixed bug that would cause a method signature to be included in the constant pool as a class - ,
Reverted back the change reverted on last release and finally fixed the bug that was causing the assets to touble in size -
HttpStream: Fixed read operation not retuning EOF when the correct content length is provided on the reply -
Annotations @Deprecated
and @ReplacedByNativeOnDeploy
are no longer stripped by ProGuard -
The javadoc jar is now being deployed to our Maven repository -
Fixed deploy not being able to sign the apk when TOTALCROSS3_HOME is set with a relative path -
Fixed screen resolution for newer models such as iPhone XS -
Usage of "hide keyboard" button on the keyboard -
Camera: Fixed regression in release 4.2.2 -
ArcChart: Fixed coloring of chart when a single series represents 100% of the data -
Using the "hide keyboard" button on the keyboard makes it unavailable for the application -
ImageList: Fixed bug introduced in version 4.2.0 with the correcion of issue -
Grid: Fixed sorting different types of data in Grid -
Camera: Added request for external storage permission -
Fixed processing of arrays in complex objects and added support for non-static inner classes -
Fixed permission requests for File constructor, delete and getSize on Android 6+ -
Fixed Vm.exec on Android: intents were not being able to pass external files to other applications - , , fixes
Fixed CAMERA_CUSTOM not taking pictures when the device is held on vertical position, this affected a few models, most notably Samsung tablets -
Fixed notification crashing on Android -
Fixed regression on PushButtonGroup that made them unclickable on Win32, affecting all dialogs -
HttpStream: Added support for http methods PUT, PATCH and DELETE in class HttpStream -
Will now correctly package tcz dependencies that were split over multiple files -
Fixed NPE when deploying for Win32 without initializing Launcher.instance -
Fix path for Win32 dll, case sensitive systems expect binaries on lowercased folders -
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 -
Fixed vertical alignment of text -
Fixed enconding error with plus-minus sign -
Fixed column width wrong resize when dragging edge to before column start -
On Java, Settings.appPath is now initialized even if the Launcher isn't executed -
No longer recreates the content image when repositioned - ,
Added feature autosplit -
Added static methods Image.getJpegScaled
and Image.getJpegBestFit
to load jpeg files using fast IDCT scale, more about this
Notification crashing application on Android -
The fix for the drag event caused PushButtonGroup to be unclickable on Win32, affecting all dialogs -
Fixed retrieval of the device's current time on newer Android devices (and possibly other POSIX compliant platforms) -
Fixed BarButton
only firing a pressed event targeting itself when Material UI style is used -
Fixed redraw after the device is unlocked on Moto G5 Plus -
On Android, Chrome no longer supports using the scheme prefix to display local files. Added workaround to Vm.exec
to keep backwards compatibility -
Added Settings.ANDROID_ID
, refer to the Android for more details
Added limited support for running Intents through Vm.exec on Android -
Whiteboard
now supports usage of transparentBackground
to ignore the background color and generate images with transparent background -
[Fade transition]( transition)
Fixed ProgressBar
to retain the z-order when its value is updated
Fixed barcode reading with Motorola scanners when the digits of both halves of the barcode were the same (such as 10161016 or 10201020) -
Added support to Bematech scanner back to the SDK -
Added method ConnectionManager.getLocalHostName
to retrieve the host name of the local host -
Wish to add your dependencies dynamically? Take a look at
Build to multiple platforms
Must compile with dependenceis magical-utils
, tc-utilities
and tc-components
Check the for more details;
Also check the ;
Fixed saving photo on portrait
Fixed support for Samsung's default keyboard on Android which has a bug related to single character event handling and text prediction
Added java.sql
exceptions that were being replaced by their equivalents on totalcross.sql
Added SmsManager
to send and listen to incoming sms messages, only supported on Android now
Increased wait time for bluetooth read and write operations on Android
With this new release, TotalCross now supports . A lightweight DI (dependency injection) framework, maintained by Google and with focus on high performance, low startup and better maintainability, which makes it perfect for mobile applications!
Instructions for usage are available on the
Added support to Java 8 Lambda through the usage of !
on how to use it and are available.
Added class totalcross.TotalCrossApplication
which can be used as a main entry point for the application. Check example at
Check the snippet
Check example at
Using for push messages in Android
GCM is
statement supported
Added a SAX-like compiler for JSON, based on and its
Trying to get mac address on Android 6+ will return a constant 02:00:00:00:00:00
due