The format is based on Keep a Changelog, and this project follows Semantic Versioning.
-
- Fixed an issue in the
UpdateClosedOption
class that caused it to work randomly.
- Fixed an issue in the
-
-
-
- The
UpdateClosedOption
class used theEditorApplication.quitting
event, which was called when the Unity editor closed. However, this event was called before all other classes were finished, which caused theUpdateClosedOption
class to malfunction.
- The
-
-
-
-
- The
UpdateClosedOption
class now uses theEditorApplication.wantsToQuit
event, which is called before the Unity editor quits. This allows theUpdateClosedOption
class to finish correctly before the editor is closed.
- The
-
-
- Fixed an issue in the
UpdateBuildOption
class that prevented it from being called correctly in the project post-build.
- Fixed an issue in the
-
-
-
- The
UpdateBuildOption
class inherited theIPostprocessBuildWithReport
interface, which allowed it to be called after the project was built. However, the Unity editor was calling and instantiating theUpdateBuildOption
class instead of using the already instantiated object. This caused the class to malfunction.
- The
-
-
-
-
- The
IPostprocessBuildWithReport
interface has been removed from theUpdateBuildOption
class. Now, theUpdateBuildOption
class uses theOnPostprocessBuild
event of theCVBuildReport
class, which is correctly called after the project is built.
- The
-
-
- Updated dependency
com.cobilas.unity.utility
to version2.10.3
.
- Updated dependency
-
- This update includes bug fixes and new features that do not directly impact this package.
-
- The sub-dependency
com.cobilas.unity.core.net4x@1.4.1
was made explicit in the package dependencies.
- The sub-dependency
- Dependencies have been changed.
- The file VersionConfig.json is not used by ChangeVersion, but the file will not be deleted.
- New function
Tools/ChangeVersion/Open ChangeVersion folder
has been added. - Custom options have been added as
sealed class PreProductionCharacterOption;
sealed class UpdateBuildOption;
sealed class UpdateClosedOption;
sealed class UpdateRevisionOption;
- The classes
class BaseBuildPhaseTemplate;
class BaseVersionTemplate;
static class ParseOldChangeVersion
have been removed.
- Package dependencies have been changed.
- The package author was changed from
Cobilas CTB
toBélicusBr
.
###Fixed
Now every item in ChangeVersion
can be renamed.
- The methods
bool:ChangeVersionWin.ToolbarButton(string, float)
andbool:ChangeVersionWin.ToolbarButton(string)
were commented out as they are not used.
When opening the 'ChangeVersion' window, the files 'ChangeVersion/VersionConfig.txt and 'ChangeVersion/Config.txt' were deleted but the information was not absorbed by 'ChangeVersion' which resulted in an empty value standard.
The duplicate library using System.Collections.Generic;
has been removed from
'Editor\Change version\Class's\VersionTemplate.cs(Ln:3)'
- Released to GitHub