Skip to content
This repository was archived by the owner on Jun 15, 2024. It is now read-only.

Commit 63b59b3

Browse files
committed
feat(sync): Synchronize updates 7cd667172c2eb688e24e26cdfbf9f367ef278429
1 parent 778afae commit 63b59b3

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

Original-README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GitHub app. 它是用 [TypeScript](https://www.typescriptlang.org) 和 [React](h
77

88
## 这是一个什么项目?
99

10-
这是一个把github desktop翻译成中文的项目, 当前翻译版本[release-3.1.1](https://github.com/gouzil/github-desktop-zh/tree/release-3.1.1)
10+
这是一个把github desktop翻译成中文的项目, 当前翻译版本[release-3.1.2](https://github.com/gouzil/github-desktop-zh/tree/release-3.1.2)
1111

1212
## 在哪里可以下载到?
1313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
## 这是一个什么项目?
2525

26-
这是一个把github desktop翻译成中文的项目, 当前翻译版本[release-3.1.1](https://github.com/gouzil/github-desktop-zh/tree/release-3.1.1)
26+
这是一个把github desktop翻译成中文的项目, 当前翻译版本[release-3.1.2](https://github.com/gouzil/github-desktop-zh/tree/release-3.1.2)
2727

2828
## 部分截图
2929

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"productName": "GitHub Desktop",
44
"bundleID": "com.github.GitHubClient",
55
"companyName": "GitHub, Inc.",
6-
"version": "3.1.1",
6+
"version": "3.1.2",
77
"main": "./main.js",
88
"repository": {
99
"type": "git",
@@ -30,7 +30,7 @@
3030
"desktop-trampoline": "desktop/desktop-trampoline#v0.9.8",
3131
"dexie": "^3.2.2",
3232
"dompurify": "^2.3.3",
33-
"dugite": "^2.0.0",
33+
"dugite": "^2.1.0",
3434
"electron-window-state": "^5.0.3",
3535
"event-kit": "^2.0.0",
3636
"focus-trap-react": "^8.1.0",

app/test/unit/git/rev-parse-test.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,16 @@ describe('git/rev-parse', () => {
5757
secondRepoPath,
5858
''
5959
)
60-
await git(['submodule', 'add', '../repo2'], firstRepoPath, '')
60+
61+
await git(
62+
[
63+
// Git 2.38 (backported into 2.35.5) changed the default here to 'user'
64+
...['-c', 'protocol.file.allow=always'],
65+
...['submodule', 'add', '../repo2'],
66+
],
67+
firstRepoPath,
68+
''
69+
)
6170

6271
expect(await getRepositoryType(firstRepoPath)).toMatchObject({
6372
kind: 'regular',

app/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,10 @@ dompurify@^2.3.3:
387387
resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.3.tgz#c1af3eb88be47324432964d8abc75cf4b98d634c"
388388
integrity sha512-dqnqRkPMAjOZE0FogZ+ceJNM2dZ3V/yNOuFB7+39qpO93hHhfRpHw3heYQC7DPK9FqbQTfBKUJhiSfz4MvXYwg==
389389

390-
dugite@^2.0.0:
391-
version "2.0.0"
392-
resolved "https://registry.yarnpkg.com/dugite/-/dugite-2.0.0.tgz#de0ef29b58caa863e25fecd318e99a0e6b05420b"
393-
integrity sha512-0+1imU6NGzcvf42DDBMywZDyPBTNxKaG4IupDKfQbWU8S5fI+J3UVAQOrF0MNzGQYqv9G80Oz/LcS5043z05WQ==
390+
dugite@^2.1.0:
391+
version "2.1.0"
392+
resolved "https://registry.yarnpkg.com/dugite/-/dugite-2.1.0.tgz#6f50c2244e57aaac2f36440aa7289815c73a688c"
393+
integrity sha512-4l4jJz5zC6Q+/8doQNQZ9Ss3rmnO/JCHfOmQO+zGv+TIOUXimzfS02RvUOuFpEhZuaFTeFBSuK6ll/02TX3SxA==
394394
dependencies:
395395
progress "^2.0.3"
396396
tar "^6.1.11"

changelog.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"releases": {
3+
"3.1.2": ["[Improved] Upgrade embedded Git to 2.35.5"],
34
"3.1.1": [
45
"[Fixed] App correctly remembers undo commit prompt setting - #15408"
56
],

0 commit comments

Comments
 (0)