free-coding-models 0.3.31 → 0.3.33
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 +17 -1
- package/README.md +4 -0
- package/package.json +1 -1
- package/src/render-table.js +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
---
|
|
3
3
|
|
|
4
|
+
## [0.3.33] - 2026-04-01
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
- **X badge darker fuchsia background** (`rgb(140,0,80)`) for better readability
|
|
8
|
+
- **Updated text** → "Follow me on X: @vavanessadev to check my other projects! 💖"
|
|
9
|
+
|
|
10
|
+
## [0.3.32] - 2026-04-01
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **Corrected X/Twitter username to @vavanessadev** — link and display text now point to the right profile
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **X support badge now on fuchsia background** — bold white-on-fuchsia with yellow username, impossible to miss
|
|
17
|
+
- **Discord moved to the very bottom line** of the TUI footer
|
|
18
|
+
- **X follow link added to top of README**
|
|
19
|
+
|
|
4
20
|
## [0.3.31] - 2026-04-01
|
|
5
21
|
|
|
6
22
|
### Changed
|
|
7
23
|
- **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: @
|
|
24
|
+
- **X/Twitter support message** — added 🐦 "Support me on X: @vavanessadev 💖" with clickable link in the last release footer line
|
|
9
25
|
|
|
10
26
|
## [0.3.29] - 2026-03-27
|
|
11
27
|
|
package/README.md
CHANGED
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
<h1 align="center">free-coding-models</h1>
|
|
10
10
|
|
|
11
|
+
<p align="center">
|
|
12
|
+
🐦 Follow me on <a href="https://x.com/vavanessadev"><strong>X (@vavanessadev)</strong></a> 💖
|
|
13
|
+
</p>
|
|
14
|
+
|
|
11
15
|
<p align="center">
|
|
12
16
|
<strong>Find the fastest free coding model in seconds</strong><br>
|
|
13
17
|
<sub>Ping 174 models across 23 AI Free providers in real-time </sub><br><sub> Install Free API endpoints to your favorite AI coding tool: <br>📦 OpenCode, 🦞 OpenClaw, 💘 Crush, 🪿 Goose, 🛠 Aider, 🐉 Qwen Code, 🤲 OpenHands, ⚡ Amp, π Pi, 🦘 Rovo or ♊ Gemini in one keystroke</sub>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.33",
|
|
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
|
@@ -882,11 +882,11 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
882
882
|
? chalk.rgb(255, 182, 193)(`Last release: ${lastReleaseDate}`)
|
|
883
883
|
: ''
|
|
884
884
|
|
|
885
|
-
const
|
|
886
|
-
'\x1b]8;;https://x.com/
|
|
887
|
-
chalk.
|
|
885
|
+
const xSupportBg = chalk.bgRgb(140, 0, 80).rgb(255, 255, 255).bold('🐦 Follow me on X: ') +
|
|
886
|
+
'\x1b]8;;https://x.com/vavanessadev\x1b\\' +
|
|
887
|
+
chalk.bgRgb(140, 0, 80).rgb(255, 200, 50).bold('@vavanessadev') +
|
|
888
888
|
'\x1b]8;;\x1b\\' +
|
|
889
|
-
chalk.rgb(255,
|
|
889
|
+
chalk.bgRgb(140, 0, 80).rgb(255, 255, 255).bold(' to check my other projects! 💖')
|
|
890
890
|
|
|
891
891
|
lines.push(
|
|
892
892
|
' ' + themeColors.hotkey('N') + themeColors.dim(' Changelog') +
|
|
@@ -896,7 +896,7 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
896
896
|
themeColors.dim(' • ') +
|
|
897
897
|
themeColors.dim('Ctrl+C Exit') +
|
|
898
898
|
(releaseLabel ? themeColors.dim(' • ') + releaseLabel : '') +
|
|
899
|
-
themeColors.dim(' • ') +
|
|
899
|
+
themeColors.dim(' • ') + xSupportBg
|
|
900
900
|
)
|
|
901
901
|
|
|
902
902
|
// 📖 Discord link at the very bottom of the TUI
|