aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-07-09 10:20:35 -0400
committerAdam Harrison <adamdharrison@gmail.com>2024-10-13 19:49:52 -0400
commit39a6b6578cfe55212311592a5b3774a65f40d333 (patch)
treed5a1f34c7c3e8f0af799ada73569e6aa0a070671
parentc09b1224fbc618f12a92deb196e5d5c50e2bedd4 (diff)
downloadlite-xl-plugin-manager-39a6b6578cfe55212311592a5b3774a65f40d333.tar.gz
lite-xl-plugin-manager-39a6b6578cfe55212311592a5b3774a65f40d333.zip
Changed over to mod-version 4.03.0
Addedd in preview. git diff HEAD
-rw-r--r--manifest.json31
-rw-r--r--plugins/plugin_manager/init.lua2
-rw-r--r--plugins/welcome.lua2
-rw-r--r--src/lpm.lua2
4 files changed, 32 insertions, 5 deletions
diff --git a/manifest.json b/manifest.json
index f21d73e..2f3dd98 100644
--- a/manifest.json
+++ b/manifest.json
@@ -5,7 +5,7 @@
"version": "0.1",
"description": "A GUI interface to Adam's lite-xl plugin manager.",
"path": "plugins/plugin_manager",
- "mod_version": 3,
+ "mod_version": 4,
"files": [
{
"url": "https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/latest/lpm.x86_64-linux",
@@ -71,6 +71,7 @@
"description": "A welcome screen for lite-xl, that on first start, invites a user to install the meta_addons package, or access the plugin manager.",
"type": "plugin",
"path": "plugins/welcome.lua",
+ "mod_version": 4,
"version": "0.1",
"dependencies": {
"plugin_manager": {}
@@ -86,6 +87,32 @@
],
"lite-xls": [
{
+ "version": "3.0-preview",
+ "mod_version": 4,
+ "files": [
+ {
+ "arch": "x86_64-linux",
+ "url": "https://github.com/adamharrison/lite-xl/releases/download/v3.0/lite-xl-v3.0-x86_64-linux-portable.tar.gz",
+ "checksum": "SKIP"
+ },
+ {
+ "arch": "x86_64-windows",
+ "url": "https://github.com/adamharrison/lite-xl/releases/download/v3.0/lite-xl-v3.0-x86_64-windows-portable.zip",
+ "checksum": "SKIP"
+ },
+ {
+ "arch": "x86_64-darwin",
+ "url": "https://github.com/adamharrison/lite-xl/releases/download/v3.0/lite-xl-v3.0-universal-darwin-portable.tar.gz",
+ "checksum": "SKIP"
+ },
+ {
+ "arch": "aarch64-darwin",
+ "url": "https://github.com/adamharrison/lite-xl/releases/download/v3.0/lite-xl-v3.0-universal-darwin-portable.tar.gz",
+ "checksum": "SKIP"
+ }
+ ]
+ },
+ {
"version": "2.1.1-simplified",
"mod_version": 3,
"files": [
@@ -108,7 +135,7 @@
}
],
"remotes": [
- "https://github.com/lite-xl/lite-xl-plugins.git:master",
+ "https://github.com/adamharrison/lite-xl-plugins.git:3.0",
"https://github.com/lite-xl/lite-xl-colors.git:master"
]
}
diff --git a/plugins/plugin_manager/init.lua b/plugins/plugin_manager/init.lua
index 95dbc6d..27553a2 100644
--- a/plugins/plugin_manager/init.lua
+++ b/plugins/plugin_manager/init.lua
@@ -1,4 +1,4 @@
--- mod-version:3 --lite-xl 2.1 --priority:5
+-- mod-version:4 --lite-xl 3.0 --priority:5
local core = require "core"
local common = require "core.common"
diff --git a/plugins/welcome.lua b/plugins/welcome.lua
index 5516568..03762b5 100644
--- a/plugins/welcome.lua
+++ b/plugins/welcome.lua
@@ -1,4 +1,4 @@
--- mod-version:3 --lite-xl 2.1
+-- mod-version:4 --lite-xl 3.0
local core = require "core"
local style = require "core.style"
diff --git a/src/lpm.lua b/src/lpm.lua
index 51b09cc..18d16cc 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -532,7 +532,7 @@ function common.args(arguments, options)
end
global({
- LATEST_MOD_VERSION = "3.0.0",
+ LATEST_MOD_VERSION = "4.0.0",
EXECUTABLE_EXTENSION = PLATFORM == "windows" and ".exe" or "",
SHOULD_COLOR = ((PLATFORM == "windows" or (os.getenv("TERM") and os.getenv("TERM") ~= "dumb")) and not os.getenv("NO_COLOR")) or false
})