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: docs/docs/guide/getting-started.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,11 +131,13 @@ Now, you can re-run `regolith run`.
131
131
132
132
Check `com.mojang`, and open the new `texture_list.json` file in `RP/textures/texture_list.json`. Every time you run regolith, this file will be re-created, based on your current textures. No need to manually edit it ever again!
133
133
134
-
{: .notice--warning}
134
+
:::: warning
135
135
`Warning:` If your resource pack already contains `texture_list.json`, you should delete it. You don't need to manually worry about it anymore - Regolith will handle it!
136
+
::::
136
137
137
-
{: .notice--warning}
138
+
:::: warning
138
139
`Warning:` If your project doesn't have any textures, than `texture_list.json` will simply create a blank file `[]`. Consider adding some textures to see the filter at work!
Copy file name to clipboardExpand all lines: docs/docs/guide/installing-filters.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,15 +65,17 @@ Regolith is intended to be used with git version control, and by default the `.r
65
65
66
66
You may use the command `regolith install-all`, which will check `config.json`, and install every filter in the `filterDefinitions`.
67
67
68
-
{: .notice--warning}
68
+
:::: warning
69
69
This is only intended to be used with existing projects. To install new filters, use `regolith install`.
70
+
::::
70
71
71
72
## Filter Versioning
72
73
73
74
Filters in Regolith are optionally versioned with a [semantic version](https://semver.org/). As filters get updated, new versions will be released, and you can optionally update.
74
75
75
-
{: .notice--warning}
76
+
:::: warning
76
77
If you don't specify a version, the `install` command will pick a sensible default. First, it will search for the latest release. If that doesn't exist (such as a filter that has no versions), it will select the latest commit in the repository. In both cases, the installed version will be `pinned`.
Alternatively, you can modify the `version` field in `config.json` and run `regolith install-all`. Regolith install-all is useful for working in a team, when other team members may have to update or add filters to the project.
104
106
107
+
If you want to update all filters in your project, you can use the `--update` flag with the `install-all` command.
108
+
109
+
```
110
+
regolith install-all --update
111
+
```
112
+
105
113
### Updating resolvers
106
114
107
115
When using short names for filters, Regolith uses a resolver file from a remote repository to determine the URL of the filter.
0 commit comments