Example #1
0
 private void RefreshAccess()
 {
     m_info.m_readMe        = ReadMeUtility.GetReadMeFile(m_selector);
     m_info.m_sample        = SampleUtility.GetSampleFolder(m_selector);
     m_info.m_documentation = DocumentationUtility.GetDocumentFolder(m_selector);
     m_info.m_changelog     = ChangeLogUtility.GetReadMeFile(m_selector);
     m_info.m_license       = LicenseUtility.GetReadMeFile(m_selector);
     QuickGit.GetGitInDirectory(m_selector.GetAbsolutePath(true), out m_info.m_gitLink, false);
 }
 public static void DrawEditorDefaultInterface(ChangeLogFileStream changelog, ref string version, ref string title, ref string logs, ref bool hide)
 {
     if (changelog == null)
     {
         return;
     }
     hide = EditorGUILayout.Foldout(hide, hide? "→ Log" : "↓ Log", EditorStyles.boldLabel);
     if (!hide)
     {
         GUILayout.BeginHorizontal();
         GUILayout.Label("Version:", GUILayout.MaxWidth(60));
         if (version == null || version.Length <= 0)
         {
             version = ChangeLogUtility.GetLastVersion(changelog);
         }
         version = ChangeLogUtility.OnlyDigitsAndPoints(
             EditorGUILayout.TextField(version, GUILayout.MaxWidth(80)));
         GUILayout.Label("Title:", GUILayout.MaxWidth(40));
         title = EditorGUILayout.TextField(title, GUILayout.MaxWidth(1000));
         GUILayout.EndHorizontal();
         GUILayout.Label("New(s):", GUILayout.MaxWidth(60));
         logs = ChangeLogUtility.StartWithDash(
             EditorGUILayout.TextArea(logs, GUILayout.MinHeight(80)));
         GUILayout.BeginHorizontal();
         if (!changelog.Exist() && GUILayout.Button("Create ChangeLog.md"))
         {
             ChangeLogUtility.Create(changelog, "# Change Log ", "Find here developer log of this package.  ");
         }
         if (changelog.Exist() && GUILayout.Button("Push to log"))
         {
             ChangeLogUtility.AppendLog(changelog, version, title, logs);
         }
         if (changelog.Exist() && GUILayout.Button("Open"))
         {
             if (changelog.Exist())
             {
                 changelog.Open();
             }
         }
         GUILayout.EndHorizontal();
     }
 }
    public static string GetLastVersion(ChangeLogFileStream changelog)
    {
        if (changelog == null || !changelog.Exist())
        {
            return("0.0.0");
        }

        string t     = changelog.Get();
        Regex  regex = new Regex("([\\n\\r]##\\s\\s*[\\d\\.]+)");


        Match match = regex.Match(t);

        if (match.Success)
        {
            return(ChangeLogUtility.OnlyDigitsAndPoints(match.Value));
        }

        return("0.0.0");
    }