File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
- ## [ x.xx.x ] - yyyy.mm.dd
6
+ ## [ 0.1.0 ] - 2023.01.12
7
7
8
8
### 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
10
12
11
13
### Updated
12
- - add Updated items here
14
+ - A big refactor of code and classes
13
15
14
16
### Fixed
15
- - add Fixed items here
17
+ - Various bug fixes and improvements
Original file line number Diff line number Diff line change @@ -28,8 +28,9 @@ public string Identifier
28
28
{
29
29
return name ;
30
30
}
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
+
33
34
}
34
35
}
35
36
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public static class ModuleList
13
13
{
14
14
name = "com.readyplayerme.core" ,
15
15
gitUrl = "https://github.com/readyplayerme/Unity-Core.git" ,
16
- branch = "develop " ,
16
+ branch = "" ,
17
17
version = "0.1.0"
18
18
} ;
19
19
@@ -33,14 +33,14 @@ public static class ModuleList
33
33
{
34
34
name = "com.readyplayerme.avatarloader" ,
35
35
gitUrl = "https://github.com/readyplayerme/Unity-Avatar-Loader.git" ,
36
- branch = "develop " ,
36
+ branch = "" ,
37
37
version = "0.1.0"
38
38
} ,
39
39
new ModuleInfo
40
40
{
41
41
name = "com.readyplayerme.webview" ,
42
42
gitUrl = "https://github.com/readyplayerme/Unity-WebView.git" ,
43
- branch = "develop " ,
43
+ branch = "" ,
44
44
version = "0.1.0"
45
45
}
46
46
} ;
You can’t perform that action at this time.
0 commit comments