Skip to content

Commit 411037d

Browse files
committed
Merge branch 'release/v0.1.0' into main
2 parents c093895 + 9d2f755 commit 411037d

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [x.xx.x] - yyyy.mm.dd
6+
## [0.1.0] - 2023.01.12
77

88
### Added
9-
- add Added items here
9+
- inline code documentation
10+
- Contribution guide and code of conduct
11+
- module installer and updater for handling package installation
1012

1113
### Updated
12-
- add Updated items here
14+
- A big refactor of code and classes
1315

1416
### Fixed
15-
- add Fixed items here
17+
- Various bug fixes and improvements

Editor/Module Management/ModuleInfo.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ public string Identifier
2828
{
2929
return name;
3030
}
31-
32-
return gitUrl + (string.IsNullOrEmpty(branch) ? string.Empty : $"#{branch}");
31+
// if branch not set, default to the version in ModuleList
32+
return gitUrl + (string.IsNullOrEmpty(branch) ? $"#{version}": $"#{branch}");
33+
3334
}
3435
}
3536
}

Editor/Module Management/ModuleList.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class ModuleList
1313
{
1414
name = "com.readyplayerme.core",
1515
gitUrl = "https://github.com/readyplayerme/Unity-Core.git",
16-
branch = "develop",
16+
branch = "",
1717
version = "0.1.0"
1818
};
1919

@@ -33,14 +33,14 @@ public static class ModuleList
3333
{
3434
name = "com.readyplayerme.avatarloader",
3535
gitUrl = "https://github.com/readyplayerme/Unity-Avatar-Loader.git",
36-
branch = "develop",
36+
branch = "",
3737
version = "0.1.0"
3838
},
3939
new ModuleInfo
4040
{
4141
name = "com.readyplayerme.webview",
4242
gitUrl = "https://github.com/readyplayerme/Unity-WebView.git",
43-
branch = "develop",
43+
branch = "",
4444
version = "0.1.0"
4545
}
4646
};

0 commit comments

Comments
 (0)