@aexol/spectral 0.9.38 → 0.9.39

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,40 @@ All notable changes to `@aexol/spectral` are documented here. Format follows
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.9.39] - 2026-06-22
9
+
10
+ ### Fixed
11
+
12
+ - Fixed packaged desktop login/splash pages failing to load because
13
+ `getLoginPath` and `getSplashPath` resolved against `Resources/assets`
14
+ instead of the assets bundled inside `app.asar`. Both pages now use a
15
+ path relative to `__dirname`.
16
+ - Fixed a race where successfully closing the login window after API-key or
17
+ OAuth sign-in could trigger the "Login window was closed before completing
18
+ sign-in" error. The closed-event handler is now detached before the window
19
+ is closed on a successful login.
20
+
21
+ ## [0.9.38] - 2026-06-22
22
+
23
+ ### Added
24
+
25
+ - Desktop Electron app now shows a built-in sign-in window when no Spectral
26
+ credentials are found. New users can authenticate with a team API key or
27
+ via browser OAuth, so `spectral serve` can register the machine on first
28
+ launch instead of failing with "Not logged in".
29
+
30
+ ### Fixed
31
+
32
+ - Fixed the packaged desktop login/splash pages failing to load because
33
+ `getLoginPath` and `getSplashPath` resolved against `Resources/assets`
34
+ instead of the assets bundled inside `app.asar`. Both pages now use a
35
+ path relative to `__dirname`, so the login window appears in the packaged
36
+ app on macOS, Windows, and Linux.
37
+ - Fixed a race where successfully closing the login window after API-key or
38
+ OAuth sign-in could trigger the "Login window was closed before completing
39
+ sign-in" error. The closed-event handler is now detached before the window
40
+ is closed on a successful login.
41
+
8
42
  ## [0.9.37] - 2026-06-22
9
43
 
10
44
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexol/spectral",
3
- "version": "0.9.38",
3
+ "version": "0.9.39",
4
4
  "description": "AI coding agent for Aexol with relay-based browser access.",
5
5
  "type": "module",
6
6
  "private": false,