Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Uno.Gallery/Platforms/WebAssembly/aot.profile
Binary file not shown.
2 changes: 1 addition & 1 deletion Uno.Gallery/Views/Shell.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Uno.Gallery;

public sealed partial class Shell : UserControl
{
private const string NoSuggestionsFoundText = "No suggestions found";
private const string NoSuggestionsFoundText = "TEST";

private static IEnumerable<Sample> SearchSamples(string query)
=> App.GetSamples()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
stages:
- stage: Android_Publish
displayName: 'Android Publish'
displayName: 'Android Publish (Canary)'
dependsOn: Android

jobs:
Expand All @@ -26,8 +26,8 @@
displayName: 'Play Store Publish'
inputs:
serviceConnection: 'Uno Platform Google Play'
applicationId: 'uno.platform.gallery.native_canary'
bundleFile: '$(Pipeline.Workspace)/drop/publish/uno.platform.gallery.skia_canary-Signed.aab'
applicationId: 'uno.platform.gallery_native_canary'
bundleFile: '$(Pipeline.Workspace)/drop/publish/uno.platform.gallery_native_canary-Signed.aab'
track: 'alpha'

- deployment: 'Android_Publish_Skia'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
stages:
- stage: Catalyst_Publish
displayName: 'Catalyst Publish'
displayName: 'Catalyst Publish (Canary)'
dependsOn: Apple

jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
stages:
- stage: iOS_Publish
displayName: 'iOS Publish'
displayName: 'iOS Publish (Canary)'
dependsOn: Apple

jobs:
Expand Down
6 changes: 3 additions & 3 deletions build/templates/canary-publish/stage-publish-wasm-canary.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
stages:
- stage: WebAssembly_Publish
displayName: 'WebAssembly'
displayName: 'WebAssembly (Canary)'
dependsOn: WebAssembly

jobs:
Expand Down Expand Up @@ -30,7 +30,7 @@
skip_api_build: true
is_static_export: false
verbose: false
azure_static_web_apps_api_token: '$(PROD_SWA_TOKEN)'
azure_static_web_apps_api_token: '$(DEV_SWA_TOKEN)'
deployment_environment: 'canary-dom'

- deployment: 'WebAssembly_Publish_SKIA'
Expand Down Expand Up @@ -59,5 +59,5 @@
skip_api_build: true
is_static_export: false
verbose: false
azure_static_web_apps_api_token: '$(PROD_SWA_TOKEN)'
azure_static_web_apps_api_token: '$(DEV_SWA_TOKEN)'
deployment_environment: 'canary-skia'
36 changes: 14 additions & 22 deletions build/templates/canary-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,6 @@ steps:
packageAuthor: 'nventive,uno platform'
summaryFile: '$(Build.ArtifactStagingDirectory)/Canary.md'

- task: unoplatformCanaryUpdater@1
displayName: 'Canary Update (skia-everywhere)'
condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/canaries/skia-everywhere')
inputs:
solution: '$(build.sourcesdirectory)'
usePrivateFeed: false
useNuGetOrg: true
mergeBranch: true
branchToMerge: master
nugetUpdaterVersion: '1.2.10'
nugetVersion: dev
packageAuthor: 'nventive,unoplatform,uno platform'
summaryFile: '$(Build.ArtifactStagingDirectory)/Summary.md'
resultFile: '$(Build.ArtifactStagingDirectory)/Results.json'
# additionalPublicSources: 'https://pkgs.dev.azure.com/uno-platform/1dd81cbd-cb35-41de-a570-b0df3571a196/_packaging/Features/nuget/v3/index.json'

#- pwsh: |
# cd $(build.sourcesdirectory)
# dotnet nuget add source https://pkgs.dev.azure.com/uno-platform/1dd81cbd-cb35-41de-a570-b0df3571a196/_packaging/Features/nuget/v3/index.json -n unofeatures
Expand All @@ -51,25 +35,33 @@ steps:
gci -r -include "Uno.Gallery.csproj" |
foreach-object {
$a = $_.fullname; ( get-content $a ) |
foreach-object { $_ -replace "uno.platform.gallery.skia","uno.platform.gallery.skia-canary" } |
foreach-object { $_ -replace "uno\.platform\.gallery\.native","uno.platform.gallery.native-canary" } |
set-content $a }
displayName: 'Adjust App ID (skia)'
condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/canaries')
- pwsh: |
gci -r -include "Uno.Gallery.csproj" |
foreach-object {
$a = $_.fullname; ( get-content $a ) |
foreach-object { $_ -replace "uno\.platform\.gallery_native","uno.platform.gallery_native-canary" } |
set-content $a }
displayName: 'Adjust info.plist bundle name (skia)'
displayName: 'Adjust App ID (Android Native)'
condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/canaries')

- pwsh: |
gci -r -include "Uno.Gallery.csproj" |
foreach-object {
$a = $_.fullname; ( get-content $a ) |
foreach-object { $_ -replace "com.nventive.uno.ui.demo","com.nventive.uno.ui.demo.canary" } |
foreach-object { $_ -replace "com\.nventive\.uno\.ui\.demo","com.nventive.uno.ui.demo.canary" } |
set-content $a }
displayName: 'Adjust info.plist bundle name (Android)'
displayName: 'Adjust App ID (Android Skia)'
condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/canaries')

- pwsh: |
gci -r -include "Uno.Gallery.csproj" |
foreach-object {
$a = $_.fullname; ( get-content $a ) |
foreach-object { $_ -replace "com.nventive.uno.gallery","com.nventive.uno.gallery-canary" } |
foreach-object { $_ -replace "com\.nventive\.uno\.gallery","com.nventive.uno.gallery-canary" } |
set-content $a }
displayName: 'Adjust info.plist bundle name (Catalyst)'
displayName: 'Adjust App ID (Catalyst)'
condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/canaries')
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
},
// To update the version of Uno please update the version of the Uno.Sdk here. See https://aka.platform.uno/upgrade-uno-packages for more information.
"msbuild-sdks": {
"Uno.Sdk": "6.1.0-dev.102"
"Uno.Sdk": "6.1.0-dev.230"
}
}
Loading