@aurora-foundation/obsidian-next 0.4.9 → 0.4.11
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 +11 -0
- package/dist/chunk-3VZGPA3N.js +42 -0
- package/dist/chunk-3XR3GZLX.js +7809 -0
- package/dist/chunk-6YJSTQKN.js +7817 -0
- package/dist/chunk-7XFP3ZUD.js +42 -0
- package/dist/chunk-ASDVTRIQ.js +7805 -0
- package/dist/chunk-BAKREPY2.js +439 -0
- package/dist/chunk-BFRO5BO2.js +42 -0
- package/dist/chunk-DAR45YDV.js +42 -0
- package/dist/chunk-FNXAI27K.js +7812 -0
- package/dist/chunk-HKPL675M.js +42 -0
- package/dist/chunk-INEXRRON.js +42 -0
- package/dist/chunk-ISO6GNIB.js +429 -0
- package/dist/chunk-MGDY5JUY.js +581 -0
- package/dist/chunk-OFTKVOQ2.js +7828 -0
- package/dist/chunk-PD4ZKYTJ.js +7838 -0
- package/dist/chunk-PQSPCOJ7.js +7616 -0
- package/dist/chunk-QSEH5NXV.js +7807 -0
- package/dist/chunk-RUEIA6Z5.js +42 -0
- package/dist/chunk-S5IDXE2L.js +42 -0
- package/dist/chunk-UG3HWGIO.js +42 -0
- package/dist/chunk-VWMT4HCP.js +7668 -0
- package/dist/chunk-YFQI44IA.js +42 -0
- package/dist/chunk-ZR7MEF3B.js +7605 -0
- package/dist/context-NI6N46WG.js +10 -0
- package/dist/index.js +610 -344
- package/dist/memory-GXW2OA2T.js +13 -0
- package/dist/resume-EA6ISWW2.js +15 -0
- package/dist/resume-EIM5FN42.js +15 -0
- package/dist/resume-FBVK6NAI.js +15 -0
- package/dist/resume-H6J5PQIA.js +15 -0
- package/dist/resume-JDDVTMM4.js +15 -0
- package/dist/resume-JFYYR7DJ.js +15 -0
- package/dist/resume-KGFAZY34.js +15 -0
- package/dist/resume-MF5TM2ZB.js +15 -0
- package/dist/resume-O6PLICAA.js +15 -0
- package/dist/resume-PZU3PWCJ.js +15 -0
- package/dist/session-37MDDCWV.js +14 -0
- package/dist/session-56ZI3GZV.js +14 -0
- package/dist/session-5OFIDWGU.js +14 -0
- package/dist/session-7LPACLRV.js +14 -0
- package/dist/session-CJ6HSKDI.js +14 -0
- package/dist/session-CUXGN26I.js +14 -0
- package/dist/session-LEVSW6JH.js +14 -0
- package/dist/session-MHZAYMLC.js +14 -0
- package/dist/session-NNU7OW5K.js +14 -0
- package/dist/session-T64DMDAU.js +14 -0
- package/dist/settings-4ALCRT5S.js +8 -0
- package/dist/skills/defaults/clipboard.mjs +46 -0
- package/dist/skills/defaults/notify.mjs +36 -0
- package/dist/skills/defaults/open_app.mjs +53 -0
- package/dist/skills/defaults/speak.mjs +47 -0
- package/dist/skills/defaults/spotify_control.mjs +187 -0
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.11] - 2026-02-14
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Chat Layout**: Messages no longer stick to the bottom of the terminal when few or no messages are present. Layout dynamically switches between top-aligned (few messages) and bottom-anchored (full viewport).
|
|
12
|
+
- **Scroll Support**: Arrow keys (Up/Down) now scroll through chat history one line at a time. Shift+Arrow jumps a full page. Scroll position is preserved when new messages arrive if the user has scrolled up.
|
|
13
|
+
- **Scroll Indicator**: Yellow indicator shows current scroll position and keybind hints when scrolled up.
|
|
14
|
+
- **Scroll Reset**: Sending a message or running `/clear` automatically jumps back to the bottom of the conversation.
|
|
15
|
+
- **MessageList Boundary Guard**: Prevents crash when events are cleared while scrolled up (negative index guard).
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
8
19
|
## [0.4.8] - 2026-02-13
|
|
9
20
|
|
|
10
21
|
### Added
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import {
|
|
2
|
+
session
|
|
3
|
+
} from "./chunk-PQSPCOJ7.js";
|
|
4
|
+
import {
|
|
5
|
+
bus
|
|
6
|
+
} from "./chunk-WQM6FFSD.js";
|
|
7
|
+
|
|
8
|
+
// src/commands/resume.ts
|
|
9
|
+
async function resumeCommand(args) {
|
|
10
|
+
if (args.length > 0) {
|
|
11
|
+
const sessionId = args[0];
|
|
12
|
+
try {
|
|
13
|
+
const result = await session.restore(sessionId);
|
|
14
|
+
if (result.success) {
|
|
15
|
+
bus.emitAgent({
|
|
16
|
+
type: "thought",
|
|
17
|
+
content: `Resumed session: ${sessionId}`
|
|
18
|
+
});
|
|
19
|
+
} else {
|
|
20
|
+
bus.emitAgent({
|
|
21
|
+
type: "error",
|
|
22
|
+
message: `Failed to resume session: ${result.error}`
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
} catch (err) {
|
|
26
|
+
bus.emitAgent({
|
|
27
|
+
type: "error",
|
|
28
|
+
message: `Error resuming session: ${err}`
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
bus.emitAgent({
|
|
34
|
+
type: "view_request",
|
|
35
|
+
viewId: "sessions",
|
|
36
|
+
command: "resume"
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export {
|
|
41
|
+
resumeCommand
|
|
42
|
+
};
|