Skip to content

Releases: heremaps/gluecodium

Release version 13.9.7 (#1616)

13 Nov 10:27
e8a6a4f
Compare
Choose a tag to compare

Bug fixes:

  • Fixed visibilty of symbols from common code (JNI, Dart FFI) in order to resolve problems with build that uses hidden visibility preset.
  • Fixed conversion of platforms for 'Internal' annotation to work correctly also when arguments are not in quotation marks.
  • Dart: generate omitted documentation of properties.

Release version 13.9.6 (#1609)

31 Oct 08:40
8a53210
Compare
Choose a tag to compare

Bug fixes:

  • C++: Fixed generation of getters and setters for accessors attribute -- non-trivial types use references now.
  • Swift: Added missing generation of conversion functions for lambdas defined in structs.
  • Dart: Fixed a bug related to exporting nested types defined in a type annotated as internal.

Release version 13.9.5 (#1604)

22 Oct 12:08
57ec8d8
Compare
Choose a tag to compare

Features:

  • Stop callback queue on main isolate exit

Release version 13.9.4 (#1600)

01 Aug 09:59
acf6b82
Compare
Choose a tag to compare

Features:

  • Adds missing includes for Android

Release version 13.9.3 (#1598)

31 Jul 16:05
bc9a2b0
Compare
Choose a tag to compare

Features:

  • Preserves assigned thread name when attaching it to the JVM.

Release 13.9.2 (#1596)

25 Jul 10:30
0f996dd
Compare
Choose a tag to compare

Features:

  • Adds possibility to synchronise access to class cache in code for JNI. It's necessary to support case when several shared
    libraries contain generated code so class cache can be concurrently modified.

Release version 13.9.1 (#1592)

04 Jun 09:58
cddc88a
Compare
Choose a tag to compare

Features:

  • Refactors generated code as described below to make compiled code smaller.
  • Moves implementations of JniExceptionThrower, JniReference, CppProxyBase from headers to cpp files.
  • Moves repeated functionality like throwing exception and retrieving native handle to functions.
  • Moves caching mechanism in JNI and Dart ffi related generated code to cpp.
  • Makes several classes final.
  • Makes many generated JNI related functions noexcept.
  • Avoids passing of useless parameter like (SomeType*)nullptr to converters. Now empty TypeId template is passing.
  • Removes unused headers.

13.9.0: Move implementation of CppProxyBase to cpp (#1579)

22 Apr 13:47
45b2bb6
Compare
Choose a tag to compare
  • Bridging headers from linked frameworks are used. It solves problem with some cases, for example when interface inherts (extends) another one in lime.
  • Fixes forward declaration in C++ for types when contain nested types and both type and nested type are referred.

Release version 13.8.2 (#1573)

23 Feb 10:36
4440ef4
Compare
Choose a tag to compare
  • Bridging headers from linked frameworks are used. It solves problem with some cases, for example when interface inherts (extends) another one in lime.
  • Fixes forward declaration in C++ for types when contain nested types and both type and nested type are referred.

Release version 13.8.1 (#1570)

07 Feb 11:45
45d7b1f
Compare
Choose a tag to compare

Bug fixes:

  • RTTI for generated classes is fixed because pure dtor is removed and dtor from cpp is used now.
  • Fixes dependency discovery in CMake to not include not directly linked OBJECT library.