Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ those sections for [resolving dependencies](#resolving-dependencies).
2. have Processing library dependencies

This variable is in the editable section, in case the location determined is incorrect. A
symptom of an incorrect `sketchbookLocation` is that your library does not show up in the
Contribution Manager in Processing, after being installed. Please look at our
symptom of an incorrect `sketchbookLocation` is that your library does not show up as a
contributed library Processing, after being installed. Please look at our
[troubleshooting guide](troubleshooting.md) if you suspect this is the case.

## Creating examples
Expand Down Expand Up @@ -125,4 +125,4 @@ See the following guides for more details:

- [Library Overview](https://github.com/processing/processing4/wiki/Library-Overview): an introduction to Processing libraries in general.
- [Library Basics](https://github.com/processing/processing4/wiki/Library-Basics): a basic guide for creating a Processing library from scratch, including structuring the library, registering methods with PApplet, handling events, and preparing the library for distribution.
- [Library Guidelines](https://github.com/processing/processing4/wiki/Library-Guidelines): describes the requirements for a Processing library, including naming conventions, examples, and other best practices.
- [Library Guidelines](https://github.com/processing/processing4/wiki/Library-Guidelines): describes the requirements for a Processing library, including naming conventions, examples, and other best practices.
7 changes: 3 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ Now that your environment is set up, follow these steps to get familiar with the
`deployToProcessingSketchbook`, and double click on `deployToProcessingSketchbook`.
- This will build the library, create the release artifacts, and copy them to the folder
where Processing libraries are stored.
3. **Check if the library appears in the Contribution Manager:**
- Open Processing, and click on `Sketch` > `Import Library ...` > `Manage Libraries ...`.
This opens the Contribution Manager.
- You should see an entry named "A Template Example Library" with a check mark next to it.
3. **Check if the library appears as a contributed library:**
- Open Processing, and click on `Sketch` > `Import Library ...`.
- You should see an entry named "A Template Example Library" in the menu as `Contributed`.
This is the sample library you just installed using the template.
- If it does not appear, please check the [troubleshooting guide](troubleshooting.md).
4. **Customize the library information**:
Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Troubleshooting

## Library does not appear in the Contribution Manager
## Library does not appear as contributed library in Processing

1. Please check that the value you have for your library name in the code is the same as the `libName` in
the `build.gradle.kts` file.
Expand Down
Loading