free-coding-models 0.1.21 β 0.1.22
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.
|
@@ -201,7 +201,7 @@ async function promptModeSelection(latestVersion) {
|
|
|
201
201
|
options.push({
|
|
202
202
|
label: 'Read Changelogs',
|
|
203
203
|
icon: 'π',
|
|
204
|
-
description: 'Open
|
|
204
|
+
description: 'Open local CHANGELOG.md file',
|
|
205
205
|
})
|
|
206
206
|
}
|
|
207
207
|
|
|
@@ -1044,11 +1044,12 @@ async function main() {
|
|
|
1044
1044
|
runUpdate(latestVersion)
|
|
1045
1045
|
}
|
|
1046
1046
|
|
|
1047
|
-
// π Handle "Read Changelogs" selection β open
|
|
1047
|
+
// π Handle "Read Changelogs" selection β open local CHANGELOG.md file
|
|
1048
1048
|
if (mode === 'changelogs') {
|
|
1049
1049
|
const { exec } = await import('child_process')
|
|
1050
|
-
|
|
1051
|
-
|
|
1050
|
+
const changelogPath = join(process.cwd(), 'CHANGELOG.md')
|
|
1051
|
+
exec(`open "${changelogPath}"`)
|
|
1052
|
+
console.log(chalk.dim(' π Opening local changelogs fileβ¦'))
|
|
1052
1053
|
process.exit(0)
|
|
1053
1054
|
}
|
|
1054
1055
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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",
|