<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.augmensys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=CHI</id>
		<title>UBIK Wiki / Augmensys - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.augmensys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=CHI"/>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Special:Contributions/CHI"/>
		<updated>2026-04-30T23:22:40Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.2</generator>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21633</id>
		<title>Version 3.6 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21633"/>
				<updated>2019-09-25T10:58:41Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attention|There are mandatory Xaml changes and existing customizings need to be updated.}}&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* Position and Orientation information of separate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their probabilistic error levels using an Extended Kalman Filter. &lt;br /&gt;
* It is now possible to persist the scroll position of a ListView when browsing through the content hierarchy. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The element in the middle of the screen within a !ListView is memorized. With this information the scroll position is memorized. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The feature of [[Login_View#UWP_.26_Xamarin_clients|remembering user credentials]] is redesigned.&lt;br /&gt;
* The GlobalStatusBar can now be fully customized in the template: ''UBIKGlobalStatusBar.xaml''.&lt;br /&gt;
* The AuthenticationPage (Start Page of the App) can now be fully customized in the template: ''UBIKStartArea.xaml''.&lt;br /&gt;
* It is now possible to use external Bluetooth RFID Readers to scan [[RFID_tags#tab=WinX_External_Scanner|RFID Tags]] in UBIK.&lt;br /&gt;
* The not found offline query criteria are now ignored.&lt;br /&gt;
* It's now possible to use [[XAML_Tips#MultiBinding|multi bindings]] in XAML.&lt;br /&gt;
* A new command ''InvokeForAllChildrenCommand'' allows to execute a command on all selected items of a ''ChildrenListViewModel''&lt;br /&gt;
* A new property ''LinkedLevel'' on the ''PropertyListItemViewModel'' loads and delivers a full PageViewModel of the linked object of a Guid property&lt;br /&gt;
* It is now possible to attach documents to the [[Property_Wizard_(Client)|content creation wizard]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Simplified and improved the bindings to TemplateService and its templates. See [[Version_3.6_(WinX)#Xaml_Changes|Xaml Changes]].&lt;br /&gt;
* The shortcut key to activate the [[Developer_Mode|developer mode]] is changed from {{key press|F12}} to {{key press|Ctrl}}+{{key press|F12}} (to reduce activations by accident and to avoid conflicts with other applications).&lt;br /&gt;
* Improved the performance and responsiveness when loading large lists.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue when clicking on ListViewItem in ZoomedOutListView it does not navigate, when clicking on the right side of the object&lt;br /&gt;
* Fixed an issue where OCR Definitions (&amp;quot;TAG_Chars.xml) generated through the experimental ''TagReader'' App could not  be used by the client anymore&lt;br /&gt;
* Fixed an issue where UBIK was crashing when repeatedly opening the GuidEditor using the PropertyWizard.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
&lt;br /&gt;
= Xaml Changes =&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
We have made some improvements to make some bindings in Xaml code easier and more efficient. Some changes to your existing Xaml customizings might be necessary. Please refer to each section to see if the change is mandatory or not.&lt;br /&gt;
&lt;br /&gt;
== Binding to TemplateService and the templates ==&lt;br /&gt;
This change is '''not mandatory''' and your existing Xamls will still work. We do recommend updating them, though.&lt;br /&gt;
&lt;br /&gt;
Previously the TemplateService (the one providing access to all customizable templates) was only available on certain views (e.g. pages, dialogs, etc.). And the binding to it could only be done using named element like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding ElementName=contentPage, Path=TemplateService.UBIKChildPageActionTemplate}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
It is now made accessible from all view models (you can use the [[Developer_Mode|developer mode]] to check its availability). Also, you can now use the exact names of the template files as indexers for binding to those templates. Therefore, the binding can be changed to something like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding TemplateService[UBIKChildPageAction]}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Use SelectionBoundListView instead of ListView ==&lt;br /&gt;
A SelectionBoundListView was already available in earlier versions but not mandatory. For performance improvements, it is now '''mandatory''' wherever you display {{UBIK}} content (objects, properties, etc.).&lt;br /&gt;
You need to add a namespace like &amp;lt;code&amp;gt;xmlns:uc=&amp;quot;using:UBIK.WinX.Controls&amp;quot;&amp;lt;/code&amp;gt; to your Xaml file and use it like &amp;lt;code&amp;gt;&amp;lt;uc:SelectionBoundListView ... /&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
{{Hint|Technically speaking, SelectionBoundListView informs item view models when their corresponding items are visualized. This way, view models can skip a lot of unnecessary work (on the UI) when their views are not visible. '''If the regular ListView is used instead, the item views will not reflect content changes until the page is reloaded/refreshed.'''}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21632</id>
		<title>Version 3.6 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21632"/>
				<updated>2019-09-25T10:57:25Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attention|There are mandatory Xaml changes and existing customizings need to be updated.}}&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* Position and Orientation information of separate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their probabilistic error levels using an Extended Kalman Filter. &lt;br /&gt;
* It is now possible to persist the scroll position of a ListView when browsing through the content hierarchy. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The element in the middle of the screen within a !ListView is memorized. With this information the scroll position is memorized. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The feature of [[Login_View#UWP_.26_Xamarin_clients|remembering user credentials]] is redesigned.&lt;br /&gt;
* The GlobalStatusBar can now be fully customized in the template: ''UBIKGlobalStatusBar.xaml''.&lt;br /&gt;
* The AuthenticationPage (Start Page of the App) can now be fully customized in the template: ''UBIKStartArea.xaml''.&lt;br /&gt;
* It is now possible to use external Bluetooth RFID Readers to scan [[RFID_tags#tab=WinX_External_Scanner|RFID Tags]] in UBIK.&lt;br /&gt;
* The not found offline query criteria are now ignored.&lt;br /&gt;
* It's now possible to use [[XAML_Tips#MultiBinding|multi bindings]] in XAML.&lt;br /&gt;
* A new command ''InvokeForAllChildrenCommand'' allows to execute a command on all selected items of a ''ChildrenListViewModel''&lt;br /&gt;
* A new property ''LinkedLevel'' on the ''PropertyListItemViewModel'' loads and delivers a full PageViewModel of the linked object of a Guid property&lt;br /&gt;
* It is now possible to attach documents to the [[Property_Wizard_(Client)|content creation wizard]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Simplified and improved the bindings to TemplateService and its templates. See [[Version_3.6_(WinX)#Xaml_Changes|Xaml Changes]].&lt;br /&gt;
* The shortcut key to activate the [[Developer_Mode|developer mode]] is changed from {{key press|F12}} to {{key press|Ctrl}}+{{key press|F12}} (to reduce activations by accident and to avoid conflicts with other applications).&lt;br /&gt;
* Improved the performance and responsiveness when loading large lists.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue when clicking on ListViewItem in ZoomedOutListView it does not navigate, when clicking on the right side of the object&lt;br /&gt;
* Fixed an issue where OCR Definitions (&amp;quot;TAG_Chars.xml) generated through the experimental ''TagReader'' App could not  be used by the client anymore&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
&lt;br /&gt;
= Xaml Changes =&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
We have made some improvements to make some bindings in Xaml code easier and more efficient. Some changes to your existing Xaml customizings might be necessary. Please refer to each section to see if the change is mandatory or not.&lt;br /&gt;
&lt;br /&gt;
== Binding to TemplateService and the templates ==&lt;br /&gt;
This change is '''not mandatory''' and your existing Xamls will still work. We do recommend updating them, though.&lt;br /&gt;
&lt;br /&gt;
Previously the TemplateService (the one providing access to all customizable templates) was only available on certain views (e.g. pages, dialogs, etc.). And the binding to it could only be done using named element like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding ElementName=contentPage, Path=TemplateService.UBIKChildPageActionTemplate}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
It is now made accessible from all view models (you can use the [[Developer_Mode|developer mode]] to check its availability). Also, you can now use the exact names of the template files as indexers for binding to those templates. Therefore, the binding can be changed to something like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding TemplateService[UBIKChildPageAction]}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Use SelectionBoundListView instead of ListView ==&lt;br /&gt;
A SelectionBoundListView was already available in earlier versions but not mandatory. For performance improvements, it is now '''mandatory''' wherever you display {{UBIK}} content (objects, properties, etc.).&lt;br /&gt;
You need to add a namespace like &amp;lt;code&amp;gt;xmlns:uc=&amp;quot;using:UBIK.WinX.Controls&amp;quot;&amp;lt;/code&amp;gt; to your Xaml file and use it like &amp;lt;code&amp;gt;&amp;lt;uc:SelectionBoundListView ... /&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
{{Hint|Technically speaking, SelectionBoundListView informs item view models when their corresponding items are visualized. This way, view models can skip a lot of unnecessary work (on the UI) when their views are not visible. '''If the regular ListView is used instead, the item views will not reflect content changes until the page is reloaded/refreshed.'''}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Property_Wizard_(Client)&amp;diff=21631</id>
		<title>Property Wizard (Client)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Property_Wizard_(Client)&amp;diff=21631"/>
				<updated>2019-09-25T10:22:45Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UBIK}} objects can be configured to be [[SYSCLS_WIZARDCREATION|property wizard]]-enabled. This means:&lt;br /&gt;
* when a user creates such an object on the client, a series of editor dialogs are shown for all of its important properties (namely properties with priorities not lower than the [[Settings#Content|PriorityThreshold]];&lt;br /&gt;
* the user should enter values for these properties one after the other;&lt;br /&gt;
* once done, the object will be immediately saved (and committed if in online mode) automatically.&lt;br /&gt;
{{Attention|If the user presses {{key press|Cancel}} in any of the dialogs during the creation process, the creation will be canceled and the object will be discarded.}}&lt;br /&gt;
&lt;br /&gt;
Using a customized Editor Template it is possible to attach documents during content creation using the property wizard {{Version/WinXSince|3.6}}. For that specific UBIKEdit template has to be extended by the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;AppBarButton&lt;br /&gt;
	Icon=&amp;quot;Camera&amp;quot;&lt;br /&gt;
	IsEnabled=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.IsPictureChildCreationAllowed}&amp;quot;&lt;br /&gt;
	Style=&amp;quot;{ThemeResource UBIKGlobalChildAppBarAppBarButton}&amp;quot;&lt;br /&gt;
	Visibility=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.IsPropertyWizardActive, Converter={StaticResource BoolToVisConverter}, FallbackValue=Collapsed}&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;Interactivity:Interaction.Behaviors&amp;gt;&lt;br /&gt;
		&amp;lt;Core:EventTriggerBehavior EventName=&amp;quot;Tapped&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;Core:InvokeCommandAction Command=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.CaptureMediaCommand}&amp;quot; /&amp;gt;&lt;br /&gt;
		&amp;lt;/Core:EventTriggerBehavior&amp;gt;&lt;br /&gt;
	&amp;lt;/Interactivity:Interaction.Behaviors&amp;gt;&lt;br /&gt;
&amp;lt;/AppBarButton&amp;gt;&lt;br /&gt;
&amp;lt;ScrollViewer&lt;br /&gt;
	MaxWidth=&amp;quot;500&amp;quot;&lt;br /&gt;
        HorizontalAlignment=&amp;quot;Stretch&amp;quot;&lt;br /&gt;
	VerticalAlignment=&amp;quot;Stretch&amp;quot;&lt;br /&gt;
	HorizontalScrollBarVisibility=&amp;quot;Auto&amp;quot;&lt;br /&gt;
	VerticalScrollBarVisibility=&amp;quot;Auto&amp;quot;&lt;br /&gt;
	Visibility=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.IsPropertyWizardActive, Converter={StaticResource BoolToVisConverter}, FallbackValue=Collapsed}&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ListView&lt;br /&gt;
		HorizontalContentAlignment=&amp;quot;Stretch&amp;quot;&lt;br /&gt;
		ItemTemplate=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.TemplateService[UBIKDocumentItemSmall]}&amp;quot;&lt;br /&gt;
		ItemsSource=&amp;quot;{Binding EditDialogViewModel.CallingViewModel.Documents.Items}&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;ListView.ItemsPanel&amp;gt;&lt;br /&gt;
			&amp;lt;ItemsPanelTemplate&amp;gt;&lt;br /&gt;
				&amp;lt;ItemsStackPanel Orientation=&amp;quot;Horizontal&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/ItemsPanelTemplate&amp;gt;&lt;br /&gt;
		&amp;lt;/ListView.ItemsPanel&amp;gt;&lt;br /&gt;
		&amp;lt;ListView.ItemContainerStyle&amp;gt;&lt;br /&gt;
			&amp;lt;Style TargetType=&amp;quot;ListViewItem&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;Setter Property=&amp;quot;VerticalAlignment&amp;quot; Value=&amp;quot;Center&amp;quot; /&amp;gt;&lt;br /&gt;
				&amp;lt;Setter Property=&amp;quot;VerticalContentAlignment&amp;quot; Value=&amp;quot;Center&amp;quot; /&amp;gt;&lt;br /&gt;
				&amp;lt;Setter Property=&amp;quot;Padding&amp;quot; Value=&amp;quot;0&amp;quot; /&amp;gt;&lt;br /&gt;
				&amp;lt;Setter Property=&amp;quot;Margin&amp;quot; Value=&amp;quot;10,8,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/Style&amp;gt;&lt;br /&gt;
		&amp;lt;/ListView.ItemContainerStyle&amp;gt;&lt;br /&gt;
	&amp;lt;/ListView&amp;gt;&lt;br /&gt;
&amp;lt;/ScrollViewer&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:WinX|Property Wizard (Client)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21587</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21587"/>
				<updated>2019-09-10T13:31:56Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Build History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attention|There are breaking XAML template changes in this version. If you use any customized XAMLs from older versions, they should be updated according to [[XAML_Changes_in_UBIK_WinX_3.5|these instructions]]. }}&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
* You can now find comments on various type list members in the [[Developer_Mode|developer mode]]. This is an ongoing process and more comments will be added/improved after the release.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
* Scanning is now paused when the last search result dialog is still open for user interaction.&lt;br /&gt;
* Comma and dot are both accepted as decimal seperators when entering numbers, independent of the current culture.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
* Fixed an issue where it was not possible to return to Scan Page after scanning AR-Markers.&lt;br /&gt;
* Fixed an issue where the RFID(NFC) Scanner did not show a dialog window with more objects (when tag has targets two objects or more)&lt;br /&gt;
* Invalid characters in profile names are escaped/replaced and will no longer break the app.&lt;br /&gt;
* Fixed several UI issues in the Gantt chart control. For example, no longer displaying the current date line or the progress bar if it doesn't fall into the project timeline.&lt;br /&gt;
* Fixed an issue where the content page displays incorrect title/subtitle right after editing a Guid property using a query.&lt;br /&gt;
* Fixed an issue where the user can only browse to the same object once by scanning the QR code (unless a different marker is scanned).&lt;br /&gt;
* Fixed an issue where the &amp;quot;Manual&amp;quot; sync mode configured in profiles is ignored during logins.&lt;br /&gt;
* Fixed an issue where the toggling of fit-to-width mode for documents doesn't work (when Windows animation is enabled).&lt;br /&gt;
* Fixed an issue where the device position calculated from AR-Markers was wrong.&lt;br /&gt;
* Fixed an issue where POIs having a negative AR-Marker side length were not shown.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
* When using the UBIK contrast profile for OCR scanning, the app might crash especially if other marker scanning is also turned on.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.2 on 2019-04-30&lt;br /&gt;
** Initial release.&lt;br /&gt;
* 3.5.3 on 2019-05-03&lt;br /&gt;
** It is now possible to display the distance to AR-Marker POIs.&lt;br /&gt;
** The same layer selection button is now also available in the POI page (previously only in the map page).&lt;br /&gt;
* 3.5.5 on 2019-06-12&lt;br /&gt;
** [[XAML_Tips#Content_creation|Creating child objects under non-context objects]] is now possible.&lt;br /&gt;
** Fixed an issue where the Guid property value is not committed if an editing starts from a child item.&lt;br /&gt;
** Fixed an issue where Guid properties without original server values can’t be saved.&lt;br /&gt;
* 3.5.11 on 2019-07-19&lt;br /&gt;
** Fixed an issue so that navigating to a hotspot in a document works again.&lt;br /&gt;
** Errors in custom XAML templates are now displayed as red section in the App, including the full exception message (which is typically pointing to the line in the XAML file)&lt;br /&gt;
{{Hint|There are still XAML errors that cannot be caught, such as referencing a StaticResource that doesn't exist - in such a case, the App will crash, but it will still write the full exception message to  [AppInstallPath]\''LocalState\UBIKDebug.log'' before termination, thus the corrupted line can again be easily identified!}}&lt;br /&gt;
* 3.5.13 on 2019-07-19&lt;br /&gt;
** Fixed an issue so that navigating to a hotspot in a document works again. (Hotfix for the previous version, now it should work for image documents as well.)&lt;br /&gt;
** Fixed an issue where hotspots and annotations are not shown the first time browsing to a document using customized Xamls.&lt;br /&gt;
* 3.5.14 on 2019-08-02&lt;br /&gt;
** For compatibility reasons, we have reverted one change from 3.5.11, namely &amp;quot;Errors in custom XAML templates...&amp;quot; which will be postponed into the next major release.&lt;br /&gt;
* 3.5.18 on 2019-08-20&lt;br /&gt;
** It is now possible to disable the automatic filter criteria for queries. &lt;br /&gt;
** Fixed an issue where the distance to Direct AR-Markers was shown in Pixels instead of meters&lt;br /&gt;
* 3.5.19 on 2019-08-26&lt;br /&gt;
** Change the highlighting of selected hotspots&lt;br /&gt;
* 3.5.XX on 2019.08.XX&lt;br /&gt;
** Charts will now be updated if the server sends updated values.&lt;br /&gt;
** Fixed an issue where already processed pushes are not removed.&lt;br /&gt;
* 3.5.21 on 2019.09.10&lt;br /&gt;
** Fixed an issue where scanning OCR Texts using the UBIK Default Profile crashed the app on some devices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21554</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21554"/>
				<updated>2019-08-20T13:47:22Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attention|There are breaking XAML template changes in this version. If you use any customized XAMLs from older versions, they should be updated according to [[XAML_Changes_in_UBIK_WinX_3.5|these instructions]]. }}&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
* You can now find comments on various type list members in the [[Developer_Mode|developer mode]]. This is an ongoing process and more comments will be added/improved after the release.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
* Scanning is now paused when the last search result dialog is still open for user interaction.&lt;br /&gt;
* Comma and dot are both accepted as decimal seperators when entering numbers, independent of the current culture.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
* Fixed an issue where it was not possible to return to Scan Page after scanning AR-Markers.&lt;br /&gt;
* Fixed an issue where the RFID(NFC) Scanner did not show a dialog window with more objects (when tag has targets two objects or more)&lt;br /&gt;
* Invalid characters in profile names are escaped/replaced and will no longer break the app.&lt;br /&gt;
* Fixed several UI issues in the Gantt chart control. For example, no longer displaying the current date line or the progress bar if it doesn't fall into the project timeline.&lt;br /&gt;
* Fixed an issue where the content page displays incorrect title/subtitle right after editing a Guid property using a query.&lt;br /&gt;
* Fixed an issue where the user can only browse to the same object once by scanning the QR code (unless a different marker is scanned).&lt;br /&gt;
* Fixed an issue where the &amp;quot;Manual&amp;quot; sync mode configured in profiles is ignored during logins.&lt;br /&gt;
* Fixed an issue where the toggling of fit-to-width mode for documents doesn't work (when Windows animation is enabled).&lt;br /&gt;
* Fixed an issue where the device position calculated from AR-Markers was wrong.&lt;br /&gt;
* Fixed an issue where POIs having a negative AR-Marker side length were not shown.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
* When using the UBIK contrast profile for OCR scanning, the app might crash especially if other marker scanning is also turned on.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.2 on 2019-04-30&lt;br /&gt;
** Initial release.&lt;br /&gt;
* 3.5.3 on 2019-05-03&lt;br /&gt;
** It is now possible to display the distance to AR-Marker POIs.&lt;br /&gt;
** The same layer selection button is now also available in the POI page (previously only in the map page).&lt;br /&gt;
* 3.5.5 on 2019-06-12&lt;br /&gt;
** [[XAML_Tips#Content_creation|Creating child objects under non-context objects]] is now possible.&lt;br /&gt;
** Fixed an issue where the Guid property value is not committed if an editing starts from a child item.&lt;br /&gt;
** Fixed an issue where Guid properties without original server values can’t be saved.&lt;br /&gt;
* 3.5.11 on 2019-07-19&lt;br /&gt;
** Fixed an issue so that navigating to a hotspot in a document works again.&lt;br /&gt;
** Errors in custom XAML templates are now displayed as red section in the App, including the full exception message (which is typically pointing to the line in the XAML file)&lt;br /&gt;
{{Hint|There are still XAML errors that cannot be caught, such as referencing a StaticResource that doesn't exist - in such a case, the App will crash, but it will still write the full exception message to  [AppInstallPath]\''LocalState\UBIKDebug.log'' before termination, thus the corrupted line can again be easily identified!}}&lt;br /&gt;
* 3.5.13 on 2019-07-19&lt;br /&gt;
** Fixed an issue so that navigating to a hotspot in a document works again. (Hotfix for the previous version, now it should work for image documents as well.)&lt;br /&gt;
** Fixed an issue where hotspots and annotations are not shown the first time browsing to a document using customized Xamls.&lt;br /&gt;
* 3.5.14 on 2019-08-02&lt;br /&gt;
** For compatibility reasons, we have reverted one change from 3.5.11, namely &amp;quot;Errors in custom XAML templates...&amp;quot; which will be postponed into the next major release.&lt;br /&gt;
* 3.5.18 on 2019-08-20&lt;br /&gt;
** It is now possible to disable the automatic filter criteria for queries. &lt;br /&gt;
** Fixed an issue where the distance to Direct AR-Markers was shown in Pixels instead of meters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21544</id>
		<title>Version 3.6 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21544"/>
				<updated>2019-08-13T06:23:11Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* Position and Orientation information of seperate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their probabilistic error levels using an Extended Kalman Filter. &lt;br /&gt;
* It is now possible to persist the scroll position of a ListView when browsing through the content hierarchy. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The element in the middle of the screen within a !ListView is memorised. With this information the scroll position is memorised. But the ListView does need an unique identifying name (x:name) to work properly. Furthermore, if list elements depend on other UI-elements those have to be created above the ListView in the XAML.&lt;br /&gt;
* The feature of [[Login_View#UWP_.26_Xamarin_clients|remembering user credentials]] is redesigned.&lt;br /&gt;
* The GlobalStatusBar can now be fully customized in the template: &amp;quot;UBIKGlobalStatusBar.xaml&amp;quot;&lt;br /&gt;
* It is now possible to use external Bluetooth RFID Readers to scan [[RFID_tags#tab=WinX_External_Scanner|RFID Tags]] in UBIK.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Simplified and improved the bindings to TemplateService and its templates. See [[Version_3.6_(WinX)#Xaml_Changes|Xaml Changes]].&lt;br /&gt;
* The shortcut key to activate the [[Developer_Mode|developer mode]] is changed from {{key press|F12}} to {{key press|Ctrl}}+{{key press|F12}} (to reduce activations by accident and to avoid conflicts with other applications).&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue when clicking on ListViewItem in ZoomedOutListView it does not navigate, when clicking on the right side of the object&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
&lt;br /&gt;
= Xaml Changes =&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
We have made some improvements to make some bindings in Xaml code easier and more efficient. Some changes to your existing Xaml customizings might be necessary. Please refer to each section to see if the change is mandatory or not.&lt;br /&gt;
&lt;br /&gt;
== Binding to TemplateService and the templates ==&lt;br /&gt;
This change is '''not mandatory''' and your existing Xamls will still work. We do recommend updating them, though.&lt;br /&gt;
&lt;br /&gt;
Previously the TemplateService (the one providing access to all customizable templates) was only available on certain views (e.g. pages, dialogs, etc.). And the binding to it could only be done using named element like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding ElementName=contentPage, Path=TemplateService.UBIKChildPageActionTemplate}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
It is now made accessible from all view models (you can use the [[Developer_Mode|developer mode]] to check its availability). Also, you can now use the exact names of the template files as indexers for binding to those templates. Therefore, the binding can be changed to something like&lt;br /&gt;
:&amp;lt;source lang = &amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ContentControl ContentTemplate=&amp;quot;{Binding TemplateService[UBIKChildPageAction]}&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21496</id>
		<title>RFID tags</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21496"/>
				<updated>2019-07-31T13:54:04Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* WinX External Scanner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Android =&lt;br /&gt;
&lt;br /&gt;
In order for the users to find objects more efficiently, {{UBIK}} objects can be marked with values for RFID codes. Whenever a user scans an RFID code, the resulting code value can be used to find all matching objects, namely objects that have the [[#Technical_background|right property]].&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/Android|2.4.2}}.&lt;br /&gt;
&lt;br /&gt;
== Introduction: RFID &amp;amp; NFC ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Near_field_communication NFC] stands for &amp;quot;Near Field Communication&amp;quot; and is a set of ideas and technologies for data transfer between devices, typically in close distances.&lt;br /&gt;
Technically, it is based on [http://en.wikipedia.org/wiki/Radio-frequency_identification RFID] (&amp;quot;Radio-Frequency Identification&amp;quot;), which describes specific technical solutions.&lt;br /&gt;
&lt;br /&gt;
Amongst the use cases for NFC, there is communication between smartphones and other devices, but also the scanning of RFID tags.&lt;br /&gt;
&lt;br /&gt;
The {{UBIK}} RFID scanning feature specifically is the ability to scan RFID tags in order to identify {{UBIK}} objects.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;75%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Standard!! Tested Tag technologies&lt;br /&gt;
|-&lt;br /&gt;
| NfcA (RFID standard: ISO-14443A) {{Version/AndroidSince|2.4.2}} || EV1(MFOUL11), NTAG 216, NTAG 210, NTAG 213&lt;br /&gt;
|-&lt;br /&gt;
| NfcB (RFID standard: ISO-14443B) {{Version/AndroidSince|2.4.5}} || -&lt;br /&gt;
|-&lt;br /&gt;
| NfcV (RFID standard: ISO-15693) {{Version/AndroidSince|2.4.5}} || ICode SLIX(SL2S2002), ICode SLI(SL2ICS20)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NFC Scan Result Type ==&lt;br /&gt;
Depending on the [[Settings#AR_settings|NFC Scan Result Type]] setting, {{UBIK}} can extract different types of information from a scanned RFID tag:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! NFC Scan Result Type !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Identifier (Hexadecimal) {{Version/AndroidSince|2.4.2}} || Extracts the write-protected identifier of a scanned tag in hexadecimal form. The identifier is given by the manufacturer and can´t be manipulated. &lt;br /&gt;
|-&lt;br /&gt;
| Content (Hexadecimal) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in hexadecimal form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (ASCII) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in ASCII form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (NDEF) {{Version/AndroidSince|3.0.0}} || Extracts NDEF messages of type &amp;quot;Text&amp;quot; or &amp;quot;text/plain&amp;quot; from a scanned tag. Not supported on the Getac Z710.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Configurable start screen RFID button ==&lt;br /&gt;
&lt;br /&gt;
In order to use this feature, a RFID scanning entry point is provided using a [[HowTo:Configure_Start_Screen_Content#Buttons|configurable start start screen button]]. &lt;br /&gt;
The following xml shows an example start screen configuration including RFID scanning entry point: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;StartScreenConfiguration&amp;gt;&lt;br /&gt;
 	    &amp;lt;Tab caption=&amp;quot;Content&amp;quot;&amp;gt;&lt;br /&gt;
	      &amp;lt;ContentBrowserButton caption=&amp;quot;Content Browser&amp;quot;/&amp;gt;&lt;br /&gt;
	      &amp;lt;RFIDScanButton caption=&amp;quot;RFID Scan&amp;quot; /&amp;gt;&lt;br /&gt;
	    &amp;lt;/Tab&amp;gt;&lt;br /&gt;
	  &amp;lt;/StartScreenConfiguration&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:rfid_button_on_startscreen.jpg|thumb|alt=RFID button on Start Screen|RFID button on Start Screen]]&lt;br /&gt;
[[File:Scanning.jpg|thumb|alt=Scanning for RFID tag|Scanning for RFID tag]]&lt;br /&gt;
Once the RFID button in the start screen is clicked, the corresponding RFID scanner starts. The user is then able to scan RFID tags continuously.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:Scanned_searching.jpg|thumb|alt=Searching for Objects|Searching for Objects]]&lt;br /&gt;
[[File:Scanned_search_result.jpg|thumb|alt=Displaying Objects|Displaying Objects]]&lt;br /&gt;
[[File:Scanned_no_result.jpg|thumb|alt=No corresponding Objects|No corresponding Objects]]&lt;br /&gt;
Once the ID of the tag is scanned, {{UBIK}} starts searching for objects with the scanned RFID.&lt;br /&gt;
# During the search, the list might show a searching text before any objects are found;&lt;br /&gt;
# If any objects are found, they will be displayed in a  list. The users can then browse to any of the objects for more information by clicking on the objects;&lt;br /&gt;
# If no objects are found, the list will show a corresponding text.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
== Searching Mechanism ==&lt;br /&gt;
&lt;br /&gt;
{{UBIK}} provides two mechanisms for searching objects: [[Sync Mode#Possible sync modes|online and offline]].&lt;br /&gt;
&lt;br /&gt;
=== Searching offline ===&lt;br /&gt;
&lt;br /&gt;
In any case (regardless of the network connection and [[Sync Mode|sync mode]]), {{UBIK}} always goes through all the objects currently available on the device and find the ones that match the scanned results.&lt;br /&gt;
&lt;br /&gt;
=== Searching online ===&lt;br /&gt;
&lt;br /&gt;
When the Internet is available and {{UBIK}} is not running under offline mode, the search result is enhanced by online search. This means any objects that match the scanned results can be found even if they don't yet exist locally.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Technical background ==&lt;br /&gt;
&lt;br /&gt;
In order for objects to be identifiable through RFID, they have to carry the [[SYSCLS OBJECTWITHRFIDTAG]] classification.&lt;br /&gt;
&lt;br /&gt;
The service query used for online searching is [[SYSCLS RFIDTAGSCANQUERY]].&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SYSCLS OBJECTWITHRFIDTAG]]&lt;br /&gt;
* [[SYSCLS RFIDTAGSCANQUERY]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Category/Version|2.4.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= WinX Internal Scanner =&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/WinX|2.5.4}}.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
* NfcA (RFID standard: ISO-14443A)&lt;br /&gt;
* NfcB (RFID standard: ISO-14443B)&lt;br /&gt;
* NfcV (RFID standard: ISO-15693) &lt;br /&gt;
&lt;br /&gt;
{{UBIK}} WinX scans these tags for a NDEF message. Tags which are not NDEF formatted are not supported by the WinX client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:NFCScanButton.PNG|thumb|alt=Scanning for NFC tag|Scanning for NFC tag]]&lt;br /&gt;
A NFC Scan button is shown in the Global App Bar if the device is capable of scanning NFC tags. Pressing the NFC Scan button enables/disables NFC scanning throughout the whole application. That means once the NFC scanning is activated, one can use the application just as usually while {{UBIK}} scans for NFC tags in the background. &lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:NoObjectFound.PNG|thumb|alt=No object found message |No object found message]]&lt;br /&gt;
[[File:SearchResultSelectorDialog.PNG|thumb|alt=Multiple search results dialog|Multiple search results dialog]]&lt;br /&gt;
Once a tag is successfully scanned, an object search is executed based on the tag´s NDEF message.&lt;br /&gt;
# if no objects are found a message is poping up at the right side of the screen.&lt;br /&gt;
# if more than one object is found the results are represented in a dialog along with their matching probability. One can than select one object that should be opened in the content browser.&lt;br /&gt;
# if exactly one object is found, this object is directly opened in the content browser.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
= WinX External Scanner =&lt;br /&gt;
&lt;br /&gt;
Since {{Version/WinX|3.6.0}} it is possible to use external Bluetooth RFID Readers for Scanning RFID Tags. &lt;br /&gt;
&lt;br /&gt;
== Preliminaries ==&lt;br /&gt;
&lt;br /&gt;
To use an external Bluetooth RFID Reader within {{UBIK}}, the device has to be brought into the Bluetooth SPP (Serial Port Profile) Mode first. Check the manual of the device on how to do that. Once SPP is active, the reader has to be paired with the {{UBIK}} host device. Afterwards it can be used for scanning RFID Tags.&lt;br /&gt;
&lt;br /&gt;
== RFID Configuration File ==&lt;br /&gt;
&lt;br /&gt;
Information needed for communicating with an external Bluetooth RFID Reader are stored in a &amp;quot;.rfconfig file&amp;quot;. This file has to be placed in the local RFIDConfiguration folder: ''{AppData}\LocalState\RFIDConfiguration\.rfconfig''. The name of the &amp;quot;.rfconfig&amp;quot; file is irrelevant. The configuration file contains the following information:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Information !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| ScannerIdentifier || String || The Bluetooth Name of the RFID Scanner.&lt;br /&gt;
|-&lt;br /&gt;
| DefaultScanning || Boolean (true,false)|| Specifies wheter scanning is active as default or not.&lt;br /&gt;
|-&lt;br /&gt;
| IgnoreReply || Boolean (true,false) || Some Scanners might send reply messages once a Blue-tooth Command was applied. If IgnoreReply is set to true, these messages aren´t used for further processing.&lt;br /&gt;
|-&lt;br /&gt;
| Substring || String of format: x,y || Extracts a substring of the scanned RFID Tag for further processing. x…index of the first character y… length of the substring&lt;br /&gt;
|-&lt;br /&gt;
| Replace || String of format: x,y || Replaces a character of the scanned RFID Tag for further processing. x…old character y…new character&lt;br /&gt;
|-&lt;br /&gt;
| StartCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is started. &lt;br /&gt;
|-&lt;br /&gt;
| ScanningCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when a Tag got scanned.&lt;br /&gt;
|-&lt;br /&gt;
| StopCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is stoped.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The ScannerIdentifier is typically the Bluetooth Name of the RFID Scanner. In some cases however it might deviate from the Bluetooth Name. The correct ScannerIdentifier can the be found in “Windows Settings&amp;gt;Devices and Printers&amp;gt;Right click on the Bluetooth Device&amp;gt;Properties&amp;gt;Services”.&lt;br /&gt;
Bluetooth Commands are ASCII Strings which can be send to the RFID Reader in the SPP Mode in order to configure the device. These commands can be found in the documentation of the respective RFID Reader. Often they are terminated with a stop character like “\r”.&lt;br /&gt;
An example of an .rfconfig file is given below. Note that elements of the configuration file have to be ordered alphabetically.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;RFIDConfiguration&lt;br /&gt;
xmlns=&amp;quot;UBIK.AR.RFID&amp;quot;&lt;br /&gt;
xmlns:i=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
xmlns:a=&amp;quot;http://schemas.microsoft.com/2003/10/Serialization/Arrays&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;DefaultScanning&amp;gt;true&amp;lt;/DefaultScanning&amp;gt;&lt;br /&gt;
        &amp;lt;IgnoreReply&amp;gt;true&amp;lt;/IgnoreReply&amp;gt;&lt;br /&gt;
        &amp;lt;Replace&amp;gt;),=&amp;lt;/Replace&amp;gt;&lt;br /&gt;
        &amp;lt;ScannerIdentifier&amp;gt;RNI-SPP&amp;lt;/ScannerIdentifier&amp;gt;&lt;br /&gt;
        &amp;lt;ScanningCommands&amp;gt;&amp;lt;/ScanningCommands&amp;gt;        &lt;br /&gt;
        &amp;lt;StartCommands&amp;gt;&lt;br /&gt;
		&amp;lt;a:string&amp;gt;bs\r&amp;lt;/a:string&amp;gt;  &lt;br /&gt;
                &amp;lt;a:string&amp;gt;cw 04,00\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
                &amp;lt;a:string&amp;gt;cw 0E,01\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
        &amp;lt;/StartCommands&amp;gt;        &lt;br /&gt;
        &amp;lt;StopCommands&amp;gt;&lt;br /&gt;
		&amp;lt;a:string&amp;gt;bh\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
        &amp;lt;/StopCommands&amp;gt;&lt;br /&gt;
        &amp;lt;Substring&amp;gt;0,15&amp;lt;/Substring&amp;gt;&lt;br /&gt;
&amp;lt;/RFIDConfiguration&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start Scanning ==&lt;br /&gt;
&lt;br /&gt;
There are two possibilities to start scanning using the configured RFID Reader: Either scanning is active per default (see RFID Configuration) or by pressing the RFID Scan button in the GlobalAppBar. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:NotConnected.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When pressing the RFID Scan button UBIK tries to establish a Bluetooth connection to the RFID Reader. This is indicated by a Progress Ring on top of the RFID Scan button. If no connection could be established, the RFID Scan button falls back to its original state.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Connecting.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a connection was successful, the RFID Scan button appears toggled. Afterwards the StartCommands of the RFID Configuration are applied and UBIK starts to listen for Messages from the Bluetooth RFID Reader. That means one can use the application just as usually while UBIK® scans for RFID Tags in the background.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Connected.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Scanning ==&lt;br /&gt;
&lt;br /&gt;
Once scanning was successfully started as described above, UBIK is continuously listening for new Messages from the RFID Reader. When a RFID Tag gets scanned, the result is received and manipulated based on the RFID Configuration. If the Substring option is configured properly, a substring of the Message is extracted and used for further processing. If the Replace option is configured properly specified characters are replaced. Afterwards processing an action is triggered for the received Message. If a string editor is currently opened, the Message is written into the property field of the editor (Teach-In). Otherwise an object search is triggered. UBIK is then searching for Objects classified as [[SYSCLS_OBJECTWITHRFIDTAG]] having the scanned content as the RFIDTag property value. Finally the ScanningCommands defined in the RFID Configuration are applied. &lt;br /&gt;
&lt;br /&gt;
== Stop Scanning ==&lt;br /&gt;
&lt;br /&gt;
Scanning can be stopped manually by pressing the RFID Scan button in the GlobalAppBar or simply by switching off the RFID Reader. UBIK will notice the device got disconnected and will indicate so using the RFID Scan button state. If the RFID Reader is disconnected by pressing the RFID Scan button manually, StopCommands defined in the RFID Configuration are applied.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
The RFID Scan Button is not visible. Check the following:&lt;br /&gt;
* Is there a .rfconfig file in the specified RFIDConfiguration folder?&lt;br /&gt;
* Is the .rfconfig file formatted properly?&lt;br /&gt;
* Are the elements of the .rfconfig file ordered alphabetically?&lt;br /&gt;
* Are the elements of the .rfconfig file of the correct type?&lt;br /&gt;
* Is the RFID Reader running in Bluetooth SPP Mode?&lt;br /&gt;
* Is the RFID Reader paired with the host device?&lt;br /&gt;
* In the .rfconfig file, does the specified ScannerIdentifier match the Bluetooth name of the RFID Reader?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Its not possible to start scanning. Check the following:&lt;br /&gt;
* Is the RFID Reader on and in the proximity of the host device?&lt;br /&gt;
* Try to restart scanning by again pressing the button&lt;br /&gt;
* Try to restart the RFID Reader&lt;br /&gt;
* Try to restart UBIK&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
UBIK does not find any RFID Objects. Check the following:&lt;br /&gt;
* Is the RFID Reader properly configured (Some readers need to get pre-configured using Bluetooth Commands in order to send scanned RFID Tags to UBIK – Check the manual)&lt;br /&gt;
* Try to open a String editor and scan a RFID Tag. Is the scanned message as expected?&lt;br /&gt;
* Are the Objects of interest classified as SYSCLS_OBJECTWITHRFIDCODE?&lt;br /&gt;
* Are the Objects of interest properly configured (property value equals the associated RFID Tag)?&lt;br /&gt;
* If no Online Query is defined, are the Objects of interest available locally?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:2.4.0|RFID tags]]&lt;br /&gt;
[[Category:Android|RFID tags]]&lt;br /&gt;
[[Category:Version 2.5|RFID tags]]&lt;br /&gt;
[[Category:Version 3.0|RFID tags]]&lt;br /&gt;
[[Category:WinX|RFID tags]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21495</id>
		<title>RFID tags</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21495"/>
				<updated>2019-07-31T12:04:45Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* WinX External Scanner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Android =&lt;br /&gt;
&lt;br /&gt;
In order for the users to find objects more efficiently, {{UBIK}} objects can be marked with values for RFID codes. Whenever a user scans an RFID code, the resulting code value can be used to find all matching objects, namely objects that have the [[#Technical_background|right property]].&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/Android|2.4.2}}.&lt;br /&gt;
&lt;br /&gt;
== Introduction: RFID &amp;amp; NFC ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Near_field_communication NFC] stands for &amp;quot;Near Field Communication&amp;quot; and is a set of ideas and technologies for data transfer between devices, typically in close distances.&lt;br /&gt;
Technically, it is based on [http://en.wikipedia.org/wiki/Radio-frequency_identification RFID] (&amp;quot;Radio-Frequency Identification&amp;quot;), which describes specific technical solutions.&lt;br /&gt;
&lt;br /&gt;
Amongst the use cases for NFC, there is communication between smartphones and other devices, but also the scanning of RFID tags.&lt;br /&gt;
&lt;br /&gt;
The {{UBIK}} RFID scanning feature specifically is the ability to scan RFID tags in order to identify {{UBIK}} objects.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;75%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Standard!! Tested Tag technologies&lt;br /&gt;
|-&lt;br /&gt;
| NfcA (RFID standard: ISO-14443A) {{Version/AndroidSince|2.4.2}} || EV1(MFOUL11), NTAG 216, NTAG 210, NTAG 213&lt;br /&gt;
|-&lt;br /&gt;
| NfcB (RFID standard: ISO-14443B) {{Version/AndroidSince|2.4.5}} || -&lt;br /&gt;
|-&lt;br /&gt;
| NfcV (RFID standard: ISO-15693) {{Version/AndroidSince|2.4.5}} || ICode SLIX(SL2S2002), ICode SLI(SL2ICS20)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NFC Scan Result Type ==&lt;br /&gt;
Depending on the [[Settings#AR_settings|NFC Scan Result Type]] setting, {{UBIK}} can extract different types of information from a scanned RFID tag:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! NFC Scan Result Type !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Identifier (Hexadecimal) {{Version/AndroidSince|2.4.2}} || Extracts the write-protected identifier of a scanned tag in hexadecimal form. The identifier is given by the manufacturer and can´t be manipulated. &lt;br /&gt;
|-&lt;br /&gt;
| Content (Hexadecimal) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in hexadecimal form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (ASCII) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in ASCII form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (NDEF) {{Version/AndroidSince|3.0.0}} || Extracts NDEF messages of type &amp;quot;Text&amp;quot; or &amp;quot;text/plain&amp;quot; from a scanned tag. Not supported on the Getac Z710.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Configurable start screen RFID button ==&lt;br /&gt;
&lt;br /&gt;
In order to use this feature, a RFID scanning entry point is provided using a [[HowTo:Configure_Start_Screen_Content#Buttons|configurable start start screen button]]. &lt;br /&gt;
The following xml shows an example start screen configuration including RFID scanning entry point: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;StartScreenConfiguration&amp;gt;&lt;br /&gt;
 	    &amp;lt;Tab caption=&amp;quot;Content&amp;quot;&amp;gt;&lt;br /&gt;
	      &amp;lt;ContentBrowserButton caption=&amp;quot;Content Browser&amp;quot;/&amp;gt;&lt;br /&gt;
	      &amp;lt;RFIDScanButton caption=&amp;quot;RFID Scan&amp;quot; /&amp;gt;&lt;br /&gt;
	    &amp;lt;/Tab&amp;gt;&lt;br /&gt;
	  &amp;lt;/StartScreenConfiguration&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:rfid_button_on_startscreen.jpg|thumb|alt=RFID button on Start Screen|RFID button on Start Screen]]&lt;br /&gt;
[[File:Scanning.jpg|thumb|alt=Scanning for RFID tag|Scanning for RFID tag]]&lt;br /&gt;
Once the RFID button in the start screen is clicked, the corresponding RFID scanner starts. The user is then able to scan RFID tags continuously.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:Scanned_searching.jpg|thumb|alt=Searching for Objects|Searching for Objects]]&lt;br /&gt;
[[File:Scanned_search_result.jpg|thumb|alt=Displaying Objects|Displaying Objects]]&lt;br /&gt;
[[File:Scanned_no_result.jpg|thumb|alt=No corresponding Objects|No corresponding Objects]]&lt;br /&gt;
Once the ID of the tag is scanned, {{UBIK}} starts searching for objects with the scanned RFID.&lt;br /&gt;
# During the search, the list might show a searching text before any objects are found;&lt;br /&gt;
# If any objects are found, they will be displayed in a  list. The users can then browse to any of the objects for more information by clicking on the objects;&lt;br /&gt;
# If no objects are found, the list will show a corresponding text.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
== Searching Mechanism ==&lt;br /&gt;
&lt;br /&gt;
{{UBIK}} provides two mechanisms for searching objects: [[Sync Mode#Possible sync modes|online and offline]].&lt;br /&gt;
&lt;br /&gt;
=== Searching offline ===&lt;br /&gt;
&lt;br /&gt;
In any case (regardless of the network connection and [[Sync Mode|sync mode]]), {{UBIK}} always goes through all the objects currently available on the device and find the ones that match the scanned results.&lt;br /&gt;
&lt;br /&gt;
=== Searching online ===&lt;br /&gt;
&lt;br /&gt;
When the Internet is available and {{UBIK}} is not running under offline mode, the search result is enhanced by online search. This means any objects that match the scanned results can be found even if they don't yet exist locally.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Technical background ==&lt;br /&gt;
&lt;br /&gt;
In order for objects to be identifiable through RFID, they have to carry the [[SYSCLS OBJECTWITHRFIDTAG]] classification.&lt;br /&gt;
&lt;br /&gt;
The service query used for online searching is [[SYSCLS RFIDTAGSCANQUERY]].&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SYSCLS OBJECTWITHRFIDTAG]]&lt;br /&gt;
* [[SYSCLS RFIDTAGSCANQUERY]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Category/Version|2.4.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= WinX Internal Scanner =&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/WinX|2.5.4}}.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
* NfcA (RFID standard: ISO-14443A)&lt;br /&gt;
* NfcB (RFID standard: ISO-14443B)&lt;br /&gt;
* NfcV (RFID standard: ISO-15693) &lt;br /&gt;
&lt;br /&gt;
{{UBIK}} WinX scans these tags for a NDEF message. Tags which are not NDEF formatted are not supported by the WinX client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:NFCScanButton.PNG|thumb|alt=Scanning for NFC tag|Scanning for NFC tag]]&lt;br /&gt;
A NFC Scan button is shown in the Global App Bar if the device is capable of scanning NFC tags. Pressing the NFC Scan button enables/disables NFC scanning throughout the whole application. That means once the NFC scanning is activated, one can use the application just as usually while {{UBIK}} scans for NFC tags in the background. &lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:NoObjectFound.PNG|thumb|alt=No object found message |No object found message]]&lt;br /&gt;
[[File:SearchResultSelectorDialog.PNG|thumb|alt=Multiple search results dialog|Multiple search results dialog]]&lt;br /&gt;
Once a tag is successfully scanned, an object search is executed based on the tag´s NDEF message.&lt;br /&gt;
# if no objects are found a message is poping up at the right side of the screen.&lt;br /&gt;
# if more than one object is found the results are represented in a dialog along with their matching probability. One can than select one object that should be opened in the content browser.&lt;br /&gt;
# if exactly one object is found, this object is directly opened in the content browser.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
= WinX External Scanner =&lt;br /&gt;
&lt;br /&gt;
Since {{Version/WinX|3.6.0}} it is possible to use external Bluetooth RFID Readers for Scanning RFID Tags. &lt;br /&gt;
&lt;br /&gt;
== Preliminaries ==&lt;br /&gt;
&lt;br /&gt;
To use an external Bluetooth RFID Reader within {{UBIK}}, the device has to be brought into the Bluetooth SPP (Serial Port Profile) Mode first. Check the manual of the device on how to do that. Once SPP is active, the reader has to be paired with the {{UBIK}} host device. Afterwards it can be used for scanning RFID Tags.&lt;br /&gt;
&lt;br /&gt;
== RFID Configuration File ==&lt;br /&gt;
&lt;br /&gt;
Information needed for communicating with an external Bluetooth RFID Reader are stored in a &amp;quot;.rfconfig file&amp;quot;. This file has to be placed in the local RFIDConfiguration folder: ''{AppData}\LocalState\RFIDConfiguration\.rfconfig''. The name of the &amp;quot;.rfconfig&amp;quot; file is irrelevant. The configuration file contains the following information:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Information !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| ScannerIdentifier || String || The Bluetooth Name of the RFID Scanner.&lt;br /&gt;
|-&lt;br /&gt;
| DefaultScanning || Boolean (true,false)|| Specifies wheter scanning is active as default or not.&lt;br /&gt;
|-&lt;br /&gt;
| IgnoreReply || Boolean (true,false) || Some Scanners might send reply messages once a Blue-tooth Command was applied. If IgnoreReply is set to true, these messages aren´t used for further processing.&lt;br /&gt;
|-&lt;br /&gt;
| Substring || String of format: x,y || Extracts a substring of the scanned RFID Tag for further processing. x…index of the first character y… length of the substring&lt;br /&gt;
|-&lt;br /&gt;
| Replace || String of format: x,y || Replaces a character of the scanned RFID Tag for further processing. x…old character y…new character&lt;br /&gt;
|-&lt;br /&gt;
| StartCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is started. &lt;br /&gt;
|-&lt;br /&gt;
| ScanningCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when a Tag got scanned.&lt;br /&gt;
|-&lt;br /&gt;
| StopCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is stoped.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The ScannerIdentifier is typically the Bluetooth Name of the RFID Scanner. In some cases however it might deviate from the Bluetooth Name. The correct ScannerIdentifier can the be found in “Windows Settings&amp;gt;Devices and Printers&amp;gt;Right click on the Bluetooth Device&amp;gt;Properties&amp;gt;Services”.&lt;br /&gt;
Bluetooth Commands are ASCII Strings which can be send to the RFID Reader in the SPP Mode in order to configure the device. These commands can be found in the documentation of the respective RFID Reader. Often they are terminated with a stop character like “\r”.&lt;br /&gt;
An example of an .rfconfig file is given below. Note that elements of the configuration file have to be ordered alphabetically.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;RFIDConfiguration&lt;br /&gt;
xmlns=&amp;quot;UBIK.AR.RFID&amp;quot;&lt;br /&gt;
xmlns:i=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
xmlns:a=&amp;quot;http://schemas.microsoft.com/2003/10/Serialization/Arrays&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;DefaultScanning&amp;gt;true&amp;lt;/DefaultScanning&amp;gt;&lt;br /&gt;
        &amp;lt;IgnoreReply&amp;gt;true&amp;lt;/IgnoreReply&amp;gt;&lt;br /&gt;
        &amp;lt;ScannerIdentifier&amp;gt;RNI-SPP&amp;lt;/ScannerIdentifier&amp;gt;&lt;br /&gt;
        &amp;lt;Replace&amp;gt;),=&amp;lt;/Replace&amp;gt;&lt;br /&gt;
        &amp;lt;StartCommands&amp;gt;&lt;br /&gt;
		&amp;lt;a:string&amp;gt;bs\r&amp;lt;/a:string&amp;gt;  &lt;br /&gt;
                &amp;lt;a:string&amp;gt;cw 04,00\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
                &amp;lt;a:string&amp;gt;cw 0E,01\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
        &amp;lt;/StartCommands&amp;gt;&lt;br /&gt;
        &amp;lt;Substring&amp;gt;0,15&amp;lt;/Substring&amp;gt;&lt;br /&gt;
        &amp;lt;ScanningCommands&amp;gt;&amp;lt;/ScanningCommands&amp;gt;&lt;br /&gt;
        &amp;lt;StopCommands&amp;gt;&lt;br /&gt;
		&amp;lt;a:string&amp;gt;bh\r&amp;lt;/a:string&amp;gt;&lt;br /&gt;
        &amp;lt;/StopCommands&amp;gt;&lt;br /&gt;
