Difference between revisions of "Version 1.3 (Xamarin)"
m (NWE moved page Version 1.3 Xamarin to Version 1.3 (Xamarin)) |
|||
(18 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
= Release Notes = | = Release Notes = | ||
+ | |||
+ | == Availability == | ||
+ | {{key press|Android: Store}}{{key press|iOS: Store}}: Publicly available in Google Play Store / Apple App Store. | ||
+ | |||
+ | {{key press|Android: Store Beta}}: Publicly available in Google Play Store as beta versions. You can opt in or out of the beta at any time in the store. | ||
+ | |||
+ | {{key press|iOS: Store Beta}}: Available through Apple App Store's [https://testflight.apple.com/join/ijGm4j2h invitation link]. | ||
+ | |||
+ | {{key press|UWP: App Center}}{{key press|Android: App Center}}{{key press|iOS: App Center}}: Available to those who have access to the Augmensys App Center. | ||
+ | |||
+ | == Release == | ||
+ | === 1.3.22 on 2022-07-15 {{key press|Android: Store}} === | ||
+ | * (Android only) Fixed an issue where users could not enter {{key press|,}} as the decimal point in property editing. However, there is still an issue with the Samsung keyboard, see [[#Known_issues|Known issues]]. | ||
+ | |||
+ | === 1.3.18 on 2022-02-02 {{key press|Android: Store}} {{key press|iOS: Store}} {{key press|UWP: App Center}} === | ||
+ | * Fixed an issue where it’s impossible to enter decimal points for double property values. | ||
+ | |||
+ | === 1.3.17 on 2022-01-28 {{key press|Android: Store}} {{key press|iOS: Store}} {{key press|UWP: App Center}} === | ||
+ | * Same as Beta 1.3.17. | ||
+ | |||
+ | == Beta == | ||
+ | |||
+ | === 1.3.17 on 2022-01-21 {{key press|Android: Store Beta}} {{key press|iOS: Store Beta}} {{key press|UWP: App Center}} === | ||
+ | * Fixed an issue where the default content icon is not visible. | ||
+ | * Fixed an issue where the content page turns blank after quickly browsing back to an object which is just committed. | ||
+ | * Fixed an issue where the signing area is not visually obvious in the signature editor. | ||
+ | * Fixed an issue where setting values to non string properties through selective items is impossible. | ||
+ | |||
+ | === 1.3.16 on 2022-01-14 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
+ | * [[Activity:PushPopUpMessage (Activity)|Popup pushes]] now translate into App notifications | ||
+ | |||
+ | === 1.3.13 on 2022-01-10 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
+ | * String/Text properties can now be configured with [[MetaProperty#Text_2|length restrictions]] with which client users must comply. | ||
+ | |||
+ | === 1.3.10 on 2021-12-23 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
+ | * Fixed an issue where the map page doesn’t open when UBIKMapArea is customized. | ||
+ | |||
+ | === 1.3.9 on 2021-12-23 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
+ | * Fixed an issue where the app incorrectly takes the geo location of an object when showing it on map. | ||
+ | |||
+ | === 1.3.8 on 2021-12-22 {{key press|iOS: App Store}} === | ||
+ | This is the same version as 1.3.6. | ||
+ | |||
== Preview == | == Preview == | ||
+ | |||
+ | === 1.3.6 on 2021-12-20 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
+ | * Fixed an issue where POIs are displayed with unwanted horizontal offsets on screens with high pixel density. | ||
=== 1.3.4 on 2021-12-17 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | === 1.3.4 on 2021-12-17 {{key press|Android: App Center}} {{key press|iOS: App Center}} {{key press|UWP: App Center}} === | ||
Line 19: | Line 65: | ||
* In rare cases, a query page appears blank without list content after navigating back from another query page. In such cases, a workaround is to reopen it or pull the list area to refresh. | * In rare cases, a query page appears blank without list content after navigating back from another query page. In such cases, a workaround is to reopen it or pull the list area to refresh. | ||
* In rare cases, selection of PDF annotations might misbehave on iOS. | * In rare cases, selection of PDF annotations might misbehave on iOS. | ||
+ | * Currently, the Samsung keyboard doesn't show {{key press|,}} at all, regardless of the current language/locale setting of the device. Please use a different virtual keyboard (e.g. Gboard from Google) instead if {{key press|.}} is unacceptable. | ||
= XAML changes = | = XAML changes = | ||
− | + | == [[Map_View_(Xamarin)#Show_on_map|Show on map]] == | |
+ | To enable the selected effect, you need to add <code>SelectedPOI="{Binding SelectedPOI.WorldARItem}" ContextObjectId="{Binding ContextObjectId}"</code> to the <code>mapsUi:MapView</code> control in the existing (if any) UBIKMapArea template. | ||
+ | |||
+ | == [[POI_View_(Xamarin)#Show_in_AR|Show in AR]] == | ||
+ | The selected effect is implemented in the following templates. | ||
+ | * UBIKWorldViewItemArea; | ||
+ | * UBIKDisplayViewItemArea; | ||
+ | * UBIKCameraViewItemArea. | ||
+ | If you have customized these templates, they need to be updated to display the effect. Below is the example effect added in the new default templates. | ||
+ | <source lang = "xml"> | ||
+ | <Grid x:Name="PoiGrid" xmlns:behaviors="clr-namespace:UBIK.CPL.Behaviors;assembly=UBIK.CPL"> | ||
+ | <Grid.Behaviors> | ||
+ | <behaviors:DataChangedBehavior | ||
+ | Binding="{Binding IsSelected}" | ||
+ | ComparisonCondition="Equal" | ||
+ | Value="True"> | ||
+ | <behaviors:ScaleAction FinalScale="2" TargetObject="{Binding Source={x:Reference PoiGrid}}" /> | ||
+ | </behaviors:DataChangedBehavior> | ||
+ | <behaviors:DataChangedBehavior | ||
+ | Binding="{Binding IsSelected}" | ||
+ | ComparisonCondition="Equal" | ||
+ | Value="False"> | ||
+ | <behaviors:ScaleAction FinalScale="1" TargetObject="{Binding Source={x:Reference PoiGrid}}" /> | ||
+ | </behaviors:DataChangedBehavior> | ||
+ | </Grid.Behaviors> | ||
+ | <Frame | ||
+ | BorderColor="Orange" | ||
+ | HasShadow="True" | ||
+ | IsVisible="{Binding IsSelected}" /> | ||
+ | <!-- Here goes the actual content of the POI --> | ||
+ | </Grid> | ||
+ | </source> | ||
+ | * Through the use of those two behaviors, the POI is scaled up/down when it becomes selected/unselected; | ||
+ | * The frame with a border color highlights the POI when it's selected. | ||
+ | |||
+ | {{Hint|You can implement different effects as you like.}} | ||
<headertabs /> | <headertabs /> |