free-coding-models 0.3.32 → 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 +6 -0
- package/package.json +1 -1
- package/src/render-table.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
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
|
+
|
|
4
10
|
## [0.3.32] - 2026-04-01
|
|
5
11
|
|
|
6
12
|
### Fixed
|
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 xSupportBg = chalk.bgRgb(
|
|
885
|
+
const xSupportBg = chalk.bgRgb(140, 0, 80).rgb(255, 255, 255).bold('🐦 Follow me on X: ') +
|
|
886
886
|
'\x1b]8;;https://x.com/vavanessadev\x1b\\' +
|
|
887
|
-
chalk.bgRgb(
|
|
887
|
+
chalk.bgRgb(140, 0, 80).rgb(255, 200, 50).bold('@vavanessadev') +
|
|
888
888
|
'\x1b]8;;\x1b\\' +
|
|
889
|
-
chalk.bgRgb(
|
|
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') +
|