Skip to content

Commit 3790148

Browse files
authored
Merge branch 'microsoft:master' into master
2 parents e848067 + bcf1a1b commit 3790148

File tree

4,564 files changed

+91102
-19001
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,564 files changed

+91102
-19001
lines changed

DevOpsPipelineDefinitions/publish-pipeline.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ extends:
4545

4646
steps:
4747

48+
# Allow scripts to access the system token.
49+
# Fetch all history
50+
# Don't fetch tags.
51+
- checkout: self
52+
clean: true
53+
persistCredentials: true
54+
fetchDepth: 0
55+
fetchTags: false
56+
57+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
58+
# NOTE: Remove the next 3 steps once issue is fixed.
4859
- powershell: |
4960
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5061
displayName: "Uninstall Azure CLI"
@@ -53,11 +64,12 @@ extends:
5364
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5465
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5566
displayName: "Install Azure CLI 2.76.0"
67+
workingDirectory: $(Agent.TempDirectory)
5668
5769
- script: |
5870
az version
5971
displayName: "Check Azure CLI version"
60-
72+
6173
# Downloads all the setup files and its dependencies.
6274
- task: AzureCLI@2
6375
displayName: 'Azure Setup'

DevOpsPipelineDefinitions/rebuild-pipeline.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,16 @@ extends:
4242
steps:
4343

4444
# Allow scripts to access the system token.
45+
# Don't fetch all history.
46+
# Don't fetch tags.
4547
- checkout: self
4648
persistCredentials: true
4749
clean: true
50+
fetchDepth: 1
51+
fetchTags: false
4852

53+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
54+
# NOTE: Remove the next 3 steps once issue is fixed.
4955
- powershell: |
5056
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5157
displayName: "Uninstall Azure CLI"
@@ -54,6 +60,7 @@ extends:
5460
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5561
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5662
displayName: "Install Azure CLI 2.76.0"
63+
workingDirectory: $(Agent.TempDirectory)
5764
5865
- script: |
5966
az version

DevOpsPipelineDefinitions/rebuild-rest-pipeline.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,6 @@ extends:
3838
- checkout: none
3939
persistCredentials: true
4040

41-
- powershell: |
42-
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
43-
displayName: "Uninstall Azure CLI"
44-
45-
- powershell: |
46-
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
47-
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
48-
displayName: "Install Azure CLI 2.76.0"
49-
50-
- script: |
51-
az version
52-
displayName: "Check Azure CLI version"
53-
5441
# Downloads all the setup files and its dependencies.
5542
- task: AzureCLI@1
5643
displayName: 'Azure Setup'

DevOpsPipelineDefinitions/validation-pipeline.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,17 @@ extends:
4545
timeoutInMinutes: 0
4646

4747
steps:
48+
# Allow scripts to access the system token.
49+
# Fetch all history.
50+
# Don't fetch tags.
4851
- checkout: self
49-
persistCredentials:
50-
52+
persistCredentials: true
53+
clean: true
54+
fetchDepth: 0
55+
fetchTags: false
56+
57+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
58+
# NOTE: Remove the next 3 steps once issue is fixed.
5159
- powershell: |
5260
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5361
displayName: "Uninstall Azure CLI"
@@ -56,6 +64,7 @@ extends:
5664
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5765
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5866
displayName: "Install Azure CLI 2.76.0"
67+
workingDirectory: $(Agent.TempDirectory)
5968
6069
- script: |
6170
az version

doc/manifest/schema/1.10.0/locale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ ManifestVersion: 1.10.0 # The manifest syntax version
212212
</details>
213213

214214
<details>
215-
<summary><b>Agreements/b> - List of package agreements</summary>
215+
<summary><b>Agreements</b> - List of package agreements</summary>
216216

