File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- using System ;
1+ s using System;
22using System . Linq ;
33using UnityEngine ;
44using UnityEditor ;
@@ -132,6 +132,7 @@ void DrawGlobalBuildData() {
132132}
133133
134134void DrawChangelogInfo ( ) {
135+ bool oldChangelogFoldoutValue = changelogFoldout ;
135136changelogFoldout = EditorGUILayout . BeginFoldoutHeaderGroup ( changelogFoldout , "Changelog" ) ;
136137EditorGUILayout . EndFoldoutHeaderGroup ( ) ;
137138
@@ -238,7 +239,7 @@ void DrawChangelogInfo() {
238239#endif
239240}
240241
241- if ( GUI . changed )
242+ if ( oldChangelogFoldoutValue != changelogFoldout )
242243ChangelogData . SaveChangelog ( changelog ) ;
243244
244245if ( changelogFoldout )
Original file line number Diff line number Diff line change 11{
22 "name" : " com.teamon.buildmanager" ,
3- "version" : " 1.1.3 " ,
3+ "version" : " 1.1.4 " ,
44 "displayName" : " Build Manager" ,
55 "description" : " Utility for running builds sequence & pushing them to markets & keeping changelog" ,
66 "unity" : " 2019.1" ,
You can’t perform that action at this time.
0 commit comments