Skip to content

Commit aeb8fc3

Browse files
committed
fix: remove unused import in copilot.ts and bump to v1.2.1
1 parent 7a95eb3 commit aeb8fc3

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.1] - 2026-01-14
9+
10+
### Fixed
11+
12+
- Remove unused `maskString` import in `copilot.ts` to fix lint error
13+
814
## [1.2.0] - 2026-01-14
915

1016
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-mystatus",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Check all your AI subscription quotas in one command. Supports OpenAI, Zhipu AI, Z.ai, and Google Antigravity. More platforms coming soon.",
55
"type": "module",
66
"main": "dist/plugin/mystatus.js",

plugin/lib/copilot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { t } from "./i18n";
1111
import { type QueryResult, type CopilotAuthData } from "./types";
12-
import { createProgressBar, fetchWithTimeout, maskString } from "./utils";
12+
import { createProgressBar, fetchWithTimeout } from "./utils";
1313

1414
// ============================================================================
1515
// Type Definitions

0 commit comments

Comments
 (0)