Created
August 9, 2022 20:21
-
-
Save n1ckfg/7f5a2e1b84c9a23602ebbef79894c0ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # More on this file here: https://github.com/processing/processing/wiki/Library-Basics | |
| # UTF-8 supported. | |
| # The name of your library as you want it formatted. | |
| name = PixelFlow | |
| # List of authors. Links can be provided using the syntax [author name](url). | |
| authors = [Thomas Diewald](http://www.thomasdiewald.com) | |
| # A web page for your library, NOT a direct link to where to download it. | |
| url = https://github.com/diwi/PixelFlow | |
| # The category (or categories) of your library, must be from the following list: | |
| # "3D" "Animation" "Compilations" "Data" | |
| # "Fabrication" "Geometry" "GUI" "Hardware" | |
| # "I/O" "Language" "Math" "Simulation" | |
| # "Sound" "Utilities" "Typography" "Video & Vision" | |
| # | |
| # If a value other than those listed is used, your library will listed as | |
| # "Other". Many categories must be comma-separated. | |
| categories = Compilations, Simulation, 3D, Video & Vision, Geometry | |
| # A short sentence (or fragment) to summarize the library's function. This will | |
| # be shown from inside the PDE when the library is being installed. Avoid | |
| # repeating the name of your library here. Also, avoid saying anything redundant | |
| # like mentioning that it's a library. This should start with a capitalized | |
| # letter, and end with a period. | |
| sentence = PixelFlow is a Processing library for high performance GPU-Computing (GLSL), like Fluid Simulation, SoftBody Dynamics, Rendering, Optical Flow, Image processing ... | |
| # Additional information suitable for the Processing website. The value of | |
| # 'sentence' always will be prepended, so you should start by writing the | |
| # second sentence here. If your library only works on certain operating systems, | |
| # mention it here. | |
| paragraph = Fluid Simulation / SoftBody Dynamics / Optical Flow / Harris Corner Detection / Image Processing / Particle Systems / Skylight Renderer / GLSL Tools | |
| # Links in the 'sentence' and 'paragraph' attributes can be inserted using the | |
| # same syntax as for authors. | |
| # That is, [here is a link to Processing](http://processing.org/) | |
| # A version number that increments once with each release. This is used to | |
| # compare different versions of the same library, and check if an update is | |
| # available. You should think of it as a counter, counting the total number of | |
| # releases you've had. | |
| version = 62 # This must be parsable as an int | |
| # The version as the user will see it. If blank, the version attribute will be | |
| # used here. This should be a single word, with no spaces. | |
| prettyVersion = 1.3.0 # This is treated as a String | |
| # The min and max revision of Processing compatible with your library. | |
| # Note that these fields use the revision and not the version of Processing, | |
| # parsable as an int. For example, the revision number for 2.2.1 is 227. | |
| # You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt | |
| # Only use maxRevision (or minRevision), when your library is known to | |
| # break in a later (or earlier) release. Otherwise, use the default value 0. | |
| minRevision = 0 | |
| maxRevision = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment