omnish 2.2.2 → 2.2.3
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 +13 -0
- package/contrib/install-omnish.sh +0 -0
- package/dist/downloads/omnish-claude/install.sh +0 -0
- package/dist/downloads/omnish-claude/uninstall.sh +0 -0
- package/dist/downloads/omnish-claude.tar.gz +0 -0
- package/dist/downloads/omnish-cursor/install.sh +0 -0
- package/dist/downloads/omnish-cursor/uninstall.sh +0 -0
- package/dist/downloads/omnish-cursor.tar.gz +0 -0
- package/dist/index.js +355 -354
- package/dist/omnish-claude/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-claude/install.sh +0 -0
- package/dist/omnish-claude/scripts/doctor.sh +0 -0
- package/dist/omnish-claude/uninstall.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-session-start.sh +0 -0
- package/dist/omnish-cursor/install.sh +0 -0
- package/dist/omnish-cursor/scripts/doctor.sh +0 -0
- package/dist/omnish-cursor/uninstall.sh +0 -0
- package/package.json +32 -22
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.2.3] - 2026-07-26
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Omnishchat capability persistence:** platform account sync no longer strips `omnishchat` from `enabledChannels` on every merge — the channel isn't platform-managed, so local enablement now survives.
|
|
15
|
+
- **Device-wide recipes/shortcuts/cowork tasks:** everything a user creates is now scoped to the device it runs on, not the sender identity (phone number / Telegram id). `resolveStoragePeerKey` collapses all peer keys to one shared bucket; existing per-sender data auto-migrates into it on startup.
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- **Cowork scheduling:** reworked schedule math with coalescing logic and human-readable `friendlyScheduleLabel` descriptions for recurring jobs.
|
|
20
|
+
- **Cowork platform RPC:** multi-device cowork calendar support via WS RPC (`src/cowork/service.ts`, `src/platform/client.ts`, `src/platform/protocol.ts`).
|
|
21
|
+
|
|
10
22
|
## [2.2.2] - 2026-07-11
|
|
11
23
|
|
|
12
24
|
### Changed
|
|
@@ -138,6 +150,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
138
150
|
|
|
139
151
|
- Documentation and formatting updates across chat components and feature docs.
|
|
140
152
|
|
|
153
|
+
[2.2.3]: https://github.com/labKnowledge/omnish/compare/v2.2.2...v2.2.3
|
|
141
154
|
[2.2.2]: https://github.com/labKnowledge/omnish/compare/v2.2.1...v2.2.2
|
|
142
155
|
[2.2.1]: https://github.com/labKnowledge/omnish/compare/v2.2.0...v2.2.1
|
|
143
156
|
[2.2.0]: https://github.com/labKnowledge/omnish/compare/v2.1.9...v2.2.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
Binary file
|