diff options
author | Jefferson González <jgmdev@gmail.com> | 2023-01-06 14:16:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 14:16:51 -0400 |
commit | 770c225441e49e5f7a8e1a7940849e5877903d7c (patch) | |
tree | f9afee44329bf397b54a9c747348b7ef95dc38ef | |
parent | 9385bd0f18ff02df02cc8bc500c04d671f35e9fa (diff) | |
download | lite-xl-plugins-770c225441e49e5f7a8e1a7940849e5877903d7c.tar.gz lite-xl-plugins-770c225441e49e5f7a8e1a7940849e5877903d7c.zip |
added plugins: thread, encoding and net (#193)
-rw-r--r-- | manifest.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json index c233dab..2fa19c5 100644 --- a/manifest.json +++ b/manifest.json @@ -127,6 +127,22 @@ "mod_version": "3" }, { + "description": "Add support for detecting file and string encodings as converting between them.", + "version": "1.1", + "type": "library", + "remote": "https://github.com/jgmdev/lite-xl-encoding:b1ddf226277ea12a03ed9db2ddda458988020e91", + "mod_version": "3", + "id": "encoding" + }, + { + "description": "Properly read files that are not encoded in UTF-8 or ASCII by auto-detecting their encoding and allows saving on different text encodings.", + "version": "1.0", + "remote": "https://github.com/jgmdev/lite-xl-encoding:b1ddf226277ea12a03ed9db2ddda458988020e91", + "mod_version": "3", + "id": "encodings", + "dependencies": { "encoding": { } } + }, + { "checksum": "e3607f5107f4e42fd99006289b8214a473824c6973b8e9c637b4657eba763650", "description": "Make sure the file ends with one blank line.", "version": "0.1", @@ -191,6 +207,15 @@ "id": "fallbackfonts" }, { + "name": "Multithreaded Find File", + "description": "Threaded project find files.", + "version": "1.0", + "remote": "https://github.com/jgmdev/lite-xl-threads:e61ffd28fc852b143fe468c4b43c68d605f22335", + "mod_version": "3", + "id": "findfileimproved", + "dependencies": { "thread": { } } + }, + { "description": "Allows users to load fonts with [fontconfig](https://www.freedesktop.org/software/fontconfig/fontconfig-user.html).", "version": "0.1", "path": "plugins/fontconfig.lua", @@ -898,6 +923,14 @@ "mod_version": "3" }, { + "description": "Add support for TCP and UDP sockets using SDL_net.", + "version": "1.1", + "type": "library", + "remote": "https://github.com/jgmdev/lite-xl-net:a1930395c89e24344db686f2e83ce67a602c5dbf", + "mod_version": "3", + "id": "net" + }, + { "description": "File icons set for TreeView. Download [font](https://github.com/yamatsum/nonicons/raw/6a2faf4fbdfbe353c5ae6a496740ac4bfb6d0e74/dist/nonicons.ttf) to your config/fonts folder", "version": "0.1", "path": "plugins/nonicons.lua", @@ -954,6 +987,15 @@ "mod_version": "3" }, { + "name": "Multithreaded Project Search", + "description": "Threaded project search with 5-10x better performance.", + "version": "1.2", + "remote": "https://github.com/jgmdev/lite-xl-threads:e61ffd28fc852b143fe468c4b43c68d605f22335", + "mod_version": "3", + "id": "projectsearch", + "dependencies": { "thread": { } } + }, + { "description": "Show nesting of parentheses with rainbow colours", "version": "0.1", "path": "plugins/rainbowparen.lua", @@ -1097,6 +1139,15 @@ "mod_version": "3" }, { + "name": "Threads", + "description": "Adds the missing multithreading functionality.", + "version": "1.1", + "type": "library", + "remote": "https://github.com/jgmdev/lite-xl-threads:e61ffd28fc852b143fe468c4b43c68d605f22335", + "mod_version": "3", + "id": "thread" + }, + { "description": "Extend Lite XL's treeview menu *([screenshot](https://raw.githubusercontent.com/juliardi/lite-xl-treeview-menu-extender/main/screenshot.png))*", "version": "0.1", "remote": "https://github.com/juliardi/lite-xl-treeview-menu-extender:bd9063e453b4024dcd0bf6a4f775ded32ca24d1f", |