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

Commit 3b212d6

Browse files
Merge branch 'master' into fixes/732-git-config-on-startup
2 parents 324c534 + 3fb0755 commit 3b212d6

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

generate-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [ $# -lt 3 ]; then
55
exit 1
66
fi
77

8-
LFS_MD5="4294df6cbb467b8133553570450757c7"
8+
LFS_MD5="d0d59164a4b7b35685502d7c5f747f2f"
99
GIT_MD5="50570ed932559f294d1a1361801740b9"
1010
MD5=""
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"md5":"108b2832cc3d1e6f1ffe792069ad3d21","url":"http://ghfvs-installer.github.com/unity/git/windows/git-lfs.zip","releaseNotes":null,"releaseNotesUrl":null,"message":null,"executableMd5":"d0d59164a4b7b35685502d7c5f747f2f","version":"2.4.0"}
1+
{"md5":"c78270c2c94a4adce4beeef3010c732e","url":"http://ghfvs-installer.github.com/unity/git/git-lfs.zip","releaseNotes":null,"releaseNotesUrl":null,"message":null,"version":"2.4.0"}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:59a817fa5fa9cbd38eff9422eb576f31e3a225d5be387b292dc827faddfe785b
2+
oid sha256:d8d924dfef97d579305a485f30ad3866f775b295394be199eb487faca4357672
33
size 2831355

src/GitHub.Api/Primitives/Package.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static Package Load(IEnvironment environment, UriString packageFeed)
4444
if (!feed.IsInitialized)
4545
{
4646
// try from assembly resources
47-
feed = AssemblyResources.ToFile(ResourceType.Platform, packageFeed.Filename, environment.UserCachePath.Combine(packageFeed.Filename), environment);
47+
feed = AssemblyResources.ToFile(ResourceType.Platform, packageFeed.Filename, environment.UserCachePath, environment);
4848
}
4949

5050
if (feed.IsInitialized)

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/ChangesView.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ public override void OnSelectionChange()
119119

120120
public override void OnFocusChanged()
121121
{
122-
Logger.Debug("OnFocusChanged: {0}", HasFocus);
123-
124122
base.OnFocusChanged();
125123
var hasFocus = HasFocus;
126124
if (treeChanges.ViewHasFocus != hasFocus)

src/UnityExtension/Assets/Editor/GitHub.Unity/UpdateCheck.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public class UpdateCheckWindow : EditorWindow
6060

6161
public static void CheckForUpdates()
6262
{
63-
var download = new DownloadTask(TaskManager.Instance.Token, EntryPoint.Environment.FileSystem, UpdateFeedUrl, EntryPoint.Environment.UserCachePath);
63+
var download = new DownloadTask(TaskManager.Instance.Token, EntryPoint.Environment.FileSystem, UpdateFeedUrl, EntryPoint.Environment.UserCachePath)
64+
.Catch(e => true);
6465
download.OnEnd += (thisTask, result, success, exception) =>
6566
{
6667
if (success)

0 commit comments

Comments
 (0)