Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
namespace System
{
internal static class AssemblyVersionInformation {
internal const string Version = "0.22.0";
internal const string Version = "0.21.1";
}
}
4 changes: 0 additions & 4 deletions src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ class Utility : ScriptableObject
private static readonly ILogging logger = Logging.GetLogger<Utility>();

public const string StatusRenameDivider = "->";
public static readonly Regex ListBranchesRegex =
new Regex(@"^(?<active>\*)?\s+(?<name>[\w\d\/\-_]+)\s*(?:[a-z|0-9]{7} \[(?<tracking>[\w\d\/\-\_]+)\])?");
public static readonly Regex ListRemotesRegex =
new Regex(@"(?<name>[\w\d\-_]+)\s+(?<url>https?:\/\/(?<login>(?<user>[\w\d]+)(?::(?<token>[\w\d]+))?)@(?<host>[\w\d\.\/\%]+))\s+\((?<function>fetch|push)\)");
public static readonly Regex LogCommitRegex = new Regex(@"commit\s(\S+)");
public static readonly Regex LogMergeRegex = new Regex(@"Merge:\s+(\S+)\s+(\S+)");
public static readonly Regex LogAuthorRegex = new Regex(@"Author:\s+(.+)\s<(.+)>");
Expand Down