Skip to content

Commit

Permalink
Updates to the AppSource apps UX (#1975)
Browse files Browse the repository at this point in the history
  • Loading branch information
SBalslev authored Sep 10, 2024
1 parent 8fe01a0 commit 98ee98a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ page 2516 "AppSource Product Details"
PageType = Card;
ApplicationArea = All;
Editable = false;
Caption = 'App Overview';
Caption = 'App overview';
DataCaptionExpression = AppSourceJsonUtilities.GetStringValue(ProductObject, 'displayName');

InherentEntitlements = X;
Expand Down Expand Up @@ -65,6 +65,7 @@ page 2516 "AppSource Product Details"
{
Caption = 'Last Modified Date Time';
ToolTip = 'Specifies the date the offer was last updated.';
Visible = false;
}
}
group(DescriptionGroup)
Expand Down Expand Up @@ -155,10 +156,10 @@ page 2516 "AppSource Product Details"
{
action(OpenInAppSource)
{
Caption = 'View in AppSource';
Caption = 'View on AppSource';
Scope = Page;
Image = Open;
ToolTip = 'Opens the app offer in the AppSource marketplace.';
Image = Info;
ToolTip = 'Opens the app on AppSource.';

trigger OnAction()
begin
Expand Down Expand Up @@ -188,9 +189,9 @@ page 2516 "AppSource Product Details"

action(InstallFromAppSource)
{
Caption = 'Install From AppSource';
Caption = 'Install from AppSource';
Scope = Page;
Image = Insert;
Image = Download;
ToolTip = 'Installs the app from Microsoft AppSource.';
Enabled = (not CurrentRecordCanBeUninstalled) and (not CurrentRecordCanBeInstalled);
Visible = (not CurrentRecordCanBeUninstalled) and (not CurrentRecordCanBeInstalled);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using System.Environment.Configuration;
page 2515 "AppSource Product List"
{
PageType = List;
Caption = 'Microsoft AppSource Apps';
Caption = 'Microsoft AppSource apps';
ApplicationArea = All;
UsageCategory = Administration;
Editable = false;
Expand Down Expand Up @@ -96,20 +96,20 @@ page 2515 "AppSource Product List"
{
area(Promoted)
{
actionref(AppSource_Promoted; OpenAppSource) { }
actionref(Open_Promoted; OpenInAppSource) { }
actionref(Refresh_Promoted; UpdateProducts) { }
actionref(AppSource_Promoted; OpenAppSource) { }
actionref(ShowSettings_Promoted; ShowSettings) { }
}

area(Processing)
{
action(OpenAppSource)
{
Caption = 'View AppSource';
Caption = 'Go to AppSource';
Scope = Page;
Image = OpenWorksheet;
ToolTip = 'View all apps in AppSource';
Image = GoTo;
ToolTip = 'View all apps on AppSource';

trigger OnAction()
begin
Expand All @@ -119,10 +119,10 @@ page 2515 "AppSource Product List"

action(OpenInAppSource)
{
Caption = 'View in AppSource';
Caption = 'View on AppSource';
Scope = Repeater;
Image = Open;
ToolTip = 'View selected app in AppSource';
Image = Info;
ToolTip = 'View selected app on AppSource';

trigger OnAction()
begin
Expand Down

0 comments on commit 98ee98a

Please sign in to comment.