diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-06-18 19:21:46 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-06-18 19:21:46 -0400 |
commit | 8763e605d17f6d501af6b6e092ac28cb5d2dd4eb (patch) | |
tree | 66008c99db78aaa089c58773082623d9e36ef16d | |
parent | 839861a4adc6c35ccd859eabbddcf7e13e5c2729 (diff) | |
download | lite-xl-plugin-manager-1.0.4.tar.gz lite-xl-plugin-manager-1.0.4.zip |
Updated CHANGELOG, and fixed one last test.v1.0.4
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | t/run.lua | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e57180d..3e5af20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.0.4 + +* Added in metapackage support into manifest and SPEC. +* Fixed issue with system lite-xls not being detected correctly. +* Colorized output by default. +* Added in NO_COLOR standard. +* Updated SPEC and fixed a few spelling/grammatical errors. + # 1.0.3 * Fixed a major issue with windows that causes a crash. @@ -63,12 +63,12 @@ local tests = { assert(#plugins > 20) end, ["05_install_url"] = function() - local plugins = lpm("list language_ksy")["addons"] + local plugins = lpm("list eofnewline")["addons"] assert(#plugins == 1) assert(plugins[1].organization == "singleton") assert(plugins[1].status == "available") - local actions = lpm("install language_ksy") - assert_exists(userdir .. "/plugins/language_ksy.lua") + local actions = lpm("install eofnewline") + assert_exists(userdir .. "/plugins/eofnewline.lua") end, ["06_install_stub"] = function() local plugins = lpm("list lsp")["addons"] |