Skip to content

Commit

Permalink
v0.0.10.35 release
Browse files Browse the repository at this point in the history
  • Loading branch information
liangxiegame committed Dec 18, 2018
1 parent c7c14fd commit e1611c7
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 457 deletions.
10 changes: 0 additions & 10 deletions Assets/Example.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Assets/Example/1.UI.meta

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,14 @@ private static void Clear()
}
}
}

public class ReopenProject
{
[MenuItem("QFramework/ReopenProject")]
private static void Reopen()
{
EditorApplication.OpenProject(Path.Combine(Application.dataPath,"../"));

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ protected override void OnBegin()
EditorUtility.DisplayDialog(mRequestPackageData.Name, "插件下载成功", "OK");

InstalledPackageVersions.Reload();

// EditorApplication.ExecuteMenuItem(FrameworkMenuItems.Preferences);
}, e =>
{
EditorUtility.ClearProgressBar();
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ private void ProcessCompare()
return;
}

if (CheckNewVersionDialog(packageDatas, PackageInfosRequestCache.Get().PackageDatas))
if (FrameworkPMView.VersionCheck)
{

CheckNewVersionDialog(packageDatas, PackageInfosRequestCache.Get().PackageDatas);
}
}));
}
Expand Down Expand Up @@ -152,7 +152,7 @@ private static bool CheckNewVersionDialog(List<PackageData> requestPackageDatas,
private static void ShowDisplayDialog(string packageName)
{
var result = EditorUtility.DisplayDialog("PackageManager",
"{0} 有新版本更新,请前往查看".FillFormat(packageName),
"{0} 有新版本更新,请前往查看(如需不再提示请点击前往查看,并取消勾选 Version Check)".FillFormat(packageName),
"前往查看", "稍后查看");

if (result)
Expand Down
Loading

0 comments on commit e1611c7

Please sign in to comment.