free-coding-models 0.3.30 → 0.3.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/render-table.js +17 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
---
|
|
3
3
|
|
|
4
|
+
## [0.3.31] - 2026-04-01
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
- **Footer layout reorganized** — Discord link moved to the very bottom line of the TUI for better visibility
|
|
8
|
+
- **X/Twitter support message** — added 🐦 "Support me on X: @vavanessa_dev 💖" with clickable link in the last release footer line
|
|
9
|
+
|
|
4
10
|
## [0.3.29] - 2026-03-27
|
|
5
11
|
|
|
6
12
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.31",
|
|
4
4
|
"description": "Find the fastest coding LLM models in seconds — ping free models from multiple providers, pick the best one for OpenCode, Cursor, or any AI coding assistant.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nvidia",
|
package/src/render-table.js
CHANGED
|
@@ -820,12 +820,7 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
820
820
|
themeColors.warning('\x1b]8;;https://github.com/vava-nessa/free-coding-models/graphs/contributors\x1b\\Contributors\x1b]8;;\x1b\\') +
|
|
821
821
|
themeColors.dim(' • ') +
|
|
822
822
|
'☕ ' +
|
|
823
|
-
themeColors.footerCoffee('\x1b]8;;https://buymeacoffee.com/vavanessadev\x1b\\Buy me a coffee\x1b]8;;\x1b\\')
|
|
824
|
-
themeColors.dim(' • ') +
|
|
825
|
-
'💬 ' +
|
|
826
|
-
themeColors.footerDiscord('\x1b]8;;https://discord.gg/ZTNFHvvCkU\x1b\\Discord\x1b]8;;\x1b\\') +
|
|
827
|
-
themeColors.dim(' → ') +
|
|
828
|
-
themeColors.footerDiscord('https://discord.gg/ZTNFHvvCkU')
|
|
823
|
+
themeColors.footerCoffee('\x1b]8;;https://buymeacoffee.com/vavanessadev\x1b\\Buy me a coffee\x1b]8;;\x1b\\')
|
|
829
824
|
lines.push(footerLine)
|
|
830
825
|
|
|
831
826
|
if (versionStatus.isOutdated) {
|
|
@@ -887,6 +882,12 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
887
882
|
? chalk.rgb(255, 182, 193)(`Last release: ${lastReleaseDate}`)
|
|
888
883
|
: ''
|
|
889
884
|
|
|
885
|
+
const xSupport = chalk.rgb(255, 182, 193)('🐦 Support me on X: ') +
|
|
886
|
+
'\x1b]8;;https://x.com/vavanessa_dev\x1b\\' +
|
|
887
|
+
chalk.cyan('@vavanessa_dev') +
|
|
888
|
+
'\x1b]8;;\x1b\\' +
|
|
889
|
+
chalk.rgb(255, 182, 193)(' 💖')
|
|
890
|
+
|
|
890
891
|
lines.push(
|
|
891
892
|
' ' + themeColors.hotkey('N') + themeColors.dim(' Changelog') +
|
|
892
893
|
(filterBadge
|
|
@@ -894,7 +895,16 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
894
895
|
: '') +
|
|
895
896
|
themeColors.dim(' • ') +
|
|
896
897
|
themeColors.dim('Ctrl+C Exit') +
|
|
897
|
-
(releaseLabel ? themeColors.dim(' • ') + releaseLabel : '')
|
|
898
|
+
(releaseLabel ? themeColors.dim(' • ') + releaseLabel : '') +
|
|
899
|
+
themeColors.dim(' • ') + xSupport
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
// 📖 Discord link at the very bottom of the TUI
|
|
903
|
+
lines.push(
|
|
904
|
+
' 💬 ' +
|
|
905
|
+
themeColors.footerDiscord('\x1b]8;;https://discord.gg/ZTNFHvvCkU\x1b\\Join the Discord\x1b]8;;\x1b\\') +
|
|
906
|
+
themeColors.dim(' → ') +
|
|
907
|
+
themeColors.footerDiscord('https://discord.gg/ZTNFHvvCkU')
|
|
898
908
|
)
|
|
899
909
|
|
|
900
910
|
// 📖 Append \x1b[K (erase to EOL) to each line so leftover chars from previous
|