Compare commits
15 commits
Author | SHA1 | Date | |
---|---|---|---|
e9096af0a3 | |||
1b559f08dd | |||
afdafa9dc3 | |||
6eabaf6fa9 | |||
![]() |
aae9848697 | ||
5df7a892c4 | |||
0116cd68cd | |||
50b9267d17 | |||
68207a7d95 | |||
993bb45d0d | |||
e0d539a8a3 | |||
08b6f0e512 | |||
91e60d2f4c | |||
732dd260ea | |||
d33ad7ee21 |
11 changed files with 624 additions and 494 deletions
|
@ -39,6 +39,7 @@ jobs:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
node-version: lts/*
|
node-version: lts/*
|
||||||
cache: yarn
|
cache: yarn
|
||||||
cache-dependency-path: '**/yarn.lock'
|
cache-dependency-path: '**/yarn.lock'
|
||||||
|
@ -49,9 +50,6 @@ jobs:
|
||||||
~/node_modules
|
~/node_modules
|
||||||
~/.cache/ms-playwright
|
~/.cache/ms-playwright
|
||||||
key: ${{ runner.os }}-pio-playwright-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-pio-playwright-${{ hashFiles('**/yarn.lock') }}
|
||||||
- uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: '>=3.10'
|
|
||||||
- name: Get current date
|
- name: Get current date
|
||||||
id: dateAndTime
|
id: dateAndTime
|
||||||
run: echo "dateAndTime=$(date +'%Y-%m-%d-%H:%M')" >> $GITHUB_OUTPUT
|
run: echo "dateAndTime=$(date +'%Y-%m-%d-%H:%M')" >> $GITHUB_OUTPUT
|
||||||
|
@ -120,7 +118,7 @@ jobs:
|
||||||
output/littlefs.bin
|
output/littlefs.bin
|
||||||
- name: Create release
|
- name: Create release
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
uses: https://code.forgejo.org/actions/forgejo-release@v2.5.1
|
uses: https://code.forgejo.org/actions/forgejo-release@v2.5.3
|
||||||
with:
|
with:
|
||||||
url: 'https://git.btclock.dev/'
|
url: 'https://git.btclock.dev/'
|
||||||
repo: '${{ github.repository }}'
|
repo: '${{ github.repository }}'
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 70 KiB |
Binary file not shown.
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 65 KiB |
|
@ -69,6 +69,5 @@
|
||||||
"es5-ext": ">=0.10.64",
|
"es5-ext": ">=0.10.64",
|
||||||
"ws": ">=8.18.0",
|
"ws": ">=8.18.0",
|
||||||
"micromatch": ">=4.0.8"
|
"micromatch": ">=4.0.8"
|
||||||
},
|
}
|
||||||
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +1,17 @@
|
||||||
diff --git a/node_modules/@sveltejs/kit/src/exports/vite/index.js b/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
diff --git a/node_modules/@sveltejs/kit/src/exports/vite/index.js b/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
||||||
index 21bc3d4..eef2db3 100644
|
index ddbe746..1d926a4 100644
|
||||||
--- a/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
--- a/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
||||||
+++ b/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
+++ b/node_modules/@sveltejs/kit/src/exports/vite/index.js
|
||||||
@@ -648,9 +648,9 @@ async function kit({ svelte_config }) {
|
@@ -658,9 +658,9 @@ async function kit({ svelte_config }) {
|
||||||
output: {
|
output: {
|
||||||
format: inline ? 'iife' : 'esm',
|
format: inline ? 'iife' : 'esm',
|
||||||
name: `__sveltekit_${version_hash}.app`,
|
name: `__sveltekit_${version_hash}.app`,
|
||||||
- entryFileNames: ssr ? '[name].js' : `${prefix}/[name].[hash].${ext}`,
|
- entryFileNames: ssr ? '[name].js' : `${prefix}/[name].[hash].${ext}`,
|
||||||
- chunkFileNames: ssr ? 'chunks/[name].js' : `${prefix}/chunks/[name].[hash].${ext}`,
|
- chunkFileNames: ssr ? 'chunks/[name].js' : `${prefix}/chunks/[hash].${ext}`,
|
||||||
- assetFileNames: `${prefix}/assets/[name].[hash][extname]`,
|
- assetFileNames: `${prefix}/assets/[name].[hash][extname]`,
|
||||||
+ entryFileNames: ssr ? '[name].js' : `${prefix}/[hash].${ext}`,
|
+ entryFileNames: ssr ? '[name].js' : `${prefix}/[hash].${ext}`,
|
||||||
+ chunkFileNames: ssr ? 'chunks/[name].js' : `${prefix}/chunks/[hash].${ext}`,
|
+ chunkFileNames: ssr ? 'chunks/[name].js' : `${prefix}/c[hash].${ext}`,
|
||||||
+ assetFileNames: `${prefix}/assets/[hash][extname]`,
|
+ assetFileNames: `${prefix}/a[hash][extname]`,
|
||||||
hoistTransitiveImports: false,
|
hoistTransitiveImports: false,
|
||||||
sourcemapIgnoreList,
|
sourcemapIgnoreList,
|
||||||
manualChunks: split ? undefined : () => 'bundle',
|
manualChunks: split ? undefined : () => 'bundle',
|
||||||
@@ -665,9 +665,9 @@ async function kit({ svelte_config }) {
|
|
||||||
worker: {
|
|
||||||
rollupOptions: {
|
|
||||||
output: {
|
|
||||||
- entryFileNames: `${prefix}/workers/[name]-[hash].js`,
|
|
||||||
- chunkFileNames: `${prefix}/workers/chunks/[name]-[hash].js`,
|
|
||||||
- assetFileNames: `${prefix}/workers/assets/[name]-[hash][extname]`,
|
|
||||||
+ entryFileNames: `${prefix}/workers/[hash].js`,
|
|
||||||
+ chunkFileNames: `${prefix}/workers/chunks/[hash].js`,
|
|
||||||
+ assetFileNames: `${prefix}/workers/assets/[hash][extname]`,
|
|
||||||
hoistTransitiveImports: false
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -115,7 +115,7 @@
|
||||||
max={4095}
|
max={4095}
|
||||||
step={1}
|
step={1}
|
||||||
size={$uiSettings.inputSize}
|
size={$uiSettings.inputSize}
|
||||||
on:change={onFlBrightnessChange}
|
onChange={onFlBrightnessChange}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SettingsInput
|
<SettingsInput
|
||||||
|
@ -190,12 +190,14 @@
|
||||||
size={$uiSettings.inputSize}
|
size={$uiSettings.inputSize}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SettingsSwitch
|
{#if $settings.hasLightLevel}
|
||||||
id="flOffWhenDark"
|
<SettingsSwitch
|
||||||
bind:checked={$settings.flOffWhenDark}
|
id="flOffWhenDark"
|
||||||
label={$_('section.settings.flOffWhenDark')}
|
bind:checked={$settings.flOffWhenDark}
|
||||||
size={$uiSettings.inputSize}
|
label={$_('section.settings.flOffWhenDark')}
|
||||||
/>
|
size={$uiSettings.inputSize}
|
||||||
|
/>
|
||||||
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
</Row>
|
</Row>
|
||||||
</ToggleHeader>
|
</ToggleHeader>
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
export let miningPoolMap: Map<string, string>;
|
export let miningPoolMap: Map<string, string>;
|
||||||
|
|
||||||
let validBitaxe = false;
|
let validBitaxe = false;
|
||||||
|
let validLocalPool = false;
|
||||||
const testBitaxe = async () => {
|
const testBitaxe = async () => {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(`http://${$settings.bitaxeHostname}/api/system/info`);
|
const response = await fetch(`http://${$settings.bitaxeHostname}/api/system/info`);
|
||||||
|
@ -61,6 +62,49 @@
|
||||||
miningPoolMap.get(pool) || pool,
|
miningPoolMap.get(pool) || pool,
|
||||||
pool
|
pool
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const testLocalPool = async () => {
|
||||||
|
try {
|
||||||
|
const controller = new AbortController();
|
||||||
|
const timeoutId = setTimeout(() => controller.abort(), 1000);
|
||||||
|
|
||||||
|
const response = await fetch(
|
||||||
|
`http://${$settings.localPoolEndpoint}/api/client/${$settings.miningPoolUser}`,
|
||||||
|
{ signal: controller.signal }
|
||||||
|
);
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
dispatch('showToast', {
|
||||||
|
color: 'danger',
|
||||||
|
text: `Failed to connect to local pool! status: ${response.status}`
|
||||||
|
});
|
||||||
|
validLocalPool = false;
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
|
||||||
|
const poolInfo = await response.json();
|
||||||
|
dispatch('showToast', {
|
||||||
|
color: 'success',
|
||||||
|
text: `Can connect to local public pool, ${poolInfo.workersCount} workers`
|
||||||
|
});
|
||||||
|
validLocalPool = true;
|
||||||
|
} catch (error) {
|
||||||
|
if (error.name === 'AbortError') {
|
||||||
|
dispatch('showToast', {
|
||||||
|
color: 'danger',
|
||||||
|
text: `Connection to local pool timed out after 1 second`
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
dispatch('showToast', {
|
||||||
|
color: 'danger',
|
||||||
|
text: `Failed to connect to local pool, check the endpoint and make sure you are connected to the same network.`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
console.error('Failed to fetch local pool info:', error);
|
||||||
|
validLocalPool = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Row>
|
<Row>
|
||||||
|
@ -178,6 +222,21 @@
|
||||||
size={$uiSettings.inputSize}
|
size={$uiSettings.inputSize}
|
||||||
selectClass={$uiSettings.selectClass}
|
selectClass={$uiSettings.selectClass}
|
||||||
/>
|
/>
|
||||||
|
{#if $settings.miningPoolName === 'local_public_pool'}
|
||||||
|
<SettingsInput
|
||||||
|
id="localPoolEndpoint"
|
||||||
|
label={$_('section.settings.localPoolEndpoint', { default: 'Local Pool Endpoint' })}
|
||||||
|
bind:value={$settings.localPoolEndpoint}
|
||||||
|
placeholder="umbrel.local:2019"
|
||||||
|
required={true}
|
||||||
|
valid={validLocalPool}
|
||||||
|
size={$uiSettings.inputSize}
|
||||||
|
>
|
||||||
|
<Button type="button" color="success" on:click={testLocalPool}>
|
||||||
|
{$_('test', { default: 'Test' })}
|
||||||
|
</Button>
|
||||||
|
</SettingsInput>
|
||||||
|
{/if}
|
||||||
<SettingsInput
|
<SettingsInput
|
||||||
id="miningPoolUser"
|
id="miningPoolUser"
|
||||||
label={$_('section.settings.miningPoolUser')}
|
label={$_('section.settings.miningPoolUser')}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
import { Row, Col } from '@sveltestrap/sveltestrap';
|
import { Row, Col } from '@sveltestrap/sveltestrap';
|
||||||
import ToggleHeader from '../ToggleHeader.svelte';
|
import ToggleHeader from '../ToggleHeader.svelte';
|
||||||
import { uiSettings } from '$lib/uiSettings';
|
import { uiSettings } from '$lib/uiSettings';
|
||||||
|
import { DataSourceType } from '$lib/types/dataSource';
|
||||||
|
|
||||||
export let settings;
|
export let settings;
|
||||||
export let isOpen = false;
|
export let isOpen = false;
|
||||||
|
@ -99,7 +100,7 @@
|
||||||
{/each}
|
{/each}
|
||||||
{/if}
|
{/if}
|
||||||
</Row>
|
</Row>
|
||||||
{#if $settings.actCurrencies && $settings.useNostr !== true}
|
{#if $settings.actCurrencies && $settings.dataSource == DataSourceType.BTCLOCK_SOURCE}
|
||||||
<Row>
|
<Row>
|
||||||
<h5>{$_('section.settings.currencies')}</h5>
|
<h5>{$_('section.settings.currencies')}</h5>
|
||||||
<small>{$_('restartRequired')}</small>
|
<small>{$_('restartRequired')}</small>
|
||||||
|
|
|
@ -30,7 +30,8 @@
|
||||||
['public_pool', 'public-pool.io'],
|
['public_pool', 'public-pool.io'],
|
||||||
['gobrrr_pool', 'Go Brrr pool'],
|
['gobrrr_pool', 'Go Brrr pool'],
|
||||||
['ckpool', 'CKPool'],
|
['ckpool', 'CKPool'],
|
||||||
['eu_ckpool', 'EU CKPool']
|
['eu_ckpool', 'EU CKPool'],
|
||||||
|
['local_public_pool', 'Public Pool (local)']
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
|
|
|
@ -1,3 +1,38 @@
|
||||||
|
interface Page {
|
||||||
|
route: (url: string, handler: (route: Route) => Promise<void>) => Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Route {
|
||||||
|
fulfill: (response: {
|
||||||
|
json?: typeof statusJson | typeof settingsJson | typeof latestReleaseFake;
|
||||||
|
status?: number;
|
||||||
|
headers?: Record<string, string>;
|
||||||
|
body?: ReadableStream;
|
||||||
|
}) => Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const fetchLatestBlockHeight = async () => {
|
||||||
|
const response = await fetch('https://ws.btclock.dev/api/lastblock');
|
||||||
|
const blockHeight = await response.text();
|
||||||
|
return ['BLOCK/HEIGHT', ...blockHeight.trim().split('')];
|
||||||
|
};
|
||||||
|
|
||||||
|
export const fetchLatestRelease = async () => {
|
||||||
|
try {
|
||||||
|
const response = await fetch(
|
||||||
|
'https://git.btclock.dev/api/v1/repos/btclock/btclock_v3/releases/latest'
|
||||||
|
);
|
||||||
|
if (!response.ok) throw new Error('Failed to fetch latest release');
|
||||||
|
const data = await response.json();
|
||||||
|
settingsJson.gitTag = data.tag_name;
|
||||||
|
return data;
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('Failed to fetch latest release, using fallback:', error);
|
||||||
|
settingsJson.gitTag = latestReleaseFake.tag_name;
|
||||||
|
return latestReleaseFake;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export const statusJson = {
|
export const statusJson = {
|
||||||
currentScreen: 20,
|
currentScreen: 20,
|
||||||
numScreens: 7,
|
numScreens: 7,
|
||||||
|
@ -13,7 +48,7 @@ export const statusJson = {
|
||||||
nostr: true
|
nostr: true
|
||||||
},
|
},
|
||||||
rssi: -66,
|
rssi: -66,
|
||||||
data: ['BLOCK/HEIGHT', '8', '7', '6', '5', '4', '3'],
|
data: ['BLOCK/HEIGHT', '0', '0', '0', '0', '0', '0'],
|
||||||
currency: 'USD',
|
currency: 'USD',
|
||||||
leds: [
|
leds: [
|
||||||
{ red: 0, green: 0, blue: 0, hex: '#000000' },
|
{ red: 0, green: 0, blue: 0, hex: '#000000' },
|
||||||
|
@ -55,7 +90,7 @@ export const settingsJson = {
|
||||||
ip: '192.168.20.231',
|
ip: '192.168.20.231',
|
||||||
txPower: 78,
|
txPower: 78,
|
||||||
gitRev: '25d8b92bcbc8938417c140355ea3ba99ff9eb4b7',
|
gitRev: '25d8b92bcbc8938417c140355ea3ba99ff9eb4b7',
|
||||||
gitTag: '3.2.23',
|
gitTag: '3.2.27',
|
||||||
bitaxeEnabled: false,
|
bitaxeEnabled: false,
|
||||||
bitaxeHostname: 'bitaxe1',
|
bitaxeHostname: 'bitaxe1',
|
||||||
miningPoolStats: false,
|
miningPoolStats: false,
|
||||||
|
@ -153,7 +188,11 @@ export const latestReleaseFake = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const initMock = async ({ page }) => {
|
export const initMock = async ({ page }: { page: Page }) => {
|
||||||
|
// Update status with latest block height
|
||||||
|
statusJson.data = await fetchLatestBlockHeight();
|
||||||
|
const latestRelease = await fetchLatestRelease();
|
||||||
|
|
||||||
await page.route('*/**/api/status', async (route) => {
|
await page.route('*/**/api/status', async (route) => {
|
||||||
await route.fulfill({ json: statusJson });
|
await route.fulfill({ json: statusJson });
|
||||||
});
|
});
|
||||||
|
@ -213,6 +252,6 @@ export const initMock = async ({ page }) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
await page.route('**/api/v1/repos/btclock/btclock_v3/releases/latest', async (route) => {
|
await page.route('**/api/v1/repos/btclock/btclock_v3/releases/latest', async (route) => {
|
||||||
await route.fulfill({ json: latestReleaseFake });
|
await route.fulfill({ json: latestRelease });
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue