Updating local text files

This commit is contained in:
Lars Brubaker 2021-03-10 09:53:56 -08:00
parent 731378eb75
commit 37a68e6bc9
37 changed files with 1998 additions and 214 deletions

View file

@ -0,0 +1,36 @@
## The MatterControl Library
Within the Library folder you will find a wide range of printable content, things like:
- Design Apps
- Local Library
- The Downloads folder
- Your Cloud Library
- Calibration Parts
- and more...
## Extending the Downloads folder
If you are looking to add links to other folders on your hard drive you can easily add a file named [any name].library to your downloads folders and it will show up when you look in the Downloads folder.
To create a link to a local folder:
- Add a file named C Drive.library (any name will work as long as the extension is .library)
- Edit the file and write the following into it
```
{
  "type": "local",
  "path": "C:\\"
}
```
You can also create a link to a GitHub repository:
- Add a file named Benchy.library (you can change the name to anything)
- Edit the file and write the following into it
```
{
  "type": "GitHub",
  "owner": "CreativeTools",
  "repository": "3DBenchy",
  "path": ""
}
```