From c72c261f96444c6da1cb60cc80c107e47b079789 Mon Sep 17 00:00:00 2001 From: Anubhav Agrawal <68989156+Anubhvv@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:49:19 +0530 Subject: [PATCH] release-version-0.1.41 (#559) * release-version-0.1.41 * release notes change --------- Co-authored-by: Anubhav Agrawal --- FluentUI.Demo/build.gradle | 4 ++-- .../src/main/assets/dogfood-release-notes.txt | 14 ++++---------- .../main/java/com/microsoft/fluentuidemo/Demos.kt | 12 ++++++------ config.gradle | 12 ++++++------ ...tui-android-modular-build-universal-publish.yml | 2 +- 5 files changed, 19 insertions(+), 25 deletions(-) diff --git a/FluentUI.Demo/build.gradle b/FluentUI.Demo/build.gradle index 209eaf338..02a7fdf67 100644 --- a/FluentUI.Demo/build.gradle +++ b/FluentUI.Demo/build.gradle @@ -13,8 +13,8 @@ android { applicationId 'com.microsoft.fluentuidemo' minSdkVersion 21 targetSdkVersion 30 - versionCode 75 - versionName '0.1.40' + versionCode 76 + versionName '0.1.41' testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" // Forcing emoji2 version as a workaround for not moving to Android 34 during BOM update. diff --git a/FluentUI.Demo/src/main/assets/dogfood-release-notes.txt b/FluentUI.Demo/src/main/assets/dogfood-release-notes.txt index 23bdecd5c..2802138f8 100644 --- a/FluentUI.Demo/src/main/assets/dogfood-release-notes.txt +++ b/FluentUI.Demo/src/main/assets/dogfood-release-notes.txt @@ -1,17 +1,11 @@ -Release Version 0.1.39: +Release Version 0.1.41: What's New: Fluent V2: - Fix/Enhancement: - 1. Introducing Fluent Banners: We are excited to introduce Fluent Banners, a novel component designed for displaying banners on the screen. - 2. The BottomDrawer component now impeccably adheres to window insets, ensuring that it does not obstruct system bars. - 3. PillBar Talkback Enhancements: We have improved the accessibility of the PillBar component by enabling Talkback to announce the position of each pill button within the bar. - 4. Drawer and Bottom Drawer Scrim Behavior Control: Users now have the flexibility to disable the automatic closure of drawers upon tapping the scrim. This allows for a more customized user experience. - 5. Introducing a new parameter for the Drawer component that enables you to define a callback function when the scrim is tapped, enhancing the interactivity of your app. - 6. Provides an enhanced localization support for strings within the library, ensuring a more inclusive and accessible user experience. + Fix/Enhancement: + 1. Added param description for better understanding of the API. Fluent V1: Fix/Enhancement: - 1. In the EXPANDED state of PersistentBottomSheet, Talkback focus now remains on visible elements, eliminating navigation to hidden background views. - 2. Implementing Talkback support to announce the positions of individual items within the sheet. \ No newline at end of file + 1. Resolved an issue with the persistent bottom sheet’s talkback functionality, where focus was incorrectly not shifting to the background elements post-collapsing of the sheet. This enhancement ensures a more seamless user experience. \ No newline at end of file diff --git a/FluentUI.Demo/src/main/java/com/microsoft/fluentuidemo/Demos.kt b/FluentUI.Demo/src/main/java/com/microsoft/fluentuidemo/Demos.kt index 702b7df2a..cad505a99 100644 --- a/FluentUI.Demo/src/main/java/com/microsoft/fluentuidemo/Demos.kt +++ b/FluentUI.Demo/src/main/java/com/microsoft/fluentuidemo/Demos.kt @@ -140,14 +140,14 @@ val V1DEMO = arrayListOf( Demo(AVATAR_GROUP_VIEW, AvatarGroupViewActivity::class), Demo(BASIC_INPUTS, BasicInputsActivity::class), Demo(BOTTOM_NAVIGATION, BottomNavigationActivity::class), - Demo(BOTTOM_SHEET, BottomSheetActivity::class, Badge.Modified), + Demo(BOTTOM_SHEET, BottomSheetActivity::class), Demo(CALENDAR_VIEW, CalendarViewActivity::class), Demo(CONTEXTUAL_COMMAND_BAR, ContextualCommandBarActivity::class), Demo(DATE_TIME_PICKER, DateTimePickerActivity::class), Demo(DRAWER, DrawerActivity::class), Demo(LIST_ITEM_VIEW, ListItemViewActivity::class), Demo(PEOPLE_PICKER_VIEW, PeoplePickerViewActivity::class), - Demo(PERSISTENT_BOTTOM_SHEET, PersistentBottomSheetActivity::class, Badge.APIBreak), + Demo(PERSISTENT_BOTTOM_SHEET, PersistentBottomSheetActivity::class, Badge.Modified), Demo(PERSONA_CHIP_VIEW, PersonaChipViewActivity::class), Demo(PERSONA_LIST_VIEW, PersonaListViewActivity::class), Demo(PERSONA_VIEW, PersonaViewActivity::class), @@ -166,10 +166,10 @@ val V2DEMO = arrayListOf( Demo(V2AVATAR_CAROUSEL, V2AvatarCarouselActivity::class), Demo(V2AVATAR_GROUP, V2AvatarGroupActivity::class), Demo(V2BADGE, V2BadgeActivity::class), - Demo(V2BANNER, V2BannerActivity::class, Badge.New), + Demo(V2BANNER, V2BannerActivity::class), Demo(V2BASIC_CHIP, V2BasicChipActivity::class), Demo(V2BASIC_CONTROLS, V2BasicControlsActivity::class), - Demo(V2BOTTOM_DRAWER, V2BottomDrawerActivity::class, Badge.APIBreak), + Demo(V2BOTTOM_DRAWER, V2BottomDrawerActivity::class), Demo(V2BOTTOM_SHEET, V2BottomSheetActivity::class), Demo(V2BUTTON, V2ButtonsActivity::class), Demo(V2CARD, V2CardActivity::class), @@ -177,7 +177,7 @@ val V2DEMO = arrayListOf( Demo(V2CITATION, V2CitationActivity::class), Demo(V2CONTEXTUAL_COMMAND_BAR, V2ContextualCommandBarActivity::class), Demo(V2DIALOG, V2DialogActivity::class), - Demo(V2DRAWER, V2DrawerActivity::class, Badge.APIBreak), + Demo(V2DRAWER, V2DrawerActivity::class), Demo(V2LABEL, V2LabelActivity::class), Demo(V2LIST_ITEM, V2ListItemActivity::class), Demo(V2MENU, V2MenuActivity::class), @@ -188,7 +188,7 @@ val V2DEMO = arrayListOf( Demo(V2PROGRESS, V2ProgressActivity::class), Demo(V2SCAFFOLD, V2ScaffoldActivity::class), Demo(V2SEARCHBAR, V2SearchBarActivity::class), - Demo(V2SEGMENTED_CONTROL, V2SegmentedControlActivity::class, Badge.Modified), + Demo(V2SEGMENTED_CONTROL, V2SegmentedControlActivity::class), Demo(V2SHIMMER, V2ShimmerActivity::class), Demo(V2SIDE_RAIL, V2SideRailActivity::class), Demo(V2SNACKBAR, V2SnackbarActivity::class), diff --git a/config.gradle b/config.gradle index 8e1a18c9a..d2ac69034 100644 --- a/config.gradle +++ b/config.gradle @@ -12,11 +12,11 @@ * fluentui_drawer and FluentUI should increment their respective version ids */ project.ext.fluentui_calendar_versionid = '0.0.29' -project.ext.fluentui_controls_versionid = '0.1.19' +project.ext.fluentui_controls_versionid = '0.1.20' project.ext.fluentui_core_versionid = '0.1.31' project.ext.fluentui_listitem_versionid = '0.1.21' project.ext.fluentui_tablayout_versionid = '0.1.15' -project.ext.fluentui_drawer_versionid = '0.1.24' +project.ext.fluentui_drawer_versionid = '0.1.25' project.ext.fluentui_ccb_versionid = '0.1.15' project.ext.fluentui_others_versionid = '0.1.8' project.ext.fluentui_transients_versionid = '0.0.35' @@ -27,13 +27,13 @@ project.ext.fluentui_persona_versionid = '0.1.17' project.ext.fluentui_progress_versionid = '0.1.10' project.ext.fluentui_icons_versionid = '0.1.8' project.ext.fluentui_notification_versionid = '0.1.14' -project.ext.FluentUI_versionid = '0.1.40' +project.ext.FluentUI_versionid = '0.1.41' project.ext.fluentui_calendar_version_code = 29 -project.ext.fluentui_controls_version_code = 20 +project.ext.fluentui_controls_version_code = 21 project.ext.fluentui_core_version_code = 54 project.ext.fluentui_listitem_version_code = 46 project.ext.fluentui_tablayout_version_code = 40 -project.ext.fluentui_drawer_version_code = 48 +project.ext.fluentui_drawer_version_code = 49 project.ext.fluentui_ccb_version_code = 39 project.ext.fluentui_others_version_code = 31 project.ext.fluentui_transients_version_code = 35 @@ -44,7 +44,7 @@ project.ext.fluentui_persona_version_code = 42 project.ext.fluentui_progress_version_code = 35 project.ext.fluentui_icons_version_code = 9 project.ext.fluentui_notification_version_code = 15 -project.ext.FluentUI_version_code = 75 +project.ext.FluentUI_version_code = 76 project.ext.license_type = 'MIT License' project.ext.license_url = 'https://github.com/microsoft/fluentui-android/blob/master/LICENSE' project.ext.github_url = 'https://github.com/microsoft/fluentui-android' diff --git a/fluentui-android-modular-build-universal-publish.yml b/fluentui-android-modular-build-universal-publish.yml index 7a0092b13..54a2de9fe 100644 --- a/fluentui-android-modular-build-universal-publish.yml +++ b/fluentui-android-modular-build-universal-publish.yml @@ -57,6 +57,6 @@ jobs: vstsFeedPublish: 'Office' vstsFeedPackagePublish: 'fluentuiandroid' versionOption: 'custom' - versionPublish: '0.1.40' + versionPublish: '0.1.41' packagePublishDescription: 'Fluent Universal Package' publishedPackageVar: 'fluent package'