Jump to: navigation, search

Difference between revisions of "Version 3.8 (WinX)"


Line 1: Line 1:
 +
= Release Notes =
 +
 
== Version 3.8.B (2021-0?-??) ==
 
== Version 3.8.B (2021-0?-??) ==
 
=== Feature highlight ===
 
=== Feature highlight ===
Line 24: Line 26:
 
<br />
 
<br />
  
 +
= 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.
 +
 +
<tabs>
 +
<tab name="New">
 +
<source lang = "xml">
 +
<Grid xmlns:controls="using:UBIK.WinX.Controls">
 +
    <controls:UBIKMediaPlayerElement
 +
        ...
 +
        SourceExt="{Binding DocumentViewModel.LocalURI}" />
 +
</Grid>
 +
</source>
 +
</tab>
 +
<tab name="Old">
 +
<source lang = "xml">
 +
<Grid>
 +
    <MediaElement
 +
        ...
 +
        Source="{Binding DocumentViewModel.LocalURI}" />
 +
</Grid>
 +
</source>
 +
</tab>
 +
</tabs>
 +
 +
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.
 +
 +
<headertabs />
  
 
{{Category/Version2|{{PAGENAME}}}}
 
{{Category/Version2|{{PAGENAME}}}}

Revision as of 16:57, 18 February 2021

[edit]

Release Notes

Version 3.8.B (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.

Version 3.8.A (2021-01-31?)

Feature highlight

  • 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.

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.

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.