217217
**Optional Field**
218218

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
2+
PackageIdentifier: 108thecitizen.DesktopTileLauncher
3+
PackageVersion: 0.3.4
4+
5+
InstallerType: zip
6+
Installers:
7+
- Architecture: x64
8+
InstallerUrl: https://github.com/108thecitizen/DesktopTileLauncher/releases/download/v0.3.4/DesktopTileLauncher-v0.3.4-onedir-win-x64.zip
9+
InstallerSha256: 51cae7211b25419635152c0f4860dc3955be04cc7abf8cae41b3b6b222a893b4
10+
NestedInstallerType: portable
11+
NestedInstallerFiles:
12+
- RelativeFilePath: DesktopTileLauncher-v0.3.4.exe
13+
PortableCommandAlias: desktoptilelauncher
14+
# Optional for portable CLI tools; omitted because this is a GUI app:
15+
# PortableCommandAlias: desktoptilelauncher
16+
17+
ManifestType: installer
18+
ManifestVersion: 1.10.0
19+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
2+
PackageIdentifier: 108thecitizen.DesktopTileLauncher
3+
PackageVersion: 0.3.4
4+
PackageLocale: en-US
5+
6+
Publisher: 108thecitizen
7+
PublisherUrl: https://github.com/108thecitizen
8+
PackageName: DesktopTileLauncher
9+
PackageUrl: https://github.com/108thecitizen/DesktopTileLauncher
10+
Moniker: desktoptilelauncher
11+
License: Apache-2.0
12+
LicenseUrl: https://raw.githubusercontent.com/108thecitizen/DesktopTileLauncher/main/LICENSE
13+
ShortDescription: Launch bookmarked sites as desktop tiles in the browser/profile you choose.
14+
Description: DesktopTileLauncher lets you create tiles that open URLs in your chosen browser and profile. No telemetry; the only network activity is your launched browser.
15+
ReleaseNotesUrl: https://github.com/108thecitizen/DesktopTileLauncher/releases/tag/v0.3.4
16+
17+
ManifestType: defaultLocale
18+
ManifestVersion: 1.10.0
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
2+
PackageIdentifier: 108thecitizen.DesktopTileLauncher
3+
PackageVersion: 0.3.4
4+
DefaultLocale: en-US
5+
ManifestType: version
6+
ManifestVersion: 1.10.0
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Created using wingetcreate 1.10.3.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
3+
4+
PackageIdentifier: 2dust.v2rayN
5+
PackageVersion: 7.14.10
6+
InstallerType: zip
7+
NestedInstallerType: portable
8+
Dependencies:
9+
PackageDependencies:
10+
- PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8
11+
ArchiveBinariesDependOnPath: true
12+
Installers:
13+
- Architecture: x64
14+
NestedInstallerFiles:
15+
- RelativeFilePath: v2rayN-windows-64/v2rayN.exe
16+
- RelativeFilePath: v2rayN-windows-64\v2rayN.exe
17+
InstallerUrl: https://github.com/2dust/v2rayN/releases/download/7.14.10/v2rayN-windows-64.zip
18+
InstallerSha256: A5F21AA4F8265CFB5C904D6C525EF95494C8A1B8E4B58A3CD7E55AB0AB864C42
19+
- Architecture: arm64
20+
NestedInstallerFiles:
21+
- RelativeFilePath: v2rayN-windows-arm64\v2rayN.exe
22+
- RelativeFilePath: v2rayN-windows-arm64/v2rayN.exe
23+
InstallerUrl: https://github.com/2dust/v2rayN/releases/download/7.14.10/v2rayN-windows-arm64.zip
24+
InstallerSha256: 35811B0A96C6D93273CD20CCD7AE158C25E0521DCBE81151A500702C6D6600B5
25+
ManifestType: installer
26+
ManifestVersion: 1.10.0
27+
ReleaseDate: 2025-09-13
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Created using wingetcreate 1.10.3.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
3+
4+
PackageIdentifier: 2dust.v2rayN
5+
PackageVersion: 7.14.10
6+
PackageLocale: zh-CN
7+
Publisher: 2dust
8+
PublisherUrl: https://github.com/2dust
9+
PublisherSupportUrl: https://github.com/2dust/v2rayN/issues
10+
Author: 2dust
11+
PackageName: v2rayN
12+
PackageUrl: https://github.com/2dust/v2rayN
13+
License: GPL-3.0
14+
LicenseUrl: https://github.com/2dust/v2rayN/blob/master/LICENSE
15+
ShortDescription: 支持 Xray、v2fly 等 core 的 GUI 客户端
16+
Moniker: v2rayn
17+
Tags:
18+
- proxy
19+
- shadowsocks
20+
- socks5
21+
- trojan
22+
- v2fly
23+
- v2ray
24+
- vless
25+
- vmess
26+
- windows
27+
- xray
28+
- xtls
29+
ReleaseNotesUrl: https://github.com/2dust/v2rayN/releases/tag/7.14.10
30+
Documentations:
31+
- DocumentLabel: Wiki
32+
DocumentUrl: https://github.com/2dust/v2rayN/wiki
33+
ManifestType: defaultLocale
34+
ManifestVersion: 1.10.0

0 commit comments

Comments
 (0)