free-coding-models 0.5.23 → 0.5.24

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.
@@ -0,0 +1,5 @@
1
+ # Changelog v0.5.24 - 2026-06-10
2
+
3
+ ### Fixed
4
+ - Removed erroneous ✨ sparkles from ALL verdict icons (🟩🟢🟡🟠🔴🔥🟥⚫⏳💀). The ✨ were added by mistake to every model row instead of being reserved for new models only.
5
+ - The 🆕 NEW badge now correctly appears **only** on recently added models (from the `NEW_MODELS` set), keeping the table clean and readable for all other models.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-coding-models",
3
- "version": "0.5.23",
3
+ "version": "0.5.24",
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",
@@ -800,53 +800,53 @@ export function renderTable({
800
800
  // 📖 Verdict colors follow the same green→red gradient as TIER_COLOR / SWE%
801
801
  switch (verdict) {
802
802
  case 'Perfect':
803
- verdictIcon = '🟩✨'
803
+ verdictIcon = '🟩'
804
804
  verdictText = `${verdictIcon} Perfect`
805
805
  verdictColor = themeColors.successBold
806
806
  break
807
807
  case 'Normal':
808
- verdictIcon = '🟢✨'
808
+ verdictIcon = '🟢'
809
809
  verdictText = `${verdictIcon} Normal`
810
810
  verdictColor = themeColors.metricGood
811
811
  break
812
812
  case 'Spiky':
813
- verdictIcon = '🟡✨'
813
+ verdictIcon = '🟡'
814
814
  verdictText = `${verdictIcon} Spiky`
815
815
  verdictColor = (text) => chalk.bold.rgb(...getTierRgb('A+'))(text)
816
816
  break
817
817
  case 'Slow':
818
- verdictIcon = '🟠✨'
818
+ verdictIcon = '🟠'
819
819
  verdictText = `${verdictIcon} Slow`
820
820
  verdictColor = (text) => chalk.bold.rgb(...getTierRgb('A-'))(text)
821
821
  break
822
822
  case 'Very Slow':
823
- verdictIcon = '🔴✨'
823
+ verdictIcon = '🔴'
824
824
  verdictText = `${verdictIcon} Very Slow`
825
825
  verdictColor = (text) => chalk.bold.rgb(...getTierRgb('B+'))(text)
826
826
  break
827
827
  case 'Overloaded':
828
- verdictIcon = '🔥✨'
828
+ verdictIcon = '🔥'
829
829
  verdictText = `${verdictIcon} Overloaded`
830
830
  verdictColor = (text) => chalk.bold.rgb(...getTierRgb('B'))(text)
831
831
  break
832
832
  case 'Unstable':
833
833
  // 📖 Avoid ⚠️ here: its variation selector has inconsistent terminal width and shifts the tiny ❔ column.
834
- verdictIcon = '🟥✨'
834
+ verdictIcon = '🟥'
835
835
  verdictText = `${verdictIcon} Unstable`
836
836
  verdictColor = themeColors.errorBold
837
837
  break
838
838
  case 'Not Active':
839
- verdictIcon = '⚫✨'
839
+ verdictIcon = ''
840
840
  verdictText = `${verdictIcon} Not Active`
841
841
  verdictColor = themeColors.dim
842
842
  break
843
843
  case 'Pending':
844
- verdictIcon = '⏳✨'
844
+ verdictIcon = ''
845
845
  verdictText = `${verdictIcon} Pending`
846
846
  verdictColor = themeColors.dim
847
847
  break
848
848
  default:
849
- verdictIcon = '💀✨'
849
+ verdictIcon = '💀'
850
850
  verdictText = `${verdictIcon} Unusable`
851
851
  verdictColor = (text) => chalk.bold.rgb(...getTierRgb('C'))(text)
852
852
  break