This is where the Variable Store Extension Fetches data from
- The main store info file (whose link you put in STORE_LINK) must have an integer number at the top (which indicates current store version). and the 1st extension entry should be of the store itself. Sub-store info files (whose links you can add later in the option tab) does NOT have to do this!
- The Store Entry is an array of the format:
["Display Name", 0.1, "Description", ........... ,"Image link", "{repo}/raw/{Path of extension within repo}"]
- The quotation marks ("") should not be removed
0.1
is the version of the extension (usually obtained from extension.json of the extension)- Anything value/values can be placed between
"Description"
and"Image link"
(with proper commas offcourse). However if you are placing an array there then the first element of that array must be a string (with ""). That string will be used as a keyword to tell the store what it is (currently, "Tags" is the only recognized keyword) Image link
is the link you get by right clicking an image (uploaded somewhere on the internet) and selecting Copy Image Link"{repo}/raw/{Path of extension within repo}"
(ifhttps://github.com/Variable-ind/Pixelorama-Extensions/
blob/master/Extensions/Example.pck
is the URL path to your extension then replace blob with raw- and the link becomes "
"https://github.com/Variable-ind/Pixelorama-Extensions/
raw/master/Extensions/Example.pck"
"
- One store entry must occupy only one line (and vice-versa)
- Comments are supported. you can comment an entire line by placing
#
at the start of the line (comments between or at end of line are not allowed). - links to another store_info file can be placed inside another store_info file (it will get detected as a custom store file)