You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+59-7
Original file line number
Diff line number
Diff line change
@@ -13,50 +13,102 @@ Utility for running builds sequence & pushing them to itch.io and github
13
13
* Keep changelog and readme files
14
14
* Auto add changelog and readme to game folders
15
15
16
+
Also it nicely integrated with [Team-on Unity game template](https://github.com/Team-on/UnityGameTemplate)
17
+
16
18
17
19
## Editor window & how to use it
18
20

19
-
21
+
Here are main(and only one) Build manager window. Open it in *Windows/BuildManager/Builds window* or *Alt+B*. Lets look into it step by step
20
22
21
23
---------------------
22
24
23
25
### Global data
24
26

27
+
First foldout is responsible for global data, that usually setuped once or before major builds.
28
+
-*Company name*, *Product name*, *Version*, *Android bundle version* and *Scripting defines* is just a shortcut for *PlayerSettings*
29
+
-*Itch.io link* - required data for itch.io pushing. You can press on *Docs* to get how to generate that and *Open* to open your game page
30
+
-*Github token* - token with **read, write:packages and delete:packages** access. You can press on *Generate* to get how to generate that and *Docs* to look how that work
31
+
-*Github user name* - github user or group name
32
+
-*Github repo name* - repository name
25
33
26
34
---------------------
27
35
28
36
### Build buttons
29
37

38
+
Here are buttons that run build sequences. There are one button for each sequence. You can hide button by disabling sequence
30
39
31
40
---------------------
32
41
33
42
### Sequence general
34
43

44
+
This is sequence settings. Here you can enable/disable sequnce via chechbox, change it name and add/remove sequences.
35
45
36
46
---------------------
37
47
38
48
### Sequence settings
39
49

50
+
This is global sequence data. Currently you can only add more *Scripting defines* to specific sequence. It would be added to defines written in *Global data*
40
51
41
52
---------------------
42
53
43
54
### Build settings
44
55

45
-
46
-
---------------------
47
-
48
-
### Updating CLI
49
-

50
-
56
+
This is build settings group. Here you can enable/disable build via chechbox, change it name, select target and set build settings.
57
+
For each build you can set this data:
58
+
-*Passby build checkmark* - Use previously builded folder and just pass that to post build processing
59
+
-*Release build checkmark* - Apply release optimizations for build. When unchecked - optimized for faster building
60
+
-*VR build checkmark* - enable VR for build
61
+
-*Output root* - Output root path
62
+
-*Middle path* - Output specific path. Support variables
63
+
-*Dir path* - path to directory that will be *archived* and pushed to *itch.io*. Support variables
64
+
-*Defines build override* - add more *Scripting defines* to specific build. It would be added to defines written in *Global data* and *Sequence settings*
65
+
66
+
List of supported variables for path:
67
+
- $NAME - product name with all separator replaced by '_'
68
+
- $PLATFORM - platform
69
+
- $VERSION - PlayerSettings.bundleVersion
70
+
- $DATESHORT - [last 2 digits of year][month][day]
71
+
- $YEARSHORT - last 2 digits of year
72
+
- $DATE - [year][month][day]
73
+
- $YEAR - year
74
+
- $MONTH - month
75
+
- $DAY - day
76
+
- $TIME - [hour][minute]
77
+
- $EXECUTABLE - platform-specific executable. E.g. .exe for windows, .apk for android...
78
+
79
+
Post build processing:
80
+
-*Compress* - create .zip archive
81
+
-*Push to github releases* - use data from *Global data* to push build to github releases
82
+
-*Push to itch.io* - use data from *Global data* to push build to itch.io
83
+
-*itch.io channel* - channel for itch.io
84
+
51
85
---------------------
52
86
53
87
### Changelog general
54
88

89
+
This is changelog foldout. You need to close it, to access builds window back. Here you can do 2 things.
90
+
-1) Write Readme.txt file. This file will be included to build folder for standalone platforms.
91
+
-2) Keep and update changelog. It will automatically parse and created nice looking file that ill be included to build folder for standalone platforms.
55
92
56
93
---------------------
57
94
58
95
### Changelog version
59
96

97
+
So how to keep your changelog? Press on *Add version* - add new version.
98
+
For each version you can:
99
+
-*Remove version*
100
+
- Set version number
101
+
- Set version date
102
+
- Set short update name
103
+
- Write description about update
104
+
-*Add changelog notes*. You can select for them *Type*, *Scope*, check mark is this *community suggested* feature and add *description*
105
+
-*Remove note*
106
+
107
+
---------------------
108
+
109
+
### Updating CLI
110
+

111
+
Build manager automatically download CLI for each platform in first use, but never updates it. You can update it manually in *Windows/BuildManager/Download X*
0 commit comments