@holochain/hc-spin 0.600.0-dev.0 → 0.600.0-rc.0
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/.github/workflows/test.yaml +8 -2
- package/CHANGELOG.md +11 -0
- package/dist/main/index.js +309 -295
- package/docs/DEVSETUP.md +12 -21
- package/electron.vite.config.ts +6 -0
- package/flake.lock +234 -0
- package/flake.nix +31 -0
- package/package.json +7 -6
- package/src/main/index.ts +30 -20
- package/src/main/menu.ts +23 -23
- package/src/main/validateArgs.ts +16 -1
- package/src/main/vite-env.d.ts +3 -0
- package/src/main/windows.ts +6 -5
- package/tsconfig.node.json +3 -2
|
@@ -10,8 +10,14 @@ jobs:
|
|
|
10
10
|
# Checks out a copy of your repository on the ubuntu-latest machine
|
|
11
11
|
- uses: actions/checkout@v3
|
|
12
12
|
|
|
13
|
-
- name: Install dependencies
|
|
14
|
-
run: yarn
|
|
13
|
+
- name: Install dependencies
|
|
14
|
+
run: yarn
|
|
15
|
+
|
|
16
|
+
- name: Lint
|
|
17
|
+
run: yarn lint:check
|
|
18
|
+
|
|
19
|
+
- name: Build
|
|
20
|
+
run: yarn build
|
|
15
21
|
|
|
16
22
|
ci_pass:
|
|
17
23
|
if: ${{ always() }}
|
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
9
9
|
### Changed
|
|
10
10
|
### Removed
|
|
11
11
|
|
|
12
|
+
## 2025-11-06: v0.600.0-rc.0
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- A new argument `--target-arc-factor` to support overriding the conductor configuration `network.target_arc_factor` in all launched conductors.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fixed development environment setup and developer documentation outlining how to use it.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Check linting in CI workflow
|
|
22
|
+
|
|
12
23
|
## 2025-10-13: v0.600.0-dev.0
|
|
13
24
|
|
|
14
25
|
### Changed
|