From 1e0d90ba397f9bedc7ca1ed26ae7122458d4f066 Mon Sep 17 00:00:00 2001 From: Redfire Date: Wed, 18 Sep 2024 23:23:35 +0800 Subject: [PATCH 1/4] Add Code::Stats Plugin --- README.md | 1 + channel.json | 5 ++++- plugins/codestats.json | 15 +++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 plugins/codestats.json diff --git a/README.md b/README.md index 3d8680a..478803a 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ This repository contains the 'channel.json' file which lists all official micro | `run` | F5 to save and run, F12 to 'make', F9 to 'make' in background. Go, Python, Lua and executable file (#!) supported. Can 'make' whole project even from subdir. | https://github.com/terokarvinen/micro-run | :heavy_check_mark: | | `palettero` | Command palette - Ctrl-P to fuzzy search & run commands, textfilters and descriptions. Use Python oneliners and grep to edit text. | https://github.com/terokarvinen/palettero | :heavy_check_mark: | | `cheat` | F1 cheatsheet for the language you're editing: Python, Go, Lua... | https://github.com/terokarvinen/micro-cheat | :heavy_check_mark: | +| `codestats` | Code::Stats for Micro Editor | https://github.com/redfire75369/code-stats-micro | :heavy_check_mark: | ## Adding your own plugin diff --git a/channel.json b/channel.json index 6bd00cc..6d349fa 100644 --- a/channel.json +++ b/channel.json @@ -87,6 +87,9 @@ "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/palettero.json", // cheat plugin - "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json" + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json", + + // codestats plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/codestats.json" ] diff --git a/plugins/codestats.json b/plugins/codestats.json new file mode 100644 index 0000000..1d5e69c --- /dev/null +++ b/plugins/codestats.json @@ -0,0 +1,15 @@ +[{ + "Name": "codestats", + "Description": "Code::Stats Plugin for Micro", + "Website": "https://github.com/redfire75369/code-stats-micro", + "Tags": ["codestats", "stats"], + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.0.zip", + "Require": { + "Micro": ">2.0.0" + } + } + ] +}] From 31177e8942eddc2356cede02582a8bf5955abcbc Mon Sep 17 00:00:00 2001 From: Redfire Date: Thu, 19 Sep 2024 20:09:20 +0800 Subject: [PATCH 2/4] Added CodeStats v1.0.1 --- plugins/codestats.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/codestats.json b/plugins/codestats.json index 1d5e69c..f374799 100644 --- a/plugins/codestats.json +++ b/plugins/codestats.json @@ -3,6 +3,7 @@ "Description": "Code::Stats Plugin for Micro", "Website": "https://github.com/redfire75369/code-stats-micro", "Tags": ["codestats", "stats"], + "License": "MIT", "Versions": [ { "Version": "1.0.0", @@ -10,6 +11,13 @@ "Require": { "Micro": ">2.0.0" } + }, + { + "Version": "1.0.1", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.1.zip, + "Require": { + "Micro": ">2.0.0" + } } ] }] From 39430a81c246ff802c288df64331a03bd659384d Mon Sep 17 00:00:00 2001 From: Redfire Date: Thu, 12 Dec 2024 20:29:46 +0800 Subject: [PATCH 3/4] Added CodeStats v1.0.2 and v1.1.0 --- plugins/codestats.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/plugins/codestats.json b/plugins/codestats.json index f374799..4a2c5b7 100644 --- a/plugins/codestats.json +++ b/plugins/codestats.json @@ -9,14 +9,28 @@ "Version": "1.0.0", "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.0.zip", "Require": { - "Micro": ">2.0.0" + "micro": ">=2.0.0" } }, { "Version": "1.0.1", "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.1.zip, "Require": { - "Micro": ">2.0.0" + "micro": ">=2.0.0" + } + }, + { + "Version": "1.0.2", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.2.zip, + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.1.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.0.zip, + "Require": { + "micro": ">=2.0.0" } } ] From 26d2b3bc5f0f148cb906b15b304eded5791531ee Mon Sep 17 00:00:00 2001 From: Redfire Date: Sat, 18 Jan 2025 16:36:02 +0800 Subject: [PATCH 4/4] Added CodeStats v1.1.1 --- plugins/codestats.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/plugins/codestats.json b/plugins/codestats.json index 4a2c5b7..ed1939f 100644 --- a/plugins/codestats.json +++ b/plugins/codestats.json @@ -14,21 +14,28 @@ }, { "Version": "1.0.1", - "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.1.zip, + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.1.zip", "Require": { "micro": ">=2.0.0" } }, { "Version": "1.0.2", - "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.2.zip, + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.2.zip", "Require": { "micro": ">=2.0.0" } }, { "Version": "1.1.0", - "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.0.zip, + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.0.zip", + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.1.1", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.1.zip", "Require": { "micro": ">=2.0.0" }