diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-01-11 20:09:02 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-01-11 20:09:02 -0500 |
commit | b371dcb9903266bf5ff15d6a97c02f7b1233d878 (patch) | |
tree | faaa8044b6264ac7aac5d54ededb8ec92bc2f5a1 | |
parent | 41cbddaa9c327f9f5f80524597cffa99ad4eb445 (diff) | |
parent | fe4446f49f2e4cce6ef29d028e960165baba3529 (diff) | |
download | lite-xl-plugin-manager-b371dcb9903266bf5ff15d6a97c02f7b1233d878.tar.gz lite-xl-plugin-manager-b371dcb9903266bf5ff15d6a97c02f7b1233d878.zip |
Merge branch 'master' of github.com:adamharrison/lite-xl-plugin-managerv0.995
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | SPEC.md | 4 |
2 files changed, 12 insertions, 4 deletions
@@ -17,6 +17,12 @@ recent versioned release. Conforms to [SCPS3](https://github.com/adamharrison/straightforward-c-project-standard#SCPS3). +## Status + +Please note that `lpm` has currently not reached version 1.0. As such, it is still heavily in flux, and may change without notice. + +Once 1.0 is released, changleogs will be produced, and a more stable process that uses semver will be used. + ## Specification For details about the `manifest.json` files that `lpm` consumes, @@ -36,14 +42,14 @@ you can do: ``` git clone git@github.com:lite-xl/lite-xl-plugin-manager.git \ --shallow-submodules --recurse-submodules && cd lite-xl-plugin-manager &&\ - ./build.sh && ./lpm + ./build.sh -DLPM_STATIC && ./lpm ```` If you want to build it quickly, and have the right modules installed, you can do: ``` -./build.sh -lgit2 -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -lz +./build.sh -lgit2 -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -lz -DLPM_STATIC ``` OR @@ -98,7 +104,7 @@ lpm --help ### Linux & MacOS & Windows MSYS ``` -./build.sh clean && ./build.sh && ./lpm +./build.sh clean && ./build.sh -DLPM_STATIC && ./lpm ``` ### Linux -> Windows @@ -81,7 +81,9 @@ Files are objects that contain at least two keys, `url`, and `checksum`. They can also optionally contain the `arch` and `path` keys. * `url` represents the URL to grab the particular file from. -* `checksum` is the sha256hex checksum for the file. +* `checksum` is the sha256hex checksum for the file. If `"SKIP"` is specified, the + check is skipped. This is fine for development purposes, but any publically + accessible manifest, should specify a checksum. * `arch` is the lite-xl/clang architecture tuple that the file is relevant for. if omitted, file is to be assumed to be valid for all arhcitectures. * `path` is the location to install this file inside the plugin's directory. |