5 Commits

Author SHA1 Message Date
release-bot
419249aca3 chore(release): v0.0.2
Some checks failed
🚀 Release / release (push) Failing after 4m24s
2026-02-03 23:40:36 +00:00
c69cb94ac7 fix(ci): actually deploy on tags
All checks were successful
🚀 Release / release (push) Successful in 4m12s
2026-02-04 00:34:39 +01:00
release-bot
4b652d885f chore(release): v0.0.2 2026-02-03 22:05:51 +00:00
381f784775 fix(app): correctly handle false value in settings
All checks were successful
🚀 Release / release (push) Successful in 4m30s
This caused a bug where random seed could not be false.
2026-02-03 22:46:43 +01:00
91866b4e9a feat/e2e-testing (#31)
All checks were successful
🚀 Release / release (push) Successful in 4m7s
Reviewed-on: #31
Co-authored-by: Max Richter <max@max-richter.dev>
Co-committed-by: Max Richter <max@max-richter.dev>
2026-02-03 22:29:43 +01:00
10 changed files with 46 additions and 27 deletions

View File

@@ -61,3 +61,24 @@ jobs:
body_path: CHANGELOG.md
draft: false
prerelease: false
- name: 🔑 Configure rclone
if: github.ref_type == 'tag'
run: |
echo "$SSH_PRIVATE_KEY" > /tmp/id_rsa
chmod 600 /tmp/id_rsa
mkdir -p ~/.config/rclone
echo -e "[sftp-remote]\ntype = sftp\nhost = ${SSH_HOST}\nuser = ${SSH_USER}\nport = ${SSH_PORT}\nkey_file = /tmp/id_rsa" > ~/.config/rclone/rclone.conf
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SSH_HOST: ${{ vars.SSH_HOST }}
SSH_PORT: ${{ vars.SSH_PORT }}
SSH_USER: ${{ vars.SSH_USER }}
- name: 🚀 Deploy Changed Files via rclone
if: github.ref_type == 'tag'
run: |
echo "Uploading the rest"
rclone sync --update -v --progress --exclude _astro/** --stats 2s --stats-one-line ./app/build/ sftp-remote:${REMOTE_DIR} --transfers 4
env:
REMOTE_DIR: ${{ vars.REMOTE_DIR }}

View File

@@ -1,3 +1,17 @@
## v0.0.2 (2026-02-03)
fix(ci): actually deploy on tags
---
## v0.0.2 (2026-02-03)
fix(app): correctly handle false value in settings
This caused a bug where random seed could not be false.
---
## v0.0.1 (2026-02-03)
chore: format

View File

@@ -1,7 +1,7 @@
{
"name": "@nodarium/app",
"private": true,
"version": "0.0.1",
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite dev",

View File

@@ -98,7 +98,7 @@
&& typeof internalValue === 'number'
) {
value[key] = node?.options?.[internalValue];
} else if (internalValue) {
} else if (internalValue !== undefined) {
value[key] = internalValue;
}
});
@@ -124,7 +124,6 @@
{#if key && isNodeInput(type?.[key])}
{@const inputType = type[key]}
<!-- Leaf input -->
<div class="input input-{inputType.type}" class:first-level={depth === 1}>
{#if inputType.type === 'button'}
<button onclick={handleClick}>
@@ -138,7 +137,6 @@
{/if}
</div>
{:else if depth === 0}
<!-- Root: iterate over top-level keys -->
{#each Object.keys(type ?? {}).filter((k) => k !== 'title') as childKey (childKey)}
<NestedSettings
id={`${id}.${childKey}`}
@@ -150,7 +148,6 @@
{/each}
<hr />
{:else if key && type?.[key]}
<!-- Group -->
{#if depth > 0}
<hr />
{/if}

View File

@@ -1,5 +1,5 @@
{
"version": "0.0.1",
"version": "0.0.2",
"scripts": {
"postinstall": "pnpm run -r --filter 'ui' build",
"build": "pnpm build:nodes && pnpm build:app",

View File

@@ -1,6 +1,6 @@
{
"name": "@nodarium/types",
"version": "0.0.1",
"version": "0.0.2",
"description": "",
"main": "src/index.ts",
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "@nodarium/ui",
"version": "0.0.1",
"version": "0.0.2",
"scripts": {
"dev": "vite",
"build": "vite build && npm run package",

View File

@@ -1,6 +1,8 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const { BASE_URL = '' } = process.env;
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
@@ -8,6 +10,9 @@ const config = {
preprocess: vitePreprocess(),
kit: {
paths: {
base: BASE_URL === '/' ? '' : BASE_URL
},
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.

View File

@@ -1,6 +1,6 @@
{
"name": "@nodarium/utils",
"version": "0.0.1",
"version": "0.0.2",
"description": "",
"main": "src/index.ts",
"scripts": {

View File

@@ -21,24 +21,6 @@ test('fastHashArray doesnt product collisions', () => {
expect(hash_a).not.toEqual(hash_b);
});
test('fastHashArray is fast(ish) < 20ms', () => {
const a = new Int32Array(10_000);
const t0 = performance.now();
fastHashArrayBuffer(a);
const t1 = performance.now();
a[0] = 1;
fastHashArrayBuffer(a);
const t2 = performance.now();
expect(t1 - t0).toBeLessThan(20);
expect(t2 - t1).toBeLessThan(20);
});
// test if the fastHashArray function is deterministic
test('fastHashArray is deterministic', () => {
const a = new Int32Array(1000);