File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- using System ;
1
+ s using System;
2
2
using System . Linq ;
3
3
using UnityEngine ;
4
4
using UnityEditor ;
@@ -132,6 +132,7 @@ void DrawGlobalBuildData() {
132
132
}
133
133
134
134
void DrawChangelogInfo ( ) {
135
+ bool oldChangelogFoldoutValue = changelogFoldout ;
135
136
changelogFoldout = EditorGUILayout . BeginFoldoutHeaderGroup ( changelogFoldout , "Changelog" ) ;
136
137
EditorGUILayout . EndFoldoutHeaderGroup ( ) ;
137
138
@@ -238,7 +239,7 @@ void DrawChangelogInfo() {
238
239
#endif
239
240
}
240
241
241
- if ( GUI . changed )
242
+ if ( oldChangelogFoldoutValue != changelogFoldout )
242
243
ChangelogData . SaveChangelog ( changelog ) ;
243
244
244
245
if ( changelogFoldout )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " com.teamon.buildmanager" ,
3
- "version" : " 1.1.3 " ,
3
+ "version" : " 1.1.4 " ,
4
4
"displayName" : " Build Manager" ,
5
5
"description" : " Utility for running builds sequence & pushing them to markets & keeping changelog" ,
6
6
"unity" : " 2019.1" ,
You can’t perform that action at this time.
0 commit comments