Merge pull request #16599 from desktop/releases/3.2.2-beta2

Release 3.2.2-beta2
This commit is contained in:
Sergio Padrino 2023-04-26 13:37:18 +02:00 committed by GitHub
commit 9756922537
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 7 deletions

View file

@ -3,7 +3,7 @@
"productName": "GitHub Desktop",
"bundleID": "com.github.GitHubClient",
"companyName": "GitHub, Inc.",
"version": "3.2.2-beta1",
"version": "3.2.2-beta2",
"main": "./main.js",
"repository": {
"type": "git",
@ -30,7 +30,7 @@
"desktop-trampoline": "desktop/desktop-trampoline#v0.9.8",
"dexie": "^3.2.2",
"dompurify": "^2.3.3",
"dugite": "^2.4.0",
"dugite": "^2.5.0",
"electron-window-state": "^5.0.3",
"event-kit": "^2.0.0",
"focus-trap-react": "^8.1.0",

View file

@ -31,11 +31,13 @@ export async function getAvailableShells(): Promise<
ReadonlyArray<IFoundShell<Shell>>
> {
const gitPath = await findGitOnPath()
const rootDir = process.env.WINDIR || 'C:\\Windows'
const dosKeyExePath = `"${rootDir}\\system32\\doskey.exe git=^"${gitPath}^" $*"`
const shells: IFoundShell<Shell>[] = [
{
shell: Shell.Cmd,
path: process.env.comspec || 'C:\\Windows\\System32\\cmd.exe',
extraArgs: gitPath ? ['/K', `"doskey git=^"${gitPath}^" $*"`] : [],
extraArgs: gitPath ? ['/K', dosKeyExePath] : [],
},
]

View file

@ -362,10 +362,10 @@ dompurify@^2.3.3:
resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.3.tgz#c1af3eb88be47324432964d8abc75cf4b98d634c"
integrity sha512-dqnqRkPMAjOZE0FogZ+ceJNM2dZ3V/yNOuFB7+39qpO93hHhfRpHw3heYQC7DPK9FqbQTfBKUJhiSfz4MvXYwg==
dugite@^2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/dugite/-/dugite-2.4.0.tgz#e268f694d46a03e948b27ea0ecfba854d4eec82d"
integrity sha512-C1IBvp0EcrqsSR3fa7cAGMxlVNmamSA7fyYvbdBCGtw2mTq9wKalPUSLYoYzGuwKDJUkv70yQBu53eQ/iZKIUg==
dugite@^2.5.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/dugite/-/dugite-2.5.0.tgz#8b235564fdf8692688283c714149a59d9da79865"
integrity sha512-sYsSOqV7NidthDtMUPgKCvqMGqswKkcyAxOMhwEswlcGZ+kHadT2SEDFUJOy0AVR/yTJL6wBF7q1OiySfU0gGA==
dependencies:
progress "^2.0.3"
tar "^6.1.11"

View file

@ -1,5 +1,12 @@
{
"releases": {
"3.2.2-beta2": [
"[Improved] Improve accessibility of GitHub Enterprise login flow - #16567",
"[Improved] Screen readers announce sign in errors - #16556",
"[Improved] Include remote branches in search for default branch - #15754",
"[Improved] Upgrade embedded Git to 2.39.3",
"[Removed] Remove unshipped high contrast theme and dependencies - #16559"
],
"3.2.2-beta1": [
"[Added] Add support for VimR code editor on macOS. - #16354. Thanks @Elmar-Wiese!",
"[Fixed] NVDA reads number of suggestions when an autocompletion list shows up - #16526",