Jump to: navigation, search

Version 3.8 (WinX)


Revision as of 09:42, 15 March 2021 by LGE (Talk | contribs)

[edit]

Release Notes

Version 3.8.x (2021-0?-??)

Feature highlight

  • The client can now receive detailed information about the current user as well as other users.
  • Users can now record audios (in addition to videos and photos) as UBIK® documents.
  • The visibility of the image toolbar can be customized in XAML.
  • Data customizers can now configure whether & how UBIK content should be automatically downloaded to the clients.
  • The DeviceID is now unique and independent of network hardware changes.
  • Profile settings are now automatically saved when users leave the settings page.

Bugfixes

  • Fixed an issue where the geo editor misbehaved for newly created objects (or those without original server values).
  • Fixed an issue where changes to geo property values were lost in offline/manual mode.
  • Fixed an issue where scanning did not work when the search box is customized away from the login page.
  • Fixed an issue where the bottom menu item for creating child items stopped working.
  • Fixed an issue where selections in mass editing mode might change as you scroll.
  • Fixed an issue where the POIs are sometimes not shown (when navigating from the map page to the POI page).
  • Fixed an issue where content list items sometimes stopped responding to user interactions after content updates.
  • Empty signatures can now not be confirmed anymore.

Known issues

  • Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.
  • If a device has multiple cameras of exactly the same model (e.g. Microsoft HD 3000), the wrong one might be used during remote support calls.
  • The AR Marker related features are resource intense and can cause the app to slow down on weaker tablets.
  • Sometimes after an external bluetooth RFID scanner is disconnected, the app still incorrectly recognizes it as available.


XAML Notes

UBIKMediaPlayerElement

This control is introduced to replace the old MediaElement we used for playing video/audio files. Because the old one had an issue that newly created document files can not be played until they are saved. If this issue is relevant, you should update those XAML files that use MediaElement. See below.

New

<Grid xmlns:controls="using:UBIK.WinX.Controls">
    <controls:UBIKMediaPlayerElement
       ...
       SourceExt="{Binding DocumentViewModel.LocalURI}" />
</Grid>

Old

<Grid>
    <MediaElement
       ...
       Source="{Binding DocumentViewModel.LocalURI}" />
</Grid>

If this issue is irrelevant or does not bother your users, you can skip updating the XAMLs since the old MediaElement still works for the most part.