shortcutxl 0.2.16 → 0.2.17

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 ADDED
@@ -0,0 +1,36 @@
1
+ # Changelog
2
+
3
+ ## [0.2.17]
4
+
5
+ - **Better change review dialog** — Cell diffs now show full addresses (e.g. `Sheet1!A1`), formula details, and keyboard navigation with arrow keys for scrolling through large changesets.
6
+ - **Alt+V paste is more reliable** — Fixed cases where Alt+V would fail silently. Now gives clear feedback and handles clipboard errors gracefully.
7
+ - **Skill saving bug fixed** — Skills are not saved in the correct directory and survives application updates.
8
+ - **Clean terminal on launch** — Starting ShortcutXL now clears prior output so you always begin with a fresh screen.
9
+
10
+ ## [0.2.14]
11
+
12
+ - **Python linting & type checking** — Added ruff and pyright checks for the Python modules and tests. Import sorting, unused variables, and type errors are now caught before publish.
13
+ - **Cleaner dead-code detection** — Removed unused TypeScript exports and tightened knip configuration.
14
+
15
+ ## [0.2.13]
16
+
17
+ - **Stay logged in across terminals** — Previously, opening a new terminal while others were running could force you to log in again. Now your session persists reliably no matter how many terminals you have open.
18
+
19
+ ## [0.2.12]
20
+
21
+ - **No more popup windows during updates** — Background updates now run silently instead of flashing a command prompt on your screen.
22
+
23
+ ## [0.2.11]
24
+
25
+ - **More reliable first-time setup** — ShortcutXL now waits for Excel to be fully ready before running its connection test, so setup succeeds on the first try even on slower machines.
26
+ - **Switched to production servers** — All traffic now routes through `shortcut.ai` production endpoints for better performance and reliability.
27
+
28
+ ## [0.2.9]
29
+
30
+ - **Works without Python on your PATH** — ShortcutXL now finds and loads Python automatically. No more fiddling with environment variables or system settings to get things working.
31
+
32
+ ## [0.1.1]
33
+
34
+ - **Update notifications** — ShortcutXL tells you when a new version is available and shows you the exact command to upgrade.
35
+ - **Survives reinstalls** — Updating or reinstalling the npm package no longer breaks your Excel setup. Everything keeps working without reconfiguration.
36
+ - **Handles Excel locks gracefully** — If Excel has ShortcutXL loaded during an update, you get a clear message instead of a crash.
@@ -58,6 +58,7 @@ Excel Processing:
58
58
  - if Excel is not running, we need to run it -- ask the user if they want a specific file open or if you can just open a blank workbook
59
59
  - if Excel is running, we need to close the excel process and restart it. Ask the user to save work, close Excel, and then re-open
60
60
  - wait a couple seconds to health check
61
+ - if health check passes but excel_exec fails, it is probably blocked by a pop-up. Confirm and debug however you can and then stop. Don't do anything fancy, just tell the user that nothing can proceed until popups are gone
61
62
 
62
63
  ## Extensibility — UDFs vs Skills vs Extensions
63
64
  For any extension requests, ask the user which approach fits their need, or recommend one based on context. Prefer skills by default — they're lightweight and don't pollute context
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shortcutxl",
3
- "version": "0.2.16",
3
+ "version": "0.2.17",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist/",
@@ -10,7 +10,8 @@
10
10
  "!dist/test-helpers/",
11
11
  "skills/",
12
12
  "agent-docs/",
13
- "xll/"
13
+ "xll/",
14
+ "CHANGELOG.md"
14
15
  ],
15
16
  "shortcutConfig": {
16
17
  "name": "shortcut",