&amp;lt;/RFIDConfiguration&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start Scanning ==&lt;br /&gt;
&lt;br /&gt;
There are two possibilities to start scanning using the configured RFID Reader: Either scanning is active per default (see RFID Configuration) or by pressing the RFID Scan button in the GlobalAppBar. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:NotConnected.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When pressing the RFID Scan button UBIK tries to establish a Bluetooth connection to the RFID Reader. This is indicated by a Progress Ring on top of the RFID Scan button. If no connection could be established, the RFID Scan button falls back to its original state.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Connecting.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a connection was successful, the RFID Scan button appears toggled. Afterwards the StartCommands of the RFID Configuration are applied and UBIK starts to listen for Messages from the Bluetooth RFID Reader. That means one can use the application just as usually while UBIK® scans for RFID Tags in the background.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Connected.PNG]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Scanning ==&lt;br /&gt;
&lt;br /&gt;
Once scanning was successfully started as described above, UBIK is continuously listening for new Messages from the RFID Reader. When a RFID Tag gets scanned, the result is received and manipulated based on the RFID Configuration. If the Substring option is configured properly, a substring of the Message is extracted and used for further processing. If the Replace option is configured properly specified characters are replaced. Afterwards processing an action is triggered for the received Message. If a string editor is currently opened, the Message is written into the property field of the editor (Teach-In). Otherwise an object search is triggered. UBIK is then searching for Objects classified as [[SYSCLS_OBJECTWITHRFIDTAG]] having the scanned content as the RFIDTag property value. Finally the ScanningCommands defined in the RFID Configuration are applied. &lt;br /&gt;
&lt;br /&gt;
== Stop Scanning ==&lt;br /&gt;
&lt;br /&gt;
Scanning can be stopped manually by pressing the RFID Scan button in the GlobalAppBar or simply by switching off the RFID Reader. UBIK will notice the device got disconnected and will indicate so using the RFID Scan button state. If the RFID Reader is disconnected by pressing the RFID Scan button manually, StopCommands defined in the RFID Configuration are applied.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
The RFID Scan Button is not visible. Check the following:&lt;br /&gt;
* Is there a .rfconfig file in the specified RFIDConfiguration folder?&lt;br /&gt;
* Is the .rfconfig file formatted properly?&lt;br /&gt;
* Are the elements of the .rfconfig file ordered alphabetically?&lt;br /&gt;
* Are the elements of the .rfconfig file of the correct type?&lt;br /&gt;
* Is the RFID Reader running in Bluetooth SPP Mode?&lt;br /&gt;
* Is the RFID Reader paired with the host device?&lt;br /&gt;
* In the .rfconfig file, does the specified ScannerIdentifier match the Bluetooth name of the RFID Reader?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Its not possible to start scanning. Check the following:&lt;br /&gt;
* Is the RFID Reader on and in the proximity of the host device?&lt;br /&gt;
* Try to restart scanning by again pressing the button&lt;br /&gt;
* Try to restart the RFID Reader&lt;br /&gt;
* Try to restart UBIK&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
UBIK does not find any RFID Objects. Check the following:&lt;br /&gt;
* Is the RFID Reader properly configured (Some readers need to get pre-configured using Bluetooth Commands in order to send scanned RFID Tags to UBIK – Check the manual)&lt;br /&gt;
* Try to open a String editor and scan a RFID Tag. Is the scanned message as expected?&lt;br /&gt;
* Are the Objects of interest classified as SYSCLS_OBJECTWITHRFIDCODE?&lt;br /&gt;
* Are the Objects of interest properly configured (property value equals the associated RFID Tag)?&lt;br /&gt;
* If no Online Query is defined, are the Objects of interest available locally?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:2.4.0|RFID tags]]&lt;br /&gt;
[[Category:Android|RFID tags]]&lt;br /&gt;
[[Category:Version 2.5|RFID tags]]&lt;br /&gt;
[[Category:Version 3.0|RFID tags]]&lt;br /&gt;
[[Category:WinX|RFID tags]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=File:Connected.PNG&amp;diff=21494</id>
		<title>File:Connected.PNG</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=File:Connected.PNG&amp;diff=21494"/>
				<updated>2019-07-31T11:56:46Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=File:Connecting.PNG&amp;diff=21493</id>
		<title>File:Connecting.PNG</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=File:Connecting.PNG&amp;diff=21493"/>
				<updated>2019-07-31T11:51:15Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=File:NotConnected.PNG&amp;diff=21492</id>
		<title>File:NotConnected.PNG</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=File:NotConnected.PNG&amp;diff=21492"/>
				<updated>2019-07-31T11:50:53Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21491</id>
		<title>RFID tags</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=RFID_tags&amp;diff=21491"/>
				<updated>2019-07-31T11:41:08Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Android =&lt;br /&gt;
&lt;br /&gt;
In order for the users to find objects more efficiently, {{UBIK}} objects can be marked with values for RFID codes. Whenever a user scans an RFID code, the resulting code value can be used to find all matching objects, namely objects that have the [[#Technical_background|right property]].&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/Android|2.4.2}}.&lt;br /&gt;
&lt;br /&gt;
== Introduction: RFID &amp;amp; NFC ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Near_field_communication NFC] stands for &amp;quot;Near Field Communication&amp;quot; and is a set of ideas and technologies for data transfer between devices, typically in close distances.&lt;br /&gt;
Technically, it is based on [http://en.wikipedia.org/wiki/Radio-frequency_identification RFID] (&amp;quot;Radio-Frequency Identification&amp;quot;), which describes specific technical solutions.&lt;br /&gt;
&lt;br /&gt;
Amongst the use cases for NFC, there is communication between smartphones and other devices, but also the scanning of RFID tags.&lt;br /&gt;
&lt;br /&gt;
The {{UBIK}} RFID scanning feature specifically is the ability to scan RFID tags in order to identify {{UBIK}} objects.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;75%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Standard!! Tested Tag technologies&lt;br /&gt;
|-&lt;br /&gt;
| NfcA (RFID standard: ISO-14443A) {{Version/AndroidSince|2.4.2}} || EV1(MFOUL11), NTAG 216, NTAG 210, NTAG 213&lt;br /&gt;
|-&lt;br /&gt;
| NfcB (RFID standard: ISO-14443B) {{Version/AndroidSince|2.4.5}} || -&lt;br /&gt;
|-&lt;br /&gt;
| NfcV (RFID standard: ISO-15693) {{Version/AndroidSince|2.4.5}} || ICode SLIX(SL2S2002), ICode SLI(SL2ICS20)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NFC Scan Result Type ==&lt;br /&gt;
Depending on the [[Settings#AR_settings|NFC Scan Result Type]] setting, {{UBIK}} can extract different types of information from a scanned RFID tag:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! NFC Scan Result Type !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Identifier (Hexadecimal) {{Version/AndroidSince|2.4.2}} || Extracts the write-protected identifier of a scanned tag in hexadecimal form. The identifier is given by the manufacturer and can´t be manipulated. &lt;br /&gt;
|-&lt;br /&gt;
| Content (Hexadecimal) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in hexadecimal form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (ASCII) {{Version/AndroidSince|3.0.0}} || Extracts the raw content of a scanned tag in ASCII form. Not supported on the Getac Z710. NfcB tags are not supported.&lt;br /&gt;
|-&lt;br /&gt;
| Content (NDEF) {{Version/AndroidSince|3.0.0}} || Extracts NDEF messages of type &amp;quot;Text&amp;quot; or &amp;quot;text/plain&amp;quot; from a scanned tag. Not supported on the Getac Z710.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Configurable start screen RFID button ==&lt;br /&gt;
&lt;br /&gt;
In order to use this feature, a RFID scanning entry point is provided using a [[HowTo:Configure_Start_Screen_Content#Buttons|configurable start start screen button]]. &lt;br /&gt;
The following xml shows an example start screen configuration including RFID scanning entry point: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;StartScreenConfiguration&amp;gt;&lt;br /&gt;
 	    &amp;lt;Tab caption=&amp;quot;Content&amp;quot;&amp;gt;&lt;br /&gt;
	      &amp;lt;ContentBrowserButton caption=&amp;quot;Content Browser&amp;quot;/&amp;gt;&lt;br /&gt;
	      &amp;lt;RFIDScanButton caption=&amp;quot;RFID Scan&amp;quot; /&amp;gt;&lt;br /&gt;
	    &amp;lt;/Tab&amp;gt;&lt;br /&gt;
	  &amp;lt;/StartScreenConfiguration&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:rfid_button_on_startscreen.jpg|thumb|alt=RFID button on Start Screen|RFID button on Start Screen]]&lt;br /&gt;
[[File:Scanning.jpg|thumb|alt=Scanning for RFID tag|Scanning for RFID tag]]&lt;br /&gt;
Once the RFID button in the start screen is clicked, the corresponding RFID scanner starts. The user is then able to scan RFID tags continuously.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:Scanned_searching.jpg|thumb|alt=Searching for Objects|Searching for Objects]]&lt;br /&gt;
[[File:Scanned_search_result.jpg|thumb|alt=Displaying Objects|Displaying Objects]]&lt;br /&gt;
[[File:Scanned_no_result.jpg|thumb|alt=No corresponding Objects|No corresponding Objects]]&lt;br /&gt;
Once the ID of the tag is scanned, {{UBIK}} starts searching for objects with the scanned RFID.&lt;br /&gt;
# During the search, the list might show a searching text before any objects are found;&lt;br /&gt;
# If any objects are found, they will be displayed in a  list. The users can then browse to any of the objects for more information by clicking on the objects;&lt;br /&gt;
# If no objects are found, the list will show a corresponding text.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
== Searching Mechanism ==&lt;br /&gt;
&lt;br /&gt;
{{UBIK}} provides two mechanisms for searching objects: [[Sync Mode#Possible sync modes|online and offline]].&lt;br /&gt;
&lt;br /&gt;
=== Searching offline ===&lt;br /&gt;
&lt;br /&gt;
In any case (regardless of the network connection and [[Sync Mode|sync mode]]), {{UBIK}} always goes through all the objects currently available on the device and find the ones that match the scanned results.&lt;br /&gt;
&lt;br /&gt;
=== Searching online ===&lt;br /&gt;
&lt;br /&gt;
When the Internet is available and {{UBIK}} is not running under offline mode, the search result is enhanced by online search. This means any objects that match the scanned results can be found even if they don't yet exist locally.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Technical background ==&lt;br /&gt;
&lt;br /&gt;
In order for objects to be identifiable through RFID, they have to carry the [[SYSCLS OBJECTWITHRFIDTAG]] classification.&lt;br /&gt;
&lt;br /&gt;
The service query used for online searching is [[SYSCLS RFIDTAGSCANQUERY]].&lt;br /&gt;
&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[SYSCLS OBJECTWITHRFIDTAG]]&lt;br /&gt;
* [[SYSCLS RFIDTAGSCANQUERY]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Category/Version|2.4.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= WinX Internal Scanner =&lt;br /&gt;
&lt;br /&gt;
This feature is available since {{Version/WinX|2.5.4}}.&lt;br /&gt;
&lt;br /&gt;
== Supported RFID Tags ==&lt;br /&gt;
&lt;br /&gt;
There are three types of RFID markers supported by {{UBIK}}:&lt;br /&gt;
* NfcA (RFID standard: ISO-14443A)&lt;br /&gt;
* NfcB (RFID standard: ISO-14443B)&lt;br /&gt;
* NfcV (RFID standard: ISO-15693) &lt;br /&gt;
&lt;br /&gt;
{{UBIK}} WinX scans these tags for a NDEF message. Tags which are not NDEF formatted are not supported by the WinX client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Scanning an RFID tag == &lt;br /&gt;
[[File:NFCScanButton.PNG|thumb|alt=Scanning for NFC tag|Scanning for NFC tag]]&lt;br /&gt;
A NFC Scan button is shown in the Global App Bar if the device is capable of scanning NFC tags. Pressing the NFC Scan button enables/disables NFC scanning throughout the whole application. That means once the NFC scanning is activated, one can use the application just as usually while {{UBIK}} scans for NFC tags in the background. &lt;br /&gt;
&lt;br /&gt;
== Presenting results of a search ==&lt;br /&gt;
[[File:NoObjectFound.PNG|thumb|alt=No object found message |No object found message]]&lt;br /&gt;
[[File:SearchResultSelectorDialog.PNG|thumb|alt=Multiple search results dialog|Multiple search results dialog]]&lt;br /&gt;
Once a tag is successfully scanned, an object search is executed based on the tag´s NDEF message.&lt;br /&gt;
# if no objects are found a message is poping up at the right side of the screen.&lt;br /&gt;
# if more than one object is found the results are represented in a dialog along with their matching probability. One can than select one object that should be opened in the content browser.&lt;br /&gt;
# if exactly one object is found, this object is directly opened in the content browser.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&lt;br /&gt;
= WinX External Scanner =&lt;br /&gt;
&lt;br /&gt;
Since {{Version/WinX|3.6.0}} it is possible to use external Bluetooth RFID Readers for Scanning RFID Tags. &lt;br /&gt;
&lt;br /&gt;
== Preliminaries ==&lt;br /&gt;
&lt;br /&gt;
To use an external Bluetooth RFID Reader within {{UBIK}}, the device has to be brought into the Bluetooth SPP (Serial Port Profile) Mode first. Check the manual of the device on how to do that. Once SPP is active, the reader has to be paired with the {{UBIK}} host device. Afterwards it can be used for scanning RFID Tags.&lt;br /&gt;
&lt;br /&gt;
== RFID Configuration File ==&lt;br /&gt;
Information needed for communicating with an external Bluetooth RFID Reader are stored in a &amp;quot;.rfconfig file&amp;quot;. This file has to be placed in the local RFIDConfiguration folder: ''{AppData}\LocalState\RFIDConfiguration\.rfconfig''. The name of the &amp;quot;.rfconfig&amp;quot; file is irrelevant. The configuration file contains the following information:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Information !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| ScannerIdentifier || String || The Bluetooth Name of the RFID Scanner.&lt;br /&gt;
|-&lt;br /&gt;
| DefaultScanning || Boolean (true,false)|| Specifies wheter scanning is active as default or not.&lt;br /&gt;
|-&lt;br /&gt;
| IgnoreReply || Boolean (true,false) || Some Scanners might send reply messages once a Blue-tooth Command was applied. If IgnoreReply is set to true, these messages aren´t used for further processing.&lt;br /&gt;
|-&lt;br /&gt;
| Substring || String of format: x,y || Extracts a substring of the scanned RFID Tag for further processing. x…index of the first character y… length of the substring&lt;br /&gt;
|-&lt;br /&gt;
| Replace || String of format: x,y || Replaces a character of the scanned RFID Tag for further processing. x…old character y…new character&lt;br /&gt;
|-&lt;br /&gt;
| StartCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is started. &lt;br /&gt;
|-&lt;br /&gt;
| ScanningCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when a Tag got scanned.&lt;br /&gt;
|-&lt;br /&gt;
| StopCommands || List of Strings || List of Bluetooth Commands that are send to the RFID Reader when scanning is stoped.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:2.4.0|RFID tags]]&lt;br /&gt;
[[Category:Android|RFID tags]]&lt;br /&gt;
[[Category:Version 2.5|RFID tags]]&lt;br /&gt;
[[Category:Version 3.0|RFID tags]]&lt;br /&gt;
[[Category:WinX|RFID tags]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21332</id>
		<title>Version 3.6 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21332"/>
				<updated>2019-05-13T10:41:26Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* Position and Orientation information of seperate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their probabilistic error levels using an Extended Kalman Filter. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.6|Version 3.6 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21331</id>
		<title>Version 3.6 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.6_(WinX)&amp;diff=21331"/>
				<updated>2019-05-13T10:40:56Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: Created page with &amp;quot;  = Initial Release = === New features === * Position and Orientation information of seperate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their p...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* Position and Orientation information of seperate source systems (GPS, Compass, AR-Markers, etc.) are now combined based on their probabilistic error levels using an Extended Kalman Filter. &lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21277</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21277"/>
				<updated>2019-04-30T07:18:40Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attention|There are breaking XAML template changes in this version. If you use any customized XAMLs from older versions, they should be updated according to [[XAML_Changes_in_UBIK_WinX_3.5|these instructions]]. }}&lt;br /&gt;
&lt;br /&gt;
= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
* You can now find comments on various type list members in the [[Developer_Mode|developer mode]]. This is an ongoing process and more comments will be added/improved after the release.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
* Scanning is now paused when the last search result dialog is still open for user interaction.&lt;br /&gt;
* Comma and dot are both accepted as decimal seperators when entering numbers, independent of the current culture.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
* Fixed an issue where it was not possible to return to Scan Page after scanning AR-Markers.&lt;br /&gt;
* Fixed an issue where the RFID(NFC) Scanner did not show a dialog window with more objects (when tag has targets two objects or more)&lt;br /&gt;
* Invalid characters in profile names are escaped/replaced and will no longer break the app.&lt;br /&gt;
* Fixed several UI issues in the Gantt chart control. For example, no longer displaying the current date line or the progress bar if it doesn't fall into the project timeline.&lt;br /&gt;
* Fixed an issue where the content page displays incorrect title/subtitle right after editing a Guid property using a query.&lt;br /&gt;
* Fixed an issue where the user can only browse to the same object once by scanning the QR code (unless a different marker is scanned).&lt;br /&gt;
* Fixed an issue where the &amp;quot;Manual&amp;quot; sync mode configured in profiles is ignored during logins.&lt;br /&gt;
* Fixed an issue where the toggling of fit-to-width mode for documents doesn't work (when Windows animation is enabled).&lt;br /&gt;
* Fixed an issue where the device position calculated from AR-Markers was wrong.&lt;br /&gt;
* Fixed an issue where POIs having a negative AR-Marker side length were not shown.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
* When using the UBIK contrast profile for OCR scanning, the app might crash especially if other marker scanning is also turned on.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-30&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21272</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21272"/>
				<updated>2019-04-29T11:45:50Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
* You can now find comments on various type list members in the [[Developer_Mode|developer mode]]. This is an ongoing process and more comments will be added/improved after the release.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
* Scanning is now paused when the last search result dialog is still open for user interaction.&lt;br /&gt;
* Comma and dot are both accepted as decimal seperators when entering numbers, independent of the current culture.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
* Fixed an issue where it was not possible to return to Scan Page after scanning AR-Markers.&lt;br /&gt;
* Fixed an issue where the RFID(NFC) Scanner did not show a dialog window with more objects (when tag has targets two objects or more)&lt;br /&gt;
* Invalid characters in profile names are escaped/replaced and will no longer break the app.&lt;br /&gt;
* Fixed several UI issues in the Gantt chart control. For example, no longer displaying the current date line or the progress bar if it doesn't fall into the project timeline.&lt;br /&gt;
* Fixed an issue where the content page displays incorrect title/subtitle right after editing a Guid property using a query.&lt;br /&gt;
* Fixed an issue where the user can only browse to the same object once by scanning the QR code (unless a different marker is scanned).&lt;br /&gt;
* Fixed an issue where the &amp;quot;Manual&amp;quot; sync mode configured in profiles is ignored during logins.&lt;br /&gt;
* Fixed an issue where the toggling of fit-to-width mode for documents doesn't work (when Windows animation is enabled).&lt;br /&gt;
* Fixed an issue where the device position calculated from AR-Markers was wrong.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
* When using the UBIK contrast profile for OCR scanning, the app might crash especially if other marker scanning is also turned on.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21264</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21264"/>
				<updated>2019-04-24T13:48:35Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
* Fixed an issue where it was not possible to return to Scan Page after scanning AR-Markers.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21260</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21260"/>
				<updated>2019-04-24T11:40:45Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
* Fixed an issue where camera flash toggle button was not updated when changing the camera.&lt;br /&gt;
* Fixed an issue where editor showed wrong content when Not Applicable was checked.&lt;br /&gt;
* Fixed an issue where the POI Page was not properly restored after UBIK was minimized.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21254</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21254"/>
				<updated>2019-04-18T13:42:01Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
* Fixed an issue where POIs were visible in the upper left corner of the POI Page if the near and far clipping plane were too close.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21253</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21253"/>
				<updated>2019-04-18T12:24:08Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
* Fixed an issue where AR-Marker POIs were blinking when they should have been behind the camera.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21252</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21252"/>
				<updated>2019-04-18T06:33:37Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
* Fixed an issue where the Geo Editor TeachIn ignored manual positions.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21251</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21251"/>
				<updated>2019-04-17T09:52:39Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
* Fixed an issue where POIs in the Map and POI Page were not updated once infrastructure objects were loaded.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21250</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21250"/>
				<updated>2019-04-17T08:26:38Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
* Fixed an issue where POIs were rendered upside down when having a negative ScaleX property.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21249</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21249"/>
				<updated>2019-04-16T06:58:43Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
* Fixed an issue where the HideOtherPOIs and ScreenOffset Settings had no effect on POI Rendering.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21247</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21247"/>
				<updated>2019-04-15T14:10:56Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
* Fixed an issue where POI poses were not updated once the Building Level or POI Groups changed.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21246</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21246"/>
				<updated>2019-04-15T13:32:13Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
* Fixed an issue where the POI Flyout Selection was reversed after exiting buildings.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21245</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21245"/>
				<updated>2019-04-15T11:01:57Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
* Fixed an issue where the distance on the POI Flyout was always zero for Geometries.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21244</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21244"/>
				<updated>2019-04-15T10:33:26Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
* Greatly improved the app's performance when loading PDF files with many pages. You might want to check [[XAML_Tips#FlipView|this]] out as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
* Fixed an issue where browsing through local content can be difficult (the content is shown after a substantial delay) when downloading large branches.&lt;br /&gt;
* Fixed an issue where branch download is sometimes interrupted by too many file downloading failures.&lt;br /&gt;
* Fixed an issue where file downloading events are sometimes not logged.&lt;br /&gt;
* Fixed an issue where the compass needle in the POI Page was not updated properly.&lt;br /&gt;
* Fixed an issue where POI Icons in the Map Page changed upon selection.&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.X on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21201</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21201"/>
				<updated>2019-03-20T12:17:05Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Enhancements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The Rendering Environment was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where the app completely hangs when loading large PDF files.&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.1 on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21198</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21198"/>
				<updated>2019-03-20T11:24:29Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
* Administrators can now configure the [[UBIK_WinX_Client_Basics#Fit_Mode|fit modes]] which determines how documents are initially displayed.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
* The problematic CollectionToViewConverter for content filtering is replaced by the new ListCollectionView. See [[XAML_Changes_in_UBIK_WinX_3.5]] for details.&lt;br /&gt;
* Users can now confirm and save their signature before the timer ends.&lt;br /&gt;
* The OK button will now stay disabled if there is no signature.&lt;br /&gt;
* Improved the way navigation history is maintained so that issues such as wrong navigation destinations upon leaving unsaved changes no longer occur.&lt;br /&gt;
* The [[Offline_Query_(UBIK_WinX)#String_criterion|string criteria of offline queries]] are now more restrictive (all sub strings must be found instead of just one).&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where the app completely hangs when loading large PDF files.&lt;br /&gt;
* Fixed an issue where POIs were only rendered in the upper half of the POIPage.&lt;br /&gt;
* Fixed an issue where OCR Shapes were rotated in the wrong direction.&lt;br /&gt;
* Fixed an issue where Child Informations were not shown in the POIFlyout of the Map Page.&lt;br /&gt;
* Fixed an issue where AR Settings were not applied when returning from the Settings to the POI Page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.1 on 2019-04-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=21192</id>
		<title>Version 3.4 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=21192"/>
				<updated>2019-03-19T15:44:25Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Build History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to render UBIK Content Objects in relation to multiple [[AR-Marker]]s.&lt;br /&gt;
* [[Mobile_Free_Text_Search_(UBIK_WinX)#Online_and_offline_search|Free text search]] results (online &amp;amp; offline) can now be presented together.&lt;br /&gt;
* Added visual feedbacks regarding the status and result of [[Mobile_Free_Text_Search_(UBIK_WinX)#Online_and_offline_search|free text searches]].&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Users can now install the app package without first installing a self-signed certificate since it is now signed by a certificate issued by a trusted root CA (Comodo RSA Certification Authority). See [[#Additional notes|additional notes]] for installing over existing {{UBIK}} versions.&lt;br /&gt;
* Obsolete/Deprecated Members in [[Developer Mode]] are now marked red and show their deprecation text as Tooltip, if existing &lt;br /&gt;
* Converters in [[Developer Mode]] now display their resource key in addition to the type name&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue where offline data cannot be loaded due to a localization issue (when saving timestamps into databases).&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
* When using the UBIK contrast profile for OCR scanning, the app might crash especially if other marker scanning is also turned on.&lt;br /&gt;
* If any character considered as illegal for Windows directories (e.g. /) is included in a profile's &amp;quot;Name&amp;quot; tag, UBIK will fail to load xamls and the UI will be messed up.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* Because the new app package is signed by a new/different certificate, the app package signature has changed (from AugmensysGmbH.UBIK.UWP_yh5qx508sp704 to AugmensysGmbH.UBIK.UWP_fe7j2dq5d2q76).&lt;br /&gt;
** If there is no existing {{UBIK}} installation on the device, this change will not concern you;&lt;br /&gt;
** If a previous version of {{UBIK}} is already installed, you won't be able to update it to 3.4 or later versions. Instead, a clean installation is require (uninstall and then install). Before doing that, you might want to backup your local data as well as profiles (can be found under [AppInstallPath]\LocalState and [AppInstallPath]\RoamingState respectively).&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.4.5 on 2018-12-10&lt;br /&gt;
** Initial release.&lt;br /&gt;
* 3.4.6 on 2018-12-10&lt;br /&gt;
** Fixed an issue where the ProgressCircle control is sometimes cut off partially.&lt;br /&gt;
* 3.4.10 on 2018-12-12&lt;br /&gt;
** Fixed an issue where the filtered (using the CollecionToViewConverter) property lists are sometimes not updated.&lt;br /&gt;
** Fixed a potential misbehavior of the search result dialog (when the web service does not provide online search capability).&lt;br /&gt;
* 3.4.12 on 2019-01-11&lt;br /&gt;
** Users can now customize whether the intermediate query dialog should show up or not when editing Guid properties. ([[UBIK_WinX_Client_Basics#Guid_editor|&amp;quot;SkipQueryDialog&amp;quot; in UBIKThemes.xaml]])&lt;br /&gt;
** Fixed an issue where the app navigates to the wrong page after query-based Guid editing finishes if one starts the editing from a child item.&lt;br /&gt;
* 3.4.13 on 2019-01-18&lt;br /&gt;
** Changed selection highlighting of SfSunburstExt control.&lt;br /&gt;
** Added new configuration property ''UBIKColorMemberPath'' for SfSunburstExt control to allow customization of Segment coloring through a property value.&lt;br /&gt;
** Customizers can now decide whether redlined documents should be opened in details (by passing True to the StartRedliningCommand in XAML customizings).&lt;br /&gt;
* 3.4.15 on 2019-02-25&lt;br /&gt;
** Bugfix SfSunburstExt segment coloring.&lt;br /&gt;
** Avoid crash on null content objects in SfSunburstExt.&lt;br /&gt;
* 3.4.17 on 2019-03-05&lt;br /&gt;
** Fixed an issue where file uploading fails sometimes.&lt;br /&gt;
* 3.4.19 on 2019-03-11&lt;br /&gt;
** In case multiple child picture types are configured, XAML customizers can now specify which one should be used for creation. (by adding the Guid of the wanted MetaClass as the CommandParameter of the CaptureMediaCommand)&lt;br /&gt;
* 3.4.20 on 2019-03-19&lt;br /&gt;
** Introduced a new filtering mechanism to smooth POIs placed far away from the related AR-Marker.&lt;br /&gt;
** The Map in the upper right corner of the POI Page can now be hidden using the POIPageMapVisibility Variable in the UBIKThemes.&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.4|Version 3.4 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.1_(Android)&amp;diff=21122</id>
		<title>Version 3.1 (Android)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.1_(Android)&amp;diff=21122"/>
				<updated>2019-01-17T08:37:32Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New Features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:600&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Version || {{UBIK}} Android Demo Release Date&lt;br /&gt;
|-  &lt;br /&gt;
| 3.1.0 || ?&lt;br /&gt;
|- &lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
= 3.1.0 =&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
* It is now possible to toggle the Camera´s Flashlight from the POI View.&lt;br /&gt;
* It is now possible to unlock multiple objects by scanning.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.1|Version 3.1 (Android)]]&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.1|Version 3.1 (Android)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.1_(Android)&amp;diff=21121</id>
		<title>Version 3.1 (Android)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.1_(Android)&amp;diff=21121"/>
				<updated>2019-01-17T08:22:07Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* 3.1.0 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:600&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Version || {{UBIK}} Android Demo Release Date&lt;br /&gt;
|-  &lt;br /&gt;
| 3.1.0 || ?&lt;br /&gt;
|- &lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
= 3.1.0 =&lt;br /&gt;
&lt;br /&gt;
=== New Features ===&lt;br /&gt;
* It is now possible to toggle the Camera´s Flashlight from the POI View.&lt;br /&gt;
* It is now possible to unlock a group of objects by scanning.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.1|Version 3.1 (Android)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=UBIK_Client_Basics&amp;diff=21120</id>
		<title>UBIK Client Basics</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=UBIK_Client_Basics&amp;diff=21120"/>
				<updated>2019-01-17T08:20:28Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Locked objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UBIK}} Client is the mobile application for viewing and modifying data, showing documents, starting navigation, visualizing POIs and much more.&lt;br /&gt;
&lt;br /&gt;
Client applications are available for Android and WinX, however the features available on each of the platform dependent applications might differ. An overview of the available features can be found in the [[Client_Feature_Table|feature comparison table]].&lt;br /&gt;
&lt;br /&gt;
== Start Screen ==&lt;br /&gt;
The start screen (or start menu) is the first visible view. It contains the login button and several actions, most of them accessible only after login. The start screen's content is [[HowTo:Configure Start Screen Content|configurable]]. For any specific app, the start screen usually also has a (overwritable) default configuration compiled into the app.&lt;br /&gt;
&lt;br /&gt;
== Login ==&lt;br /&gt;
Users need to login in order to access confidential data, this can be done in the [[Login Dialog]].&lt;br /&gt;
&lt;br /&gt;
There is the possibility to define user credentials on a webservice. The user might get a different login UI then, for further information please take a look at [[Serverside Account Configuration]]. {{Version/AndroidSince|2.5.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Settings ==&lt;br /&gt;
Users can configure access and edit the settings controlling {{UBIK}} environment using the [[Settings|settings list]].&lt;br /&gt;
&lt;br /&gt;
== Action Bar ==&lt;br /&gt;
On the top of every {{UBIK}} Android view, there is the action bar. It provides features like the [[Mobile_Free_Text_Search|free text search]] and buttons for receiving/sending changes from/to the server. Depending on the customization, other items like a ''Support button'' or a ''QR Code Scan button'' can be available. In some views, there are different actions than in others; e.g. in the map view there are map-specific actions.&lt;br /&gt;
&lt;br /&gt;
The action bar also allows access to the navigation drawer. It also shows an icon of the currently viewed object or the app's logo if the view is not object-related.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! Action item !! Purpose&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_update.png|46 px|center]] || ''Update''  || Updates the currently viewed object and its children or (if no object is viewed) the meta definitions and infrastructure objects from the server.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_commit.png|46 px|center]] || ''Commit''  || Sends eventual changes of the currently viewed object (and its children) to the server, or opens the commit manager if no context object is viewed. {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_search.png|46 px|center]] || ''Search''  || Opens an input field that can be used for finding objects by free text search. {{Version/AndroidSince|2.4.5}}&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_support.png|46 px|center]] || ''Support'' (Demo only) || Opens the configured support app, e.g. the Visocon Xing app. {{Version/AndroidSince|2.5.1}}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Navigation Drawer ==&lt;br /&gt;
[[File:UI_Android_Navigation_Drawer.png|180 px|thumb|border|alt=Navigation Drawer|Navigation Drawer]]&lt;br /&gt;
The navigation drawer provides a convenient and familiar way of navigating the app. {{Version/AndroidSince|2.4.0}} There are two ways of opening/closing the drawer.&lt;br /&gt;
* Pressing the app logo in the top-left corner;&lt;br /&gt;
* Swiping from/to the left edge of the screen&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Drawer item !! Purpose&lt;br /&gt;
|-&lt;br /&gt;
| Start menu || Opens the start screen&lt;br /&gt;
|-&lt;br /&gt;
| Settings || Opens the [[Settings|settings]]&lt;br /&gt;
|-&lt;br /&gt;
| Information || Shows information about the software version and the device&lt;br /&gt;
|-&lt;br /&gt;
| Scanning|| Contains child items for scanning various codes and markers. {{Version/AndroidSince|2.4.3}}&lt;br /&gt;
|-&lt;br /&gt;
| AR || Contains child items for opening the Map or POI view. {{Version/AndroidSince|2.5.3}}&lt;br /&gt;
|-&lt;br /&gt;
| Support || Starts the communication application (e.g. Skype or Visocon) and is available in the UBIK.Android.Demo application only. It is used to directly get in touch with a support agent. &amp;lt;br/&amp;gt;The respective target Uri is configurable. {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
|-&lt;br /&gt;
| Sync mode || Switches {{UBIK}} between different [[Sync Mode|sync modes]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Info Screen ==&lt;br /&gt;
&lt;br /&gt;
[[File:UBIK_Android_UI_Info_Activity_Certificate_List.png|400 px|thumb|border|alt=Certificate List|Certificate List]]&lt;br /&gt;
&lt;br /&gt;
Shows static information about the app, like the version code and the minimum required web service version.&lt;br /&gt;
It also contains additional buttons:&lt;br /&gt;
* {{key press|Install Certificate}}: Allows to [[HowTo:Install_UBIK_Client_Certificate|add a server certificate]] to the app.&lt;br /&gt;
* {{key press|Clear Cache}}: Deletes all local data for the current user. {{Version/AndroidSince|2.5.0}}&lt;br /&gt;
* {{key press|Show Certificates}}: Shows a list of installed certificates, with alias/subject and expiry date. {{Version/AndroidSince|2.5.1}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Content Browser ==&lt;br /&gt;
Allows to navigate through the entire data model in a hierarchical manner, as it is published by the server.&lt;br /&gt;
&lt;br /&gt;
Initially, a list of objects (&amp;quot;root objects&amp;quot;) is shown. Upon selecting an object, a new browser is opened for that object, showing details about it.&lt;br /&gt;
When an object is selected in the content browser, it is called the browser's context.&lt;br /&gt;
For such a contextual object, child objects, properties and child documents are shown. Also, there is a context menu providing actions related to the currently selected object.&lt;br /&gt;
&lt;br /&gt;
As every {{UBIK}} Android activity, the content browser also contains an action bar on the very top. By default, it provides a search button and buttons for updating an object or sending changes to the server (&amp;quot;committing&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
=== Context Menu ===&lt;br /&gt;
[[File:UBIK_Android_UI_Content_Browser_Context_actions.png|400px|border|thumb|alt=Context Menu|Context Menu]]&lt;br /&gt;
In the Content Browser a context sensitive menu is available where actions can be triggered that are relevant for the currently viewed object.&lt;br /&gt;
For example the creation of a child element or showing this object in another view.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! style=&amp;quot;width:150px&amp;quot; | Action item !! Purpose&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_create_content.png|46px|center]] || ''Create Object'' || Opens a selection dialog for possible child MetaClasses, creating an object for the user's choice. The new object is opened in a view for editing.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_take_picture.png|46 px|center]] || ''Take Picture'' || Opens the camera activity and creates a new document object for the resulting picture. The new object is opened in a view for editing.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_ar_nav.png|46 px|center]] || ''AR Navigation'' || Opens the AR navigation activity in order to navigate to the current object using augmented reality.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_geo_group.png|46 px|center]] || ''Geo Actions'' || Opens a selection dialog for several geo-related actions.&lt;br /&gt;
* ''Edit Geo Data'':[[File:Action_edit_geo_data.png|46 px|right]]&lt;br /&gt;
: Opens an editor for the geo location of the current object. Allows to use the device's current location for teach-in.&lt;br /&gt;
* ''AR Navigation'':[[File:Action_ar_nav.png|46 px|right]]&lt;br /&gt;
: Opens the AR navigation activity in order to navigate to the current object using augmented reality. {{Tip/Version|Feature removed in 2.5.3}}&lt;br /&gt;
* ''Show in Map'':[[File:Action_show_in_map.png|46 px|right]]&lt;br /&gt;
: Opens the Map activity, showing the current object.&lt;br /&gt;
* ''Use Location'':[[File:Action_use_location.png|46 px|right]]&lt;br /&gt;
: Uses the current object's location for positioning; applies the position for the device's location management.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_download_branch.png|46 px|center]] || ''Download Branch'' || Downloads the current object and all children and switches to offline mode.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_object_deletion_group.png|46 px|center]] || ''Delete Actions''  &amp;lt;br/&amp;gt;{{Version/AndroidSince|2.5.0}} || Provides several actions for reverting or removing the current object:&lt;br /&gt;
* ''Discard Local Object'':[[File:Action_icon_discard.png|46 px|right]]&lt;br /&gt;
: Deletes the object locally.&lt;br /&gt;
* ''Delete Object on Server'':[[File:Action_icon_delete.png|46 px|right]]&lt;br /&gt;
: Marks the object for deletion on the server.&lt;br /&gt;
* ''Revert Changes'':[[File:Action_icon_revert.png|46 px|right]]&lt;br /&gt;
: Undoes all local changes for the current object, resetting it to the last known status from the server.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Action_object_teach_in_group_wiki.png|46 px|center]] || ''[[UBIK_Client_Basics#Teach-in_Actions|Teach-in Actions]]'' &amp;lt;br /&amp;gt; {{Version/AndroidSince|2.5.2}} || Provides several actions for teaching-in values of scannable properties:&lt;br /&gt;
* ''QR-Code teach-in'':[[File:Action_icon_teach_in_qr_wiki.png|46 px|right]]&lt;br /&gt;
: Sets the value of the QR-Code property by scanning a QR-Code.&lt;br /&gt;
* ''Barcode teach-in'':[[File:Action_icon_teach_in_barcode_wiki.png|46 px|right]]&lt;br /&gt;
: Sets the value of the Barcode property by scanning a Barcode.&lt;br /&gt;
* ''RFID teach-in'':[[File:Action_icon_teach_in_rfid_wiki.png|46 px|right]]&lt;br /&gt;
: Sets the value of the RFID property by scanning a RFID-Tag.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Hint|Some actions are united in groups, e.g. the ''Geo Actions'' or the ''Delete Actions''. Clicking on the respective icons opens a selection dialog for the detail actions. &amp;lt;br/&amp;gt;Depending on the current object, some actions might not be available. If a group consequently contains only one element, it is displayed directly instead of the group.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Objects ===&lt;br /&gt;
&lt;br /&gt;
==== Root objects vs child objects ====&lt;br /&gt;
&lt;br /&gt;
The first entry point in the ''Content Browser'' is the list of root objects.&lt;br /&gt;
Since no element is viewed initially, there is no ''Context Menu'' here.&lt;br /&gt;
&lt;br /&gt;
If an object is opened in the ''Content Browser'', it serves as its current &amp;quot;context&amp;quot;.&lt;br /&gt;
The list of its child objects is shown in the left tab of the content browser when viewing an object.&lt;br /&gt;
&lt;br /&gt;
==== Task objects ====&lt;br /&gt;
[[Task Objects (UBIK Android)|Task objects]] are {{UBIK}} objects with properties the user has to fill in. They can be identified by the status check box that shows their status (open or finished).&lt;br /&gt;
&lt;br /&gt;
==== Query objects ====&lt;br /&gt;
[[Query Objects (UBIK Android)|Query objects]] are used for finding objects on the server using criteria entered on the client.&lt;br /&gt;
&lt;br /&gt;
==== Safety relevant objects ====&lt;br /&gt;
The [[Safety Instructions]] feature allows to make sure a user has to view special ''Safety Documents'' before an object can be opened in the ''Content Browser''. {{Version/AndroidSince|2.5.1}}&lt;br /&gt;
&lt;br /&gt;
==== Commissioning objects ====&lt;br /&gt;
[[Commissioning Objects (UBIK Android)|Commissioning objects]] are task objects with extended functionality. They can be identified by the status ican which either shows a cross a check or a circle.&lt;br /&gt;
&lt;br /&gt;
==== Locked objects ====&lt;br /&gt;
In some cases it might be useful to lock objects until the user varifies to be near to these objects. This can be done with the [[SYSCLS_UNLOCK_BY_SCAN]] {{Version/AndroidSince|2.5.2}} and [[SYSCLS_UNLOCK_GROUP_BY_SCAN]] {{Version/AndroidSince|3.1.0}} classifications. Instances of MetaClasses implementing this classification can only be edited after the object gets unlocked. The unlocking can currently happen by scanning any type of code (QR-Code, Barcode, ID-Marker, RFID, OCR) which is related to the according object. After a certain period of time (default 15min) the object gets locked again. In the case of Unlocking a group of objects, alternatively also more than one object can be unlocked at once by sharing a common unlock code.&lt;br /&gt;
&lt;br /&gt;
Take care that objects classified by [[SYSCLS_UNLOCK_BY_SCAN]] also need the corresponding properties (e.g. QR-Code property) such that the user is allowed to unlock these objects. In the case of unlocking a group of objects, only one of the objects needs to be scannable in order to onlock all of them. If an object is locked, it is not possible to edit its properties. Furthermore, context actions like redlining or editing of documents, geo teach-in and deletion of the object on the server is not possible. Basically the locking is the same for all types of objects, except for work packages – unlocking them also means unlocking all underlying items (Tasks, Commissioning checks) as well.&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;br /&gt;
&lt;br /&gt;
=== Properties ===&lt;br /&gt;
In the Content Browser, properties are shown in the properties tab. Their appearance depends on the data type of their value, whether they are modifiable and whether they are currently modified.&lt;br /&gt;
Also, modifiable properties can be edited using the property editors described below.&lt;br /&gt;
&lt;br /&gt;
==== Live value properties ====&lt;br /&gt;
&lt;br /&gt;
If a user wants to know an up-to-date measurement value, for instance whether it is save to enter a room or shut down a pump, this property provides him this information with very frequently updated [[Live Values| live values]].&lt;br /&gt;
&lt;br /&gt;
==== Direct editing of boolean properties ====&lt;br /&gt;
The user can switch {{Boolean}} properties by either clicking the checkbox in the property list view (without visible editor), or by clicking the property row to open the corresponding editor.&lt;br /&gt;
&lt;br /&gt;
==== Selective List Properties ====&lt;br /&gt;
The user can select a value from a list of possible values for this property, by clicking on the saved property value on the property list view. The corresponding editor is displayed with the drop-down list already expanded. Once the user selects a value from the list, the value is immediately saved and editor closed. It is also possible to cancel the editing or delete the value.&lt;br /&gt;
&lt;br /&gt;
==== Teach-in Actions ====&lt;br /&gt;
Properties of type QR-Code, Barcode or RFID can be taught-in using the corresponding teach-in action, which is located in the context sensitive action bar. {{Version/AndroidSince|2.5.2}} An object has to implement the [[SYSCLS_OBJECTWITHIDMARKER]] or [[SYSCLS_OBJECTWITHRFIDTAG]] classification and a respective editable property in order to use this feature. When clicking on a teach-in action the corresponding scanner appears and once the right marker/tag is scanned, the code directly appears as the new property value.&lt;br /&gt;
&lt;br /&gt;
==== Default and Initial Values ====&lt;br /&gt;
Default values are used as long as a property has no value on its own. Initial values are used for new instances so they aren't completely empty after creation. Both can be configured on the server. See also: [http://wiki.augmensys.com/index.php?title=MetaProperty#Default_value MetaProperty Wiki Article]&lt;br /&gt;
&lt;br /&gt;
==== Editors ====&lt;br /&gt;
{{UBIK}} has built-in editors for different property types, including String, Integer, Double, Boolean, DateTime, Geo data and Selective list.&lt;br /&gt;
Clicking on the input field of a property (or task) will open the respective editor. &lt;br /&gt;
&lt;br /&gt;
===== Geo Editor &amp;amp; Teach In =====&lt;br /&gt;
[[File:UI_ContentBrowser_TeachIn2_Android.png|thumb|220px|Geo Editor]]&lt;br /&gt;
Editor used to set GEO locations for a specific content object. This is done by accessing the GEO property editor of the object.&lt;br /&gt;
&lt;br /&gt;
The user can enter the location manually or, if available, can use the location provided by the positioning service. In case the positioning service doesn't deliver any location the user has only the possibility to enter the location manually.&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;br /&gt;
&lt;br /&gt;
=== Documents ===&lt;br /&gt;
UBIK supports and displays document objects and a bunch of actions related to them (editing, redlining, creation, thumbnails, ...).&lt;br /&gt;
See the [[Documents_(UBIK_Android)|Documents]] article for further information on documents.&lt;br /&gt;
&lt;br /&gt;
=== MRO ===&lt;br /&gt;
UBIK provides the logic for Maintenance, Repair and Operations (MRO) features. This means, a user can report the status of work to be accomplished. Therefore specific MRO configuartions provide essential objects like workpackages and tasks to report accomplished tasks, results and confirmed workpackages. See the [[MRO_Objects_(UBIK_WinX)|MRO]] article for further information on MRO.&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;br /&gt;
&lt;br /&gt;
=== Dynamic Content Tabs ===&lt;br /&gt;
{{Version/AndroidSince|2.5.0}}&lt;br /&gt;
&lt;br /&gt;
The content browser's tabs (children, properties and documents) are only shown if necessary (and if they are not empty). For some types of objects (e.g. tasks) specific tabs are always shown though, especially if a tab is considered the main view for that object.&lt;br /&gt;
&lt;br /&gt;
It is possible to configure this feature in order to behave more precisely as desired. By default, the children tab is shown if no other view should be shown explicitely and if the client has no information whether there are children or not. This means that for objects where (by customizing) the properties tab or the documents tab should be shown when entering the browser, the children view is only shown if it is not empty.&lt;br /&gt;
&lt;br /&gt;
However, if nothing is configured, the children tab will be shown by default, because there could be children on the server and it would be annoying for the user to not see the children tab at all until something is loaded.&lt;br /&gt;
&lt;br /&gt;
This is the other way round for the properties tab, because properties are always known as soon as the object itself is available on the client.&lt;br /&gt;
&lt;br /&gt;
Also, the documents tab is not shown by default because the documents most often are not the primary view. If they are, the customizing should take this into account.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Customizing Possibilities ====&lt;br /&gt;
There are basically two ways to configure the dynamic tabs feature:&lt;br /&gt;
* One can configure the [[SYSCLS_CHILDINFOOWNER|Children Information Classification]] (former: Document Owner Classification): this will lead to a precise behaviour of the dynamic tabs, because the client has more detailed knowledge about the children of respectively classified objects.&lt;br /&gt;
* Another possibility is the configuration of the [[SYSCLS_SHOWPROPERTIES]] or [[SYSCLS_SHOWDOCUMENTS]] classifications: this will lead to the displaying of the properties/documents tab as initial view, even if it is empty.&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;br /&gt;
&lt;br /&gt;
== UI Configurations ==&lt;br /&gt;
See [[UI_Configuration_(Mobile_Client)]].&lt;br /&gt;
&lt;br /&gt;
== AR Features ==&lt;br /&gt;
&lt;br /&gt;
=== POI View ===&lt;br /&gt;
Brings up the [[POI View|Augmented Reality view]] and displays Points of Interest (POI's) related to the current location of the mobile device.&lt;br /&gt;
&lt;br /&gt;
=== AR Navigation ===&lt;br /&gt;
Allows the user to navigate to an object using the [[AR Navigation|Augmented Reality Navigation]] feature.&lt;br /&gt;
It is accessible via a {{UBIK}} object's context menu in the Content Browser.&lt;br /&gt;
&lt;br /&gt;
=== Markerless ===&lt;br /&gt;
Opens the [[POI View|Augmented Reality view]] supporting [[HowTo:Configure_Dynamic_AR_Content#Markerless_Activity|Markerless Scanning]] based on Image Detection. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== ID Marker 3D ===&lt;br /&gt;
Opens the [[POI View|Augmented Reality view]] supporting [[HowTo:Configure_Dynamic_AR_Content#ID_Marker_Activity|ID Marker Scanning]] based on ID Markers. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== Map View ===&lt;br /&gt;
Opens the [[map View|Map view]] and displays Points of Interest (POI's) related to the current location of the mobile device.&lt;br /&gt;
&lt;br /&gt;
== Positioning ==&lt;br /&gt;
{{UBIK}} clients use a [[Location_Manager|Location Manager]] in order to gain knowledge about their position, so it can help the user navigate to his/her target.&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;br /&gt;
&lt;br /&gt;
== Finding Objects ==&lt;br /&gt;
=== Free Text Search ===&lt;br /&gt;
A [[Mobile_Free_Text_Search|free text search feature]] is available in the Action Bar. The search action item opens a text input field when clicked. Use it to find objects by their Meta Class name, their Display Strings or properties. The search feature works online and offline. {{Version/AndroidSince|2.4.5}}&lt;br /&gt;
&lt;br /&gt;
=== ID Marker ===&lt;br /&gt;
Provides a fast and convenient way for users to find objects that are identifiable through [[optical code|optical codes]], in this case ID Markers. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== QR Code ===&lt;br /&gt;
Provides a fast and convenient way for users to find objects that are identifiable through [[optical code|optical codes]], in this case QR Codes. When using Getac Z710 the integrated barcode/qr-code scanner can get used. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== Bar Code ===&lt;br /&gt;
Provides a fast and convenient way for users to find objects that are identifiable through [[optical code|optical codes]], in this case Bar Codes. When using Getac Z710 the integrated barcode/qr-code scanner can get used. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== RFID ===&lt;br /&gt;
Provides a fast and convenient way for users to find objects that are identifiable through [[RFID tags|RFID tags]]. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]&lt;br /&gt;
&lt;br /&gt;
=== OCR ===&lt;br /&gt;
Provides a fast and convenient way for users to find objects that are identifiable through [[OCR|OCR]]. If the scanned Object is a Geo-Object, it´s location can be used through [[UBIK Client Basics#Object Proximity Positioning|Object Proximity Positioning]]. {{Version/AndroidSince|2.5.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Synchronization ==&lt;br /&gt;
The {{UBIK}} client gets its data from the UBIK Content web service and is capable of synchronizing differences between this service and itself.&lt;br /&gt;
All data can be worked with offline.&lt;br /&gt;
&lt;br /&gt;
=== Updating and Committing ===&lt;br /&gt;
Sending changed data from the mobile device to the {{UBIK}} server is called &amp;quot;committing&amp;quot;. Fetching new data from the server is called &amp;quot;updating&amp;quot;.&amp;lt;br/&amp;gt;&lt;br /&gt;
In {{UBIK}} Android's Action Bar, there are buttons for both actions. Their detail behaviour depends on the current view:&lt;br /&gt;
* In the Start Menu, the update button acquires basic data like the meta definitions or the infrastructure objects. The commit button opens the Commit Manager.&lt;br /&gt;
* In the Content Browser, the update button updates the currently viewed object and its children. Similarly, the commit button sends changes for the currently viewed object to the server. When committing an object in the Content Browser, all its changed child objects are also committed. {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
* In the Commit Manager, one can select objects to commit or update from a list of all changed objects.&lt;br /&gt;
&lt;br /&gt;
=== Synchronization Mode ===&lt;br /&gt;
Depending on the [[Sync Mode]] setting, the synchronization will behave differently - either taking care of everything automatically or giving the user full control over which changes are sent (&amp;quot;committed&amp;quot;) to the server and which updates are fetched from it.&amp;lt;br/&amp;gt;&lt;br /&gt;
There are the following Sync Modes:&lt;br /&gt;
* Automatic: Handles updates and commits without requiring user input.&lt;br /&gt;
* Manual Commit: Updates automatically, lets the user decide when to commit changes.&lt;br /&gt;
* Offline: Doesn't update nor commit anything automatically; except for special situations like the first login in a new environment.&lt;br /&gt;
&lt;br /&gt;
=== Error Handling ===&lt;br /&gt;
{{UBIK}} tries to solve problems automatically, for example by retrying failed web requests or updating missing content. &lt;br /&gt;
In case of an error that couldn't be resolved automatically, an Android Notification is shown to gently notify the user what has happened and eventually give hints on how to solve the problem.&lt;br /&gt;
&lt;br /&gt;
=== Push ===&lt;br /&gt;
The {{UBIK}} [[Push Service (Client)|push service]] is a mechanism used to notify a client of updates, show messages to the user or trigger other events on the client.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Client_Feature_Table]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|UBIK Client Basics]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21075</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21075"/>
				<updated>2018-12-06T10:37:05Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
* It is now possible to use [[AR-Marker]]s for [[AR-Marker_Device_Pose_Estimation|device pose estimation]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.1 on 2018-12-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21009</id>
		<title>Version 3.5 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.5_(WinX)&amp;diff=21009"/>
				<updated>2018-11-19T10:13:00Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Enhancements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to configure complex parameter lists for various commands in XAML, using the new [[KeyValueList]] element&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The Camera Access was refactored to provide a proper basis for upcoming features.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.5|Version 3.5 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.5.1 on 2018-12-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=20994</id>
		<title>Version 3.4 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=20994"/>
				<updated>2018-10-30T11:41:35Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to render UBIK Content Objects in relation to multiple [[AR-Marker]]s.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.4|Version 3.4 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Users can now install the app package without first installing a self-signed certificate since it is now signed by a certificate issued by a trusted root CA (Comodo RSA Certification Authority). See [[#Additional notes|additional notes]] for installing over existing {{UBIK}} versions.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* Because the new app package is signed by a new/different certificate, the app package signature has changed (from AugmensysGmbH.UBIK.UWP_yh5qx508sp704 to AugmensysGmbH.UBIK.UWP_fe7j2dq5d2q76).&lt;br /&gt;
** If there is no existing {{UBIK}} installation on the device, this change will not concern you;&lt;br /&gt;
** If a previous version of {{UBIK}} is already installed, you won't be able to update it to 3.4 or later versions. Instead, a clean installation is require (uninstall and then install). Before doing that, you might want to backup your local data as well as profiles (can be found under [AppInstallPath]\LocalState and [AppInstallPath]\RoamingState respectively).&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.4.1 on 2018-11-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.4|Version 3.4 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=20993</id>
		<title>Version 3.4 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.4_(WinX)&amp;diff=20993"/>
				<updated>2018-10-30T11:40:19Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* New features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Initial Release =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* It is now possible to render UBIK Content Objects in relation to multiple AR-Markers.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.4|Version 3.4 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* Users can now install the app package without first installing a self-signed certificate since it is now signed by a certificate issued by a trusted root CA (Comodo RSA Certification Authority). See [[#Additional notes|additional notes]] for installing over existing {{UBIK}} versions.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
&lt;br /&gt;
=== Known issues ===&lt;br /&gt;
* Project specific resources defined in UBIKThemes might not take effect immediately after switching profiles. Restarting the app solves the problem.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Additional notes ===&lt;br /&gt;
* Because the new app package is signed by a new/different certificate, the app package signature has changed (from AugmensysGmbH.UBIK.UWP_yh5qx508sp704 to AugmensysGmbH.UBIK.UWP_fe7j2dq5d2q76).&lt;br /&gt;
** If there is no existing {{UBIK}} installation on the device, this change will not concern you;&lt;br /&gt;
** If a previous version of {{UBIK}} is already installed, you won't be able to update it to 3.4 or later versions. Instead, a clean installation is require (uninstall and then install). Before doing that, you might want to backup your local data as well as profiles (can be found under [AppInstallPath]\LocalState and [AppInstallPath]\RoamingState respectively).&lt;br /&gt;
&lt;br /&gt;
= Build History =&lt;br /&gt;
* 3.4.1 on 2018-11-??&lt;br /&gt;
** Initial release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.4|Version 3.4 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=AR-Marker&amp;diff=20989</id>
		<title>AR-Marker</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=AR-Marker&amp;diff=20989"/>
				<updated>2018-10-29T10:01:18Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:ArucoMarker.PNG|250 px|right|thumb|alt=AR-Marker|AR-Marker]]&lt;br /&gt;
AR-Markers are square fiducial markers composed by a wide black border and a inner binary matrix which determines its identifier (ID). These markers are detected in the camera stream of the [[POI_View|POI View]] and can be used for [[AR-Marker#Direct_Augmentation|Direct Augmentation]] or [[AR-Marker#AR-Marker Device Pose Estimation|Device Pose calculation]].&lt;br /&gt;
The AR-Marker ID is defined as an integer value between zero and the maximum dictionary size (see [[AR-Marker#Marker Creation|Marker Creation]]). Once a marker is detected, the ID is used to gather additional information from the associated {{UBIK}} object (see [[AR-Marker#Classifications|Classifications]]). &lt;br /&gt;
The four corner points of an AR-Marker are extracted to calculate the relative pose (position and orientation) between the camera and the AR-Marker, which serves as a basement for the above stated use-cases. For that, the camera of the mobile device has to be calibrated (see [[Camera_Calibration|Camera Calibration]]) and the AR-Marker side length has to be known.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Marker Creation ==&lt;br /&gt;
Currently {{UBIK}} is using the standard dictionary, allowing the creation of 1024 unique AR-Marker IDs. Markers can be created using the provided Aruco Marker Creation tool from the release portal [[https://80.243.175.50/Release/download/modules/Plugins/tools/ArucoMarkerGenerator.rar Aruco Marker Creation Tool]]. Once the tool is extracted, the ArucoMarkerGenerator.htm can be opened to configure the ID and side length. After clicking Generate Marker, the AR-Marker can be printed.&lt;br /&gt;
&lt;br /&gt;
{{Hint|Note when printing AR-Markers the physical side length has to correlate with the AR-Marker side length property (see [[AR-Marker#Classifications|Classifications]]).}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Classifications ==&lt;br /&gt;
The most important classification is the [[SYSCLS_ARMARKER]], containting the identifier and the AR-Marker side length. Two additional classifications [[SYSCLS_ARMARKER_DIRECTAR]] and [[SYSCLS_ARMARKER_GEO]] inherit from the above classiciation and are used to distinguish between the two use-cases of [[AR-Marker#Direct_Augmentation|Direct Augmentation]] and [[AR-Marker#AR-Marker Device Pose Estimation|Device Pose calculation]].&lt;br /&gt;
&lt;br /&gt;
An additional [[SYSCLS_ARCONTENTREFERENCE]] {{Version/WinXSince|3.4.0}} can be used to specify an UBIK Object that should be rendered instead of the detected AR-Marker. This enables Multi AR-Marker Rendering whereby one an the same UBIK object can be rendered in relation to multiple AR-Markers.&lt;br /&gt;
&lt;br /&gt;
== Direct Augmentation ==&lt;br /&gt;
If marked with the [[SYSCLS_ARMARKER_DIRECTAR]] classification, AR-Markers can be directly augmented once they are detected in the [[POI_View|POI View ]]. Per default a Billboard, representing the classified {{UBIK}} object, will be shown directly on the AR-Marker. Additional classifications ([[SYSCLS_ARCONTENTTRANSLATION]], [[SYSCLS_ARCONTENTROTATION]], [[SYSCLS_ARCONTENTSCALE]]) can be used to translate, rotate and scale the Billboard in relation to the detected AR-Marker. Furthermore it is possible to render multiple {{UBIK}} objects in relation to the same physical AR-Marker. &lt;br /&gt;
Depending on the computational capacities of a mobile device, AR-Markers can be directly augmented in realtime (25 Hz).&lt;br /&gt;
&lt;br /&gt;
[[File:DirectAR.PNG|600 px|center|thumb|alt=Direct Augmentation|Direct Augmentation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== AR-Marker Device Pose Estimation ==&lt;br /&gt;
If marked with the [[SYSCLS_ARMARKER_GEO]] classification, AR-Markers can be used for calculating the device pose once they are detected in the [[POI_View|POI View ]] (see [[AR-Marker_Device_Pose_Estimation|AR-Marker Device Pose Estimation]])&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=SYSCLS_ARCONTENTREFERENCE&amp;diff=20988</id>
		<title>SYSCLS ARCONTENTREFERENCE</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=SYSCLS_ARCONTENTREFERENCE&amp;diff=20988"/>
				<updated>2018-10-29T09:57:21Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ClassificationInfoBox&lt;br /&gt;
| title = ARContentReference&lt;br /&gt;
| name = {{PAGENAMEE}}&lt;br /&gt;
| inheritance = [[SYSCLS_ROOT]]&lt;br /&gt;
| namespace = System.Classification.ARMARKER&lt;br /&gt;
| purpose =  Reference an object that should be rendered in relation to the detected AR-Marker&lt;br /&gt;
| version = 2.6.3+&lt;br /&gt;
| id = {A1340DF9-8E7E-4DBD-B450-52531FB64610}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== MetaProperties ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=50%&lt;br /&gt;
|-&lt;br /&gt;
! width=30% | Name !! width=30% | Data type !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| ARContent|| {{Guid}} || Content UID of the UBIK Object, that should be rendered once this AR-Marker is detected.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[HowTo:Create_a_new_Classification]]&lt;br /&gt;
* [[HowTo:Assign a Classification to a MetaClass]]&lt;br /&gt;
&lt;br /&gt;
{{Category/Version|2.6.3}}&lt;br /&gt;
&lt;br /&gt;
[[Category:2.6.3|SYSCLS ARCONTENTREFERENCE]]&lt;br /&gt;
[[Category:Classifications|SYSCLS ARCONTENTREFERENCE]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20974</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20974"/>
				<updated>2018-10-17T09:36:52Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* It is now possible to toggle the camera flashlight from all camera related pages (POI View, Scan View, etc.).&lt;br /&gt;
* The [[Developer Mode]] has a search feature now and additionally displays declared Converters&lt;br /&gt;
* [[AR-Marker|AR-Markers]] can now be used with Windows-based devices&lt;br /&gt;
* It is now possible to show Billboards in relation to [[AR-Marker|AR-Markers]].&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* UBIK now actively clears out cached properties to reduce its memory footprint. See [[Fast_Startup_(Client)#Technical_background|Fast Startup - Technical background]] for more details.&lt;br /&gt;
* Further reduced the memory consumption for local content. (More properties are only loaded on demand.)&lt;br /&gt;
* UBIK now requires far less memory during initialization and branch downloads.&lt;br /&gt;
* It is now possible to customize the Elements of the Geo Edit Control and the Document Page Sidebar and Flyout.&lt;br /&gt;
* Improved the usability of offline branch download by dividing an entire branch download task into several smaller ones.&lt;br /&gt;
* Improved startup time of camera-related views (POI View, Scan View).&lt;br /&gt;
* Improved browsing performance in developer mode.&lt;br /&gt;
* Improved the file uploading mechanism (e.g. less web traffic, more reliable retries upon failures).&lt;br /&gt;
&amp;lt;!--* If loading of a custom XAML template fails, the full error message (incl. line number) is now displayed in the crossed-out section &lt;br /&gt;
* If loading of a custom XAML template fails, the file as well as the type browser are directly accessible from the error template (analog to [[Developer Mode]])--&amp;gt;&lt;br /&gt;
* The [[Property_Wizard_(Client)|property wizard]] will no longer get interrupted by the Guid property editor (when a user decides to further navigate to the Guid editing page)&lt;br /&gt;
* Improved the default UI template for child items under data templates.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
* Fixed an issue where files are downloaded unnecessarily for documents being deleted.&lt;br /&gt;
* Fixed an issue where ContentViewModel.EditPropertyValueCommand did not check a property's editability before allowing a user to edit it.&lt;br /&gt;
* Fixed an issue where PropertyListViewModel.EditableItems previously incorrectly returned those that are defined uneditable by user rights. (Existing Xaml customizings will need to be adapted for this.)&lt;br /&gt;
* Fixed an issue where bindings using ContentViewModel.PropertyItems sometimes are not properly refreshed.&lt;br /&gt;
* Fixed an issue, where the mouse wheel zooming in the Map behaved inconsistent.&lt;br /&gt;
* Fixed an issue, where the Demo Locations Setting was not persisted properly.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20973</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20973"/>
				<updated>2018-10-17T06:41:09Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* It is now possible to toggle the camera flashlight from all camera related pages (POI View, Scan View, etc.).&lt;br /&gt;
* The [[Developer Mode]] has a search feature now and additionally displays declared Converters&lt;br /&gt;
* [[AR-Marker|AR-Markers]] can now be used with Windows-based devices&lt;br /&gt;
* It is now possible to show Billboards in relation to [[AR-Marker|AR-Markers]].&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* UBIK now actively clears out cached properties to reduce its memory footprint. See [[Fast_Startup_(Client)#Technical_background|Fast Startup - Technical background]] for more details.&lt;br /&gt;
* Further reduced the memory consumption for local content. (More properties are only loaded on demand.)&lt;br /&gt;
* UBIK now requires far less memory during initialization and branch downloads.&lt;br /&gt;
* It is now possible to customize the Elements of the Geo Edit Control and the Document Page Sidebar and Flyout.&lt;br /&gt;
* Improved the usability of offline branch download by dividing an entire branch download task into several smaller ones.&lt;br /&gt;
* Improved startup time of camera-related views (POI View, Scan View).&lt;br /&gt;
* Improved browsing performance in developer mode.&lt;br /&gt;
* Improved the file uploading mechanism (e.g. less web traffic, more reliable retries upon failures).&lt;br /&gt;
&amp;lt;!--* If loading of a custom XAML template fails, the full error message (incl. line number) is now displayed in the crossed-out section &lt;br /&gt;
* If loading of a custom XAML template fails, the file as well as the type browser are directly accessible from the error template (analog to [[Developer Mode]])--&amp;gt;&lt;br /&gt;
* The [[Property_Wizard_(Client)|property wizard]] will no longer get interrupted by the Guid property editor (when a user decides to further navigate to the Guid editing page)&lt;br /&gt;
* Improved the default UI template for child items under data templates.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
* Fixed an issue where files are downloaded unnecessarily for documents being deleted.&lt;br /&gt;
* Fixed an issue where ContentViewModel.EditPropertyValueCommand did not check a property's editability before allowing a user to edit it.&lt;br /&gt;
* Fixed an issue where PropertyListViewModel.EditableItems previously incorrectly returned those that are defined uneditable by user rights. (Existing Xaml customizings will need to be adapted for this.)&lt;br /&gt;
* Fixed an issue where bindings using ContentViewModel.PropertyItems sometimes are not properly refreshed.&lt;br /&gt;
* Fixed an issue, where the mouse wheel zooming in the Map behaved inconsistent.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20972</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20972"/>
				<updated>2018-10-17T06:40:41Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* It is now possible to toggle the camera flashlight from all camera related pages (POI View, Scan View, etc.).&lt;br /&gt;
* The [[Developer Mode]] has a search feature now and additionally displays declared Converters&lt;br /&gt;
* [[AR-Marker|AR-Markers]] can now be used with Windows-based devices&lt;br /&gt;
* It is now possible to show Billboards in relation to [[AR-Marker|AR-Markers]].&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* UBIK now actively clears out cached properties to reduce its memory footprint. See [[Fast_Startup_(Client)#Technical_background|Fast Startup - Technical background]] for more details.&lt;br /&gt;
* Further reduced the memory consumption for local content. (More properties are only loaded on demand.)&lt;br /&gt;
* UBIK now requires far less memory during initialization and branch downloads.&lt;br /&gt;
* It is now possible to customize the Elements of the Geo Edit Control and the Document Page Sidebar and Flyout.&lt;br /&gt;
* Improved the usability of offline branch download by dividing an entire branch download task into several smaller ones.&lt;br /&gt;
* Improved startup time of camera-related views (POI View, Scan View).&lt;br /&gt;
* Improved browsing performance in developer mode.&lt;br /&gt;
* Improved the file uploading mechanism (e.g. less web traffic, more reliable retries upon failures).&lt;br /&gt;
&amp;lt;!--* If loading of a custom XAML template fails, the full error message (incl. line number) is now displayed in the crossed-out section &lt;br /&gt;
* If loading of a custom XAML template fails, the file as well as the type browser are directly accessible from the error template (analog to [[Developer Mode]])--&amp;gt;&lt;br /&gt;
* The [[Property_Wizard_(Client)|property wizard]] will no longer get interrupted by the Guid property editor (when a user decides to further navigate to the Guid editing page)&lt;br /&gt;
* Improved the default UI template for child items under data templates.&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
* Fixed an issue where files are downloaded unnecessarily for documents being deleted.&lt;br /&gt;
* Fixed an issue where ContentViewModel.EditPropertyValueCommand did not check a property's editability before allowing a user to edit it.&lt;br /&gt;
* Fixed an issue where PropertyListViewModel.EditableItems previously incorrectly returned those that are defined uneditable by user rights. (Existing Xaml customizings will need to be adapted for this.)&lt;br /&gt;
* Fixed an issue where bindings using ContentViewModel.PropertyItems sometimes are not properly refreshed.&lt;br /&gt;
* Fixed an issue, where the mouse wheel zooming in the Map behaved strange.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20956</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20956"/>
				<updated>2018-09-19T07:14:52Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* It is now possible to toggle the camera flashlight from all camera related pages (POI View, Scan View, etc.).&lt;br /&gt;
* The [[Developer Mode]] has a search feature now and additionally displays declared Converters&lt;br /&gt;
* [[AR-Marker|AR-Markers]] can now be used with Windows-based devices&lt;br /&gt;
* It is now possible to show Billboards in relation to [[AR-Marker|AR-Markers]].&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
* UBIK now actively clears out cached properties to reduce its memory footprint. See [[Fast_Startup_(Client)#Technical_background|Fast Startup - Technical background]] for more details.&lt;br /&gt;
* Further reduced the memory consumption for local content. (More properties are only loaded on demand.)&lt;br /&gt;
* UBIK now requires far less memory during initialization and branch downloads.&lt;br /&gt;
* It is now possible to customize the Elements of the Geo Edit Control and the Document Page Sidebar and Flyout.&lt;br /&gt;
* Improved the usability of offline branch download by dividing an entire branch download task into several smaller ones.&lt;br /&gt;
* Improved startup time of camera-related views (POI View, Scan View).&lt;br /&gt;
* Improved browsing performance in developer mode.&lt;br /&gt;
* Improved the file uploading mechanism (e.g. less web traffic, more reliable retries upon failures).&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
* Fixed an issue where files are downloaded unnecessarily for documents being deleted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20942</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20942"/>
				<updated>2018-08-28T07:37:17Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* 3.3.0 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* It is now possible to toggle the camera flashlight from all camera related pages (POIPage, ScanPage, etc.).&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
* UBIK now actively clears out cached properties to reduce its memory footprint. See [[Fast_Startup_(Client)#Technical_background|Fast Startup - Technical background]] for more details.&lt;br /&gt;
* Further reduced the memory consumption for local content. (More properties are only loaded on demand.)&lt;br /&gt;
* It is now possible to customize the Elements of the Geo Edit Control and the Document Page Sidebar and Flyout. &lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=POI_View&amp;diff=20940</id>
		<title>POI View</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=POI_View&amp;diff=20940"/>
				<updated>2018-08-23T08:30:03Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Flashlight */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;POI view is the Augmented Reality view that displays Points of Interest (POI's) related to the current location of the mobile device.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
[[File:UI_Android_AR_Unsupported_CPU.jpg|thumb|alt=POI View Unavailable|POI View Unavailable]]&lt;br /&gt;
For the POI view to function and deliver a satisfactory user experience, a device's processors must meet certain requirements (support [http://www.arm.com/products/processors/technologies/neon.php NEON from ARM]). {{Version/AndroidSince|2.4.5}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Devices such as the following are known to lack such a technology and, therefore, can not use the POI view.&lt;br /&gt;
* Samsung Galaxy Tab 10.1 P7500&lt;br /&gt;
* Samsung Galaxy Tab 8.9 P7300&lt;br /&gt;
* Unitech TB100&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Visualization ==&lt;br /&gt;
A typical POI view consists of a real time camera view, a radar view and a few billboards.&lt;br /&gt;
&lt;br /&gt;
=== Radar view ===&lt;br /&gt;
At the top right corner of the POI view, there is a circle shaped radar view which displays all the POI's as yellow dots. The positions of these POI's relative to the device are reflected and constantly updated in the radar view.&lt;br /&gt;
If a billboard is currently selected (the last one touched), its dot in the radar view is marked with red color.&lt;br /&gt;
[[POI Groups|POI groups]] are also represented as billboards in the radar view.&lt;br /&gt;
&lt;br /&gt;
=== Billboard ===&lt;br /&gt;
Billboards are visual representations of POI's. A billboard consists of the following:&lt;br /&gt;
* Icon;&lt;br /&gt;
* Description text;&lt;br /&gt;
* Name text;&lt;br /&gt;
* Text of distance to the current location;&lt;br /&gt;
* Background color representing the status of the POI.&lt;br /&gt;
All these visual elements are updated when either the content or the current location changes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;220&amp;quot; heights=&amp;quot;260&amp;quot;&amp;gt;&lt;br /&gt;
File:UI_Android_POIView.jpg|POI view&lt;br /&gt;
File:UI_Android_POIViewWithSelection.jpg|Selected POI in radar&lt;br /&gt;
File:UI_Android_POIViewColorized.jpg|Colorized Billboard&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Only [[SYSCLS_GEO|Geo contents]] are displayed as billboards, qualifying certain conditions: {{Tip/Version|In versions up to 2.4.3 an object had to be in the infrastructure in order to be shown.}}&lt;br /&gt;
* If a [[HowTo:Use_POI_Groups|POI group]] is currently open/active, objects that are shown are:&lt;br /&gt;
** [[SYSCLS_POIGROUPITEM|POI group items]] that belong to the current group;&lt;br /&gt;
** Objects that are '''not''' POI group items (and do not belong to any group).&lt;br /&gt;
* If a layer is currently selected, objects that are shown are: {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
** [[SYSCLS_MAPITEM|Items]] of the current Layer; {{Tip/Version| Objects are not filtered by layers in previous versions.}}&lt;br /&gt;
** Objects that are '''not''' layer items.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Interaction ==&lt;br /&gt;
&lt;br /&gt;
=== Interacting with billboards ===&lt;br /&gt;
When a user touches a billboard, a [[POI_dialog|dialog]] for that particular POI will show up.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Optical Markers ===&lt;br /&gt;
&lt;br /&gt;
Two types of optical Markers can be scanned from the POI view: [[Object Proximity Positioning#LLA_markers|LLA Markers]]  and [[AR-Marker|AR-Markers]]. The former can be used for device pose estimation ([[Object Proximity Positioning]]), whereas the latter can be used for [[AR-Marker#AR-Marker_Device_Pose_Estimation|device pose estimation]] and [[AR-Marker#Direct_Augmentation|direct augmentation]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Action items (Android) ===&lt;br /&gt;
The following action items are available in the POI view's action bar.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;25%&amp;quot; style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! Item name &lt;br /&gt;
|-&lt;br /&gt;
| [[File:UI_Android_Action_Layers.png|46 px|center]] || [[#Layers_button|Layers button]]&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Set_compass_offset_intransparent.png|46 px|center]] || [[#Compass_calibration_button|Compass calibration button]] &lt;br /&gt;
|-&lt;br /&gt;
| [[File:UI_Android_Action_LLA_Only_Active.png|46 px|center]] || [[#LLA_only_mode_button| LLA only mode button]] &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Layers button ====&lt;br /&gt;
[[File:map_layer_dialog.png|thumb|alt=Layer dialog|Layer dialog]]&lt;br /&gt;
&lt;br /&gt;
Geo content can be configured on the server side to belong to a certain layer. {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
By pressing the layers button, a dialog containing all the available layers will be displayed. By checking/unchecking the layers in the dialog box, users can filter out content that belong to the unwanted layers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Compass calibration button ====&lt;br /&gt;
{{Version/AndroidSince|2.4.5}}/{{Version/WinXSince|2.5.4}}&lt;br /&gt;
&lt;br /&gt;
This button can be used in order to calibrate the compass, e.g. for a demonstration use case or if it points in the wrong direction.&lt;br /&gt;
When it is clicked, the compass will behave as if the current heading was north (for WinX see [http://wiki.augmensys.com/index.php?title=Settings#tab=WinX| CalibrationHeading] setting). Technically, a compass offset setting is used in the background.&lt;br /&gt;
Therefore, in order to use it, do the following:&lt;br /&gt;
* Turn the device so it looks at where you want it to believe that north is.&lt;br /&gt;
* Click the button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== LLA only mode button ====&lt;br /&gt;
{{Version/AndroidSince|2.4.1}}&lt;br /&gt;
&lt;br /&gt;
Sometimes, it is necessary to temporarily turn on [[Location_Manager#Possible_positioning_modes|LLA only mode]]. For example, once the users enter a building where GPS or other locating systems are not reliable enough, they could, however, use the on-site LLA markers to precisely locate themselves. Afterwards, the LLA only mode can be turned off so that the users can continue to use the locating systems outside the building. {{UBIK}} provides a '''LLA only mode button''' in the POI view for scenarios like this.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=150px heights=48px&amp;gt;&lt;br /&gt;
File:UI_Android_Action_LLA_Only_Inactive.png|LLA Only Mode deactivated&lt;br /&gt;
File:UI_Android_Action_LLA_Only_Active.png|LLA Only Mode activated&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If '''LLA only mode''' is '''active''' when entering the POI view the toggle button is not shown.&lt;br /&gt;
&lt;br /&gt;
If '''LLA only mode''' is '''inactive''' when starting the POI view, there is a toggle button in the POI view:&lt;br /&gt;
* A single click on it would switch {{UBIK}} from the current [[Location_Manager#Possible_positioning_modes|positioning mode]] to LLA only mode. {{Tip/Version|In versions 2.4.3 to 2.4.6 a single click would switch {{UBIK}} from the LLA only mode to the default positioning mode (defined in the factory settings).}}&lt;br /&gt;
* Another click from LLA only mode to the previous mode.&lt;br /&gt;
&lt;br /&gt;
The toggling of the positioning mode only happens within the POI view. When the POI view gets in the background (either by closing or by opening a different view) the initial positioning mode gets applied.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When '''LLA only mode''' is '''active''', {{UBIK}} ignores all other location updates except the ones from [[#Scanning LLA markers|scanning LLA markers]]. &lt;br /&gt;
{{Hint|During LLA only mode, {{UBIK}} stops most of its location services. However, services such as GPS require a long initializing time before they can be used. Considering the fact that LLA only mode is often switched on and off for a short period of time, {{UBIK}} keeps such services on &amp;quot;standby&amp;quot; for a while so that the mode switching is smooth and instantaneous.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Location Mode Indicator ====&lt;br /&gt;
{{UBIK}} provides an indicator showing the user if LLA only mode or any other positioning mode is currently active. This indicator is toggled by clicking the [[#LLA_only_mode_button| LLA only mode button]].{{Version/AndroidSince|2.5}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;25%&amp;quot; style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! Description &lt;br /&gt;
|-&lt;br /&gt;
| [[File:Location_Mode_Indicator_Stop.png|46 px|center]] || Shown if LLA only mode is currently active. One should not move as no position updates (except the ones from LLA markers) are obtained.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Location_Mode_Indicator_Walk.png|46 px|center]] || Shown if any positioning mode different from LLA only mode is active. One can move freely as position updates are obtained continuously. &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Flashlight ====&lt;br /&gt;
{{UBIK}} provides a button which toggles the Camera´s Flashlight to increase the readability of optical markers in bad illuminated environments. {{Version/AndroidSince|3.1}} {{Version/WinXSince|3.3}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|POI View]]&lt;br /&gt;
[[Category:POI|POI View]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=POI_View&amp;diff=20939</id>
		<title>POI View</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=POI_View&amp;diff=20939"/>
				<updated>2018-08-23T08:29:48Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Flashlight */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;POI view is the Augmented Reality view that displays Points of Interest (POI's) related to the current location of the mobile device.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
[[File:UI_Android_AR_Unsupported_CPU.jpg|thumb|alt=POI View Unavailable|POI View Unavailable]]&lt;br /&gt;
For the POI view to function and deliver a satisfactory user experience, a device's processors must meet certain requirements (support [http://www.arm.com/products/processors/technologies/neon.php NEON from ARM]). {{Version/AndroidSince|2.4.5}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Devices such as the following are known to lack such a technology and, therefore, can not use the POI view.&lt;br /&gt;
* Samsung Galaxy Tab 10.1 P7500&lt;br /&gt;
* Samsung Galaxy Tab 8.9 P7300&lt;br /&gt;
* Unitech TB100&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Visualization ==&lt;br /&gt;
A typical POI view consists of a real time camera view, a radar view and a few billboards.&lt;br /&gt;
&lt;br /&gt;
=== Radar view ===&lt;br /&gt;
At the top right corner of the POI view, there is a circle shaped radar view which displays all the POI's as yellow dots. The positions of these POI's relative to the device are reflected and constantly updated in the radar view.&lt;br /&gt;
If a billboard is currently selected (the last one touched), its dot in the radar view is marked with red color.&lt;br /&gt;
[[POI Groups|POI groups]] are also represented as billboards in the radar view.&lt;br /&gt;
&lt;br /&gt;
=== Billboard ===&lt;br /&gt;
Billboards are visual representations of POI's. A billboard consists of the following:&lt;br /&gt;
* Icon;&lt;br /&gt;
* Description text;&lt;br /&gt;
* Name text;&lt;br /&gt;
* Text of distance to the current location;&lt;br /&gt;
* Background color representing the status of the POI.&lt;br /&gt;
All these visual elements are updated when either the content or the current location changes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;220&amp;quot; heights=&amp;quot;260&amp;quot;&amp;gt;&lt;br /&gt;
File:UI_Android_POIView.jpg|POI view&lt;br /&gt;
File:UI_Android_POIViewWithSelection.jpg|Selected POI in radar&lt;br /&gt;
File:UI_Android_POIViewColorized.jpg|Colorized Billboard&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Only [[SYSCLS_GEO|Geo contents]] are displayed as billboards, qualifying certain conditions: {{Tip/Version|In versions up to 2.4.3 an object had to be in the infrastructure in order to be shown.}}&lt;br /&gt;
* If a [[HowTo:Use_POI_Groups|POI group]] is currently open/active, objects that are shown are:&lt;br /&gt;
** [[SYSCLS_POIGROUPITEM|POI group items]] that belong to the current group;&lt;br /&gt;
** Objects that are '''not''' POI group items (and do not belong to any group).&lt;br /&gt;
* If a layer is currently selected, objects that are shown are: {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
** [[SYSCLS_MAPITEM|Items]] of the current Layer; {{Tip/Version| Objects are not filtered by layers in previous versions.}}&lt;br /&gt;
** Objects that are '''not''' layer items.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Interaction ==&lt;br /&gt;
&lt;br /&gt;
=== Interacting with billboards ===&lt;br /&gt;
When a user touches a billboard, a [[POI_dialog|dialog]] for that particular POI will show up.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Optical Markers ===&lt;br /&gt;
&lt;br /&gt;
Two types of optical Markers can be scanned from the POI view: [[Object Proximity Positioning#LLA_markers|LLA Markers]]  and [[AR-Marker|AR-Markers]]. The former can be used for device pose estimation ([[Object Proximity Positioning]]), whereas the latter can be used for [[AR-Marker#AR-Marker_Device_Pose_Estimation|device pose estimation]] and [[AR-Marker#Direct_Augmentation|direct augmentation]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Action items (Android) ===&lt;br /&gt;
The following action items are available in the POI view's action bar.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;25%&amp;quot; style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! Item name &lt;br /&gt;
|-&lt;br /&gt;
| [[File:UI_Android_Action_Layers.png|46 px|center]] || [[#Layers_button|Layers button]]&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Set_compass_offset_intransparent.png|46 px|center]] || [[#Compass_calibration_button|Compass calibration button]] &lt;br /&gt;
|-&lt;br /&gt;
| [[File:UI_Android_Action_LLA_Only_Active.png|46 px|center]] || [[#LLA_only_mode_button| LLA only mode button]] &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Layers button ====&lt;br /&gt;
[[File:map_layer_dialog.png|thumb|alt=Layer dialog|Layer dialog]]&lt;br /&gt;
&lt;br /&gt;
Geo content can be configured on the server side to belong to a certain layer. {{Version/AndroidSince|2.5.2}}&lt;br /&gt;
By pressing the layers button, a dialog containing all the available layers will be displayed. By checking/unchecking the layers in the dialog box, users can filter out content that belong to the unwanted layers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Compass calibration button ====&lt;br /&gt;
{{Version/AndroidSince|2.4.5}}/{{Version/WinXSince|2.5.4}}&lt;br /&gt;
&lt;br /&gt;
This button can be used in order to calibrate the compass, e.g. for a demonstration use case or if it points in the wrong direction.&lt;br /&gt;
When it is clicked, the compass will behave as if the current heading was north (for WinX see [http://wiki.augmensys.com/index.php?title=Settings#tab=WinX| CalibrationHeading] setting). Technically, a compass offset setting is used in the background.&lt;br /&gt;
Therefore, in order to use it, do the following:&lt;br /&gt;
* Turn the device so it looks at where you want it to believe that north is.&lt;br /&gt;
* Click the button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== LLA only mode button ====&lt;br /&gt;
{{Version/AndroidSince|2.4.1}}&lt;br /&gt;
&lt;br /&gt;
Sometimes, it is necessary to temporarily turn on [[Location_Manager#Possible_positioning_modes|LLA only mode]]. For example, once the users enter a building where GPS or other locating systems are not reliable enough, they could, however, use the on-site LLA markers to precisely locate themselves. Afterwards, the LLA only mode can be turned off so that the users can continue to use the locating systems outside the building. {{UBIK}} provides a '''LLA only mode button''' in the POI view for scenarios like this.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=150px heights=48px&amp;gt;&lt;br /&gt;
File:UI_Android_Action_LLA_Only_Inactive.png|LLA Only Mode deactivated&lt;br /&gt;
File:UI_Android_Action_LLA_Only_Active.png|LLA Only Mode activated&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If '''LLA only mode''' is '''active''' when entering the POI view the toggle button is not shown.&lt;br /&gt;
&lt;br /&gt;
If '''LLA only mode''' is '''inactive''' when starting the POI view, there is a toggle button in the POI view:&lt;br /&gt;
* A single click on it would switch {{UBIK}} from the current [[Location_Manager#Possible_positioning_modes|positioning mode]] to LLA only mode. {{Tip/Version|In versions 2.4.3 to 2.4.6 a single click would switch {{UBIK}} from the LLA only mode to the default positioning mode (defined in the factory settings).}}&lt;br /&gt;
* Another click from LLA only mode to the previous mode.&lt;br /&gt;
&lt;br /&gt;
The toggling of the positioning mode only happens within the POI view. When the POI view gets in the background (either by closing or by opening a different view) the initial positioning mode gets applied.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When '''LLA only mode''' is '''active''', {{UBIK}} ignores all other location updates except the ones from [[#Scanning LLA markers|scanning LLA markers]]. &lt;br /&gt;
{{Hint|During LLA only mode, {{UBIK}} stops most of its location services. However, services such as GPS require a long initializing time before they can be used. Considering the fact that LLA only mode is often switched on and off for a short period of time, {{UBIK}} keeps such services on &amp;quot;standby&amp;quot; for a while so that the mode switching is smooth and instantaneous.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Location Mode Indicator ====&lt;br /&gt;
{{UBIK}} provides an indicator showing the user if LLA only mode or any other positioning mode is currently active. This indicator is toggled by clicking the [[#LLA_only_mode_button| LLA only mode button]].{{Version/AndroidSince|2.5}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; | width = &amp;quot;25%&amp;quot; style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Icon !! Description &lt;br /&gt;
|-&lt;br /&gt;
| [[File:Location_Mode_Indicator_Stop.png|46 px|center]] || Shown if LLA only mode is currently active. One should not move as no position updates (except the ones from LLA markers) are obtained.&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Location_Mode_Indicator_Walk.png|46 px|center]] || Shown if any positioning mode different from LLA only mode is active. One can move freely as position updates are obtained continuously. &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Flashlight ====&lt;br /&gt;
{{UBIK}} provides a button which toggles the Camera´s Flashlight to increase the readability of optical markers in bad illuminated environments. {{Version/AndroidSince|3.1}} {{Version/AndroidSince|3.3}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Client|POI View]]&lt;br /&gt;
[[Category:POI|POI View]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20934</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20934"/>
				<updated>2018-08-09T06:26:29Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
* Fixed an issue, where no visual feedback was given when clicking on Child Items.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20933</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20933"/>
				<updated>2018-08-09T06:09:07Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
* The in-app PDF viewer now re-renders documents after zooming to provide better readability.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
* Fixed an issue, where the FlipView was not updated once the content was loaded.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	<entry>
		<id>https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20922</id>
		<title>Version 3.3 (WinX)</title>
		<link rel="alternate" type="text/html" href="https://wiki.augmensys.com/index.php?title=Version_3.3_(WinX)&amp;diff=20922"/>
				<updated>2018-08-06T09:35:17Z</updated>
		
		<summary type="html">&lt;p&gt;CHI: /* Bugfixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 3.3.0 =&lt;br /&gt;
=== New features ===&lt;br /&gt;
* A new control for viewing documents with 3D content was added. It allows basic pinch/zoom/selection actions with touch and mouse and currently supports .obj, .3ds and .stl formats, without textures. It is now the default document viewer for UBK documents with .obj extension, both in DetailsPage as well as DocumentsPage.&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;br /&gt;
&lt;br /&gt;
=== Enhancements ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes ===&lt;br /&gt;
* Fixed an issue, where the Annotate and Hotspotting button were enabled on non-classified documents.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Category/Version2|{{PAGENAME}}}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Version 3.3|Version 3.3 (WinX)]]&lt;/div&gt;</summary>
		<author><name>CHI</name></author>	</entry>

	</feed>