mirror of https://github.com/jackwener/wx-cli.git
chore(release): bump version to 0.2.0
主要新增: - `wx attachments` / `wx extract`:从本地 chat 数据解密提取 V2 图片附件(macOS / Windows) - `DbCache` WAL 增量复用:daemon 请求路径从每次 ~120s 全量解密压到 < 1s(典型 WAL) 完整 changelog 见 #57 / #58。pull/43/head v0.2.0
parent
6424a2162b
commit
52cc39a55c
|
|
@ -1313,7 +1313,7 @@ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wx-cli"
|
name = "wx-cli"
|
||||||
version = "0.1.11"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "wx-cli"
|
name = "wx-cli"
|
||||||
version = "0.1.11"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "WeChat 4.x (macOS/Linux) local data CLI — decrypt SQLCipher DBs, query chat history, watch new messages"
|
description = "WeChat 4.x (macOS/Linux) local data CLI — decrypt SQLCipher DBs, query chat history, watch new messages"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli-darwin-arm64",
|
"name": "@jackwener/wx-cli-darwin-arm64",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "wx-cli binary for macOS arm64",
|
"description": "wx-cli binary for macOS arm64",
|
||||||
"os": ["darwin"],
|
"os": ["darwin"],
|
||||||
"cpu": ["arm64"],
|
"cpu": ["arm64"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli-darwin-x64",
|
"name": "@jackwener/wx-cli-darwin-x64",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "wx-cli binary for macOS x64",
|
"description": "wx-cli binary for macOS x64",
|
||||||
"os": ["darwin"],
|
"os": ["darwin"],
|
||||||
"cpu": ["x64"],
|
"cpu": ["x64"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli-linux-arm64",
|
"name": "@jackwener/wx-cli-linux-arm64",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "wx-cli binary for Linux arm64",
|
"description": "wx-cli binary for Linux arm64",
|
||||||
"os": ["linux"],
|
"os": ["linux"],
|
||||||
"cpu": ["arm64"],
|
"cpu": ["arm64"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli-linux-x64",
|
"name": "@jackwener/wx-cli-linux-x64",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "wx-cli binary for Linux x64",
|
"description": "wx-cli binary for Linux x64",
|
||||||
"os": ["linux"],
|
"os": ["linux"],
|
||||||
"cpu": ["x64"],
|
"cpu": ["x64"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli-win32-x64",
|
"name": "@jackwener/wx-cli-win32-x64",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "wx-cli binary for Windows x64",
|
"description": "wx-cli binary for Windows x64",
|
||||||
"os": ["win32"],
|
"os": ["win32"],
|
||||||
"cpu": ["x64"],
|
"cpu": ["x64"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@jackwener/wx-cli",
|
"name": "@jackwener/wx-cli",
|
||||||
"version": "0.1.11",
|
"version": "0.2.0",
|
||||||
"description": "Query your local WeChat data from the command line. Designed for LLM agent tool calls.",
|
"description": "Query your local WeChat data from the command line. Designed for LLM agent tool calls.",
|
||||||
"bin": {
|
"bin": {
|
||||||
"wx": "bin/wx.js"
|
"wx": "bin/wx.js"
|
||||||
|
|
@ -13,11 +13,11 @@
|
||||||
"install.js"
|
"install.js"
|
||||||
],
|
],
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@jackwener/wx-cli-darwin-arm64": "0.1.11",
|
"@jackwener/wx-cli-darwin-arm64": "0.2.0",
|
||||||
"@jackwener/wx-cli-darwin-x64": "0.1.11",
|
"@jackwener/wx-cli-darwin-x64": "0.2.0",
|
||||||
"@jackwener/wx-cli-linux-x64": "0.1.11",
|
"@jackwener/wx-cli-linux-x64": "0.2.0",
|
||||||
"@jackwener/wx-cli-linux-arm64": "0.1.11",
|
"@jackwener/wx-cli-linux-arm64": "0.2.0",
|
||||||
"@jackwener/wx-cli-win32-x64": "0.1.11"
|
"@jackwener/wx-cli-win32-x64": "0.2.0"
|
||||||
},
|
},
|
||||||
"engines": { "node": ">=14" },
|
"engines": { "node": ">=14" },
|
||||||
"keywords": ["wechat", "cli", "wx", "llm", "ai", "sqlite", "sqlcipher"],
|
"keywords": ["wechat", "cli", "wx", "llm", "ai", "sqlite", "sqlcipher"],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue