Skip to content

Commit

Permalink
#Update-vs1.0.24
Browse files Browse the repository at this point in the history
## [1.0.24] 05/11/2022
### (Fix)ChangeVersionWin.cs
O método `ChangeVersionWin.LoadConfig()` não possuia uma verificação que determina<br/>
se o arquivo Config.txt existe.
  • Loading branch information
BelicusBr committed Nov 6, 2022
1 parent 251e759 commit 2632603
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [1.0.24] 05/11/2022
### (Fix)ChangeVersionWin.cs
O método `ChangeVersionWin.LoadConfig()` não possuia uma verificação que determina<br/>
se o arquivo Config.txt existe.
## [1.0.23] 20/09/2022
### (Change) ChangeVersion
O ChangeVersion foi transformado em janela agora.
Expand Down
1 change: 1 addition & 0 deletions Editor/Change version/ChangeVersionWin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ private static void UnloadConfig(ChangeVersionConfig config) {
}

private static ChangeVersionConfig LoadConfig() {
if (!File.Exists(ChangeConfigFile)) return new ChangeVersionConfig();
ChangeVersionConfig res = new ChangeVersionConfig();
using (StreamReader reader = File.OpenText(ChangeConfigFile)) {
string temp = reader.ReadLine();
Expand Down
3 changes: 1 addition & 2 deletions Editor/Cobilas.Unity.Editor.Utility.asmdef
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "Cobilas.Unity.Editor.Utility",
"references": [
"Cobilas.Unity.Utility",
"Cobilas.Unity.Editor.Extensions"
"Cobilas.Unity.Utility"
],
"includePlatforms": [
"Editor"
Expand Down
10 changes: 3 additions & 7 deletions com.cobilas.unity.utility.gpack
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.cobilas.unity.utility",
"version": "1.0.22",
"version": "1.0.24",
"repository": "https://github.com/BelicusBr/com.cobilas.unity.utility.git",
"relatedPackages": [
"1.0.17",
Expand All @@ -9,18 +9,14 @@
"1.0.20",
"1.0.21",
"1.0.22",
"1.0.23"
"1.0.23",
"1.0.24"
],
"gitDependencies": [
{
"URL": "https://github.com/BelicusBr/com.cobilas.cobilascore.git",
"name": "com.cobilas.cobilascore",
"branch": "1.0.32"
},
{
"URL": "https://github.com/BelicusBr/com.cobilas.unity.extensions.git",
"name": "com.cobilas.unity.extensions",
"branch": "1.0.13"
}
]
}
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"name": "com.cobilas.unity.utility",
"version": "1.0.23",
"version": "1.0.24",
"displayName": "Cobilas Utility",
"description": "Pacote de utilitarios para unity3d",
"licensesUrl": "https://github.com/BelicusBr/com.cobilas.unity.utility/blob/main/LICENSE.md",
"changelogUrl": "https://github.com/BelicusBr/com.cobilas.unity.utility/blob/main/CHANGELOG.md",
"unity": "2019.1",
"unityRelease": "0b5",
"type": "cb-utility",

"author": {
"name": "Cobilas CTB"
},
"repository": {
"url" : "https://github.com/BelicusBr/com.cobilas.unity.utility.git",
"type" : "git"
"url": "https://github.com/BelicusBr/com.cobilas.unity.utility.git",
"type": "git"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com/@BelicusBr"
"registry": "https://npm.pkg.github.com/@BelicusBr"
}
}
}

0 comments on commit 2632603

Please sign in to comment.