Skip to content

Commit 4ad1716

Browse files
committed
Merge branch 'upstream-development'
2 parents b469bf5 + c8f4f9c commit 4ad1716

28 files changed

Lines changed: 55 additions & 34 deletions

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"productName": "GitHub Desktop Plus",
66
"bundleID": "com.polrivero.GitHubDesktopPlus",
77
"companyName": "Pol Rivero",
8-
"version": "3.5.9",
8+
"version": "3.5.10",
99
"main": "./main.js",
1010
"repository": {
1111
"type": "git",

app/src/lib/editors/darwin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { pathExists } from '../../ui/lib/path-exists'
1+
import { pathExists } from '../path-exists'
22
import { IFoundEditor } from './found-editor'
33
import appPath from 'app-path'
44

app/src/lib/editors/linux.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { pathExists } from '../helpers/linux'
2-
32
import { IFoundEditor } from './found-editor'
43

54
/** Represents an external editor on Linux */

app/src/lib/editors/win32.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
RegistryValue,
88
RegistryValueType,
99
} from 'registry-js'
10-
import { pathExists } from '../../ui/lib/path-exists'
10+
import { pathExists } from '../path-exists'
1111

1212
import { IFoundEditor } from './found-editor'
1313
import memoizeOne from 'memoize-one'

app/src/lib/feature-flag.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ export const enableHooksEnvironment = () => true
128128

129129
export const enableHooksByDefault = enableBetaFeatures
130130

131-
export const enableFormattingPreferences = enableBetaFeatures
131+
export const enableFormattingPreferences = () => true

app/src/lib/git/cherry-pick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { getCommit } from '.'
2525
import { IMultiCommitOperationProgress } from '../../models/progress'
2626
import { join } from 'path'
2727
import { readFile } from 'fs/promises'
28-
import { pathExists } from '../../ui/lib/path-exists'
28+
import { pathExists } from '../path-exists'
2929

3030
/** The app-specific results from attempting to cherry pick commits*/
3131
export enum CherryPickResult {

app/src/lib/git/merge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { join } from 'path'
22
import { git, HookCallbackOptions } from './core'
33
import { GitError } from 'dugite'
44
import { Repository } from '../../models/repository'
5-
import { pathExists } from '../../ui/lib/path-exists'
5+
import { pathExists } from '../path-exists'
66
import { createMultiOperationTerminalOutputCallback } from './multi-operation-terminal-output'
77

88
export enum MergeResult {

app/src/lib/git/rebase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { getCommitsBetweenCommits } from './rev-list'
3030
import { Branch } from '../../models/branch'
3131
import { join } from 'path'
3232
import { readFile } from 'fs/promises'
33-
import { pathExists } from '../../ui/lib/path-exists'
33+
import { pathExists } from '../path-exists'
3434

3535
/** The app-specific results from attempting to rebase a repository */
3636
export enum RebaseResult {

app/src/lib/git/submodule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { git, IGitStringExecutionOptions } from './core'
22
import { Repository } from '../../models/repository'
33
import { SubmoduleEntry } from '../../models/submodule'
4-
import { pathExists } from '../../ui/lib/path-exists'
4+
import { pathExists } from '../path-exists'
55
import { executionOptionsWithProgress, IGitOutput } from '../progress'
66
import {
77
envForRemoteOperation,

app/src/lib/hooks/get-shell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { pathExists } from '../../ui/lib/path-exists'
1+
import { pathExists } from '../path-exists'
22
import { join } from 'path'
33
import which from 'which'
44
import { bash, cmd, powershell } from './shell-escape'

0 commit comments

Comments
 (0)