Skip to content

Commit a257fc8

Browse files
committed
Merge branch 'main' of https://github.com/files-community/Files into terminal
2 parents 1b41f66 + b7d531e commit a257fc8

File tree

763 files changed

+4371
-3336
lines changed

Some content is hidden

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

763 files changed

+4371
-3336
lines changed

.github/PRIVACY.md

Lines changed: 4 additions & 2 deletions

.github/workflows/cd-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jobs:
4848
-Publisher "$env:SIDELOAD_PUBLISHER_SECRET" `
4949
-WorkingDir "$env:WORKING_DIR" `
5050
-SecretBingMapsKey "$env:SECRET_BINGMAPS_KEY" `
51-
-SecretAppCenter "$env:SECRET_APPCENTER" `
51+
-SecretSentry "$env:SECRET_SENTRY" `
5252
-SecretGitHubOAuthClientId "$env:SECRET_GITHUB_OAUTH_CLIENT_ID"
5353
env:
5454
SIDELOAD_PUBLISHER_SECRET: ${{ secrets.SIDELOAD_PUBLISHER_SECRET }}
5555
SECRET_BINGMAPS_KEY: ${{ secrets.BING_MAPS_SECRET }}
56-
SECRET_APPCENTER: ${{ secrets.APP_CENTER_SECRET }}
56+
SECRET_SENTRY: ${{ secrets.SENTRY_SECRET }}
5757
SECRET_GITHUB_OAUTH_CLIENT_ID: ${{ secrets.GH_OAUTH_CLIENT_ID }}
5858

5959
- name: Use Windows SDK Preview

.github/workflows/cd-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jobs:
4848
-Publisher "$env:SIDELOAD_PUBLISHER_SECRET" `
4949
-WorkingDir "$env:WORKING_DIR" `
5050
-SecretBingMapsKey "$env:SECRET_BINGMAPS_KEY" `
51-
-SecretAppCenter "$env:SECRET_APPCENTER" `
51+
-SecretSentry "$env:SECRET_SENTRY" `
5252
-SecretGitHubOAuthClientId "$env:SECRET_GITHUB_OAUTH_CLIENT_ID"
5353
env:
5454
SIDELOAD_PUBLISHER_SECRET: ${{ secrets.SIDELOAD_PUBLISHER_SECRET }}
5555
SECRET_BINGMAPS_KEY: ${{ secrets.BING_MAPS_SECRET }}
56-
SECRET_APPCENTER: ${{ secrets.APP_CENTER_SECRET }}
56+
SECRET_SENTRY: ${{ secrets.SENTRY_SECRET }}
5757
SECRET_GITHUB_OAUTH_CLIENT_ID: ${{ secrets.GH_OAUTH_CLIENT_ID }}
5858

5959
- name: Use Windows SDK Preview

.github/workflows/deploy-preview-legacy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,16 @@ jobs:
7373
env:
7474
BING_MAPS_SECRET: ${{ secrets.BING_MAPS_SECRET }}
7575

76-
- name: Inject the AppCenter token
76+
- name: Inject the Sentry token
7777
shell: pwsh
7878
run: |
7979
Get-ChildItem "$env:WORKING_DIR\src" -Include *.cs -recurse | ForEach-Object -Process `
8080
{ `
81-
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "appcenter.secret", "$env:APP_CENTER_SECRET" }) | `
81+
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "sentry.secret", "$env:SENTRY_SECRET" }) | `
8282
Set-Content $_ -NoNewline `
8383
}
8484
env:
85-
APP_CENTER_SECRET: ${{ secrets.APP_CENTER_SECRET }}
85+
SENTRY_SECRET: ${{ secrets.SENTRY_SECRET }}
8686

8787
- name: Inject the GitHub OAuth client ID
8888
run: |

.github/workflows/deploy-stable-legacy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,16 @@ jobs:
7373
env:
7474
BING_MAPS_SECRET: ${{ secrets.BING_MAPS_SECRET }}
7575

76-
- name: Inject the AppCenter token
76+
- name: Inject the Sentry token
7777
shell: pwsh
7878
run: |
7979
Get-ChildItem "$env:WORKING_DIR\src" -Include *.cs -recurse | ForEach-Object -Process `
8080
{ `
81-
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "appcenter.secret", "$env:APP_CENTER_SECRET" }) | `
81+
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "sentry.secret", "$env:SENTRY_SECRET" }) | `
8282
Set-Content $_ -NoNewline `
8383
}
8484
env:
85-
APP_CENTER_SECRET: ${{ secrets.APP_CENTER_SECRET }}
85+
SENTRY_SECRET: ${{ secrets.SENTRY_SECRET }}
8686

8787
- name: Inject the GitHub OAuth client ID
8888
run: |

assets/FilesScreenshot.png

277 KB

builds/azure-pipelines-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,20 +96,20 @@ jobs:
9696
TargetFolder: '$(Build.SourcesDirectory)\src\Files.App\Resources'
9797
overWrite: true
9898

99-
# Injects the AppCenter token to the project
99+
# Injects the Sentry token to the project
100100
- task: PowerShell@2
101-
displayName: 'Inject AppCenter token'
101+
displayName: 'Inject Sentry token'
102102
inputs:
103103
targetType: 'inline'
104104
script: |
105105
gci $(Build.SourcesDirectory)\src -Include *.cs -recurse | ForEach -Process {
106-
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "appcenter.secret", "$(appcenter.secret)"}) | Set-Content $_ -NoNewline
106+
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "sentry.secret", "$(sentry.secret)"}) | Set-Content $_ -NoNewline
107107
}
108108
failOnStderr: true
109109

110110
# Injects the GitHub token to the project
111111
- task: PowerShell@2
112-
displayName: 'Inject AppCenter token'
112+
displayName: 'Inject GitHub token'
113113
inputs:
114114
targetType: 'inline'
115115
script: |

scripts/Configure-AppxManifest.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ param(
77
[string]$Publisher = "",
88
[string]$WorkingDir = "",
99
[string]$SecretBingMapsKey = "",
10-
[string]$SecretAppCenter = "",
10+
[string]$SecretSentry = "",
1111
[string]$SecretGitHubOAuthClientId = ""
1212
)
1313

@@ -71,7 +71,7 @@ Get-ChildItem "$WorkingDir\src" -Include *.cs -recurse | ForEach-Object -Process
7171

7272
Get-ChildItem "$WorkingDir\src" -Include *.cs -recurse | ForEach-Object -Process
7373
{
74-
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "appcenter.secret", "$SecretAppCenter" }) |
74+
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "sentry.secret", "$SecretSentry" }) |
7575
Set-Content $_ -NoNewline
7676
}
7777

-8 Bytes
-113 Bytes

0 commit comments

Comments
 (0)