diff --git a/CHANGELOG.md b/CHANGELOG.md index dfa610d..ebdb290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # template-ext-string-utils +## 1.0.4 + +### Patch Changes + +- Add padding command +- Update README +- Configured GitHub Actions to automatically release new versions on `main` branch + ## 1.0.3 ### Patch Changes @@ -23,4 +31,4 @@ ### Patch Changes -- Initial release \ No newline at end of file +- Initial release diff --git a/README.md b/README.md index 2d99220..308c828 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,23 @@ This is an extension for [Kunkun](https://docs.kunkun.sh/) that provides a set of string utility functions. -Currently supported functions: +## Currently supported functions: -![image](https://raw.githubusercontent.com/NaN72dev/kunkun-ext-string-utils/refs/heads/main/functions.png) +### Form +- Truncate a string to a maximum length +- Pad a string to a maximum length + +### Headless +- Convert clipboard text to camelCase +- Convert clipboard text to Capitalize text +- Convert clipboard text to kebab-case (dash-case) +- Convert clipboard text to lower case +- Convert clipboard text to snake_case +- Convert clipboard text to Start Case +- Convert clipboard text to UPPER CASE +- Trim the clipboard text +- Trim the end of clipboard text +- Trim the start of clipboard text ## Development @@ -71,7 +85,22 @@ npx kksh@latest verify --publish # Verify some basic settings before publishing See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) for more details on how to publish your extension. You will need to publish your extension package to npm or jsr first with GitHub actioin, then register it on Kunkun's website. -# TODO -[ ] padding -[ ] Truncate +# TODO +- [ ] RaNdOm CaSE +- [ ] Lorem ipsum +- [ ] Lorem ipsum (Preferences) +- [ ] Repeat +- [ ] Replace +- [ ] Escape HTML +- [ ] Unescape HTML +- [ ] URL encode +- [ ] URL decode +- [ ] Base64 encode +- [ ] Base64 decode +- [ ] Slash escape +- [ ] Slash unescape +- [ ] Character count +- [ ] Word count +- [ ] Reverse +- [ ] ROT? diff --git a/package.json b/package.json index 485413f..31a0e9b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-string-utils", - "version": "1.0.3", + "version": "1.0.4", "license": "MIT", "author": "NaN72dev", "type": "module",