Skip to content

Commit

Permalink
chore: version bump 0.8.29 (#1295)
Browse files Browse the repository at this point in the history
Description
---
Onwards and upwards
  • Loading branch information
brianp authored Dec 18, 2024
2 parents e2e3327 + 27e377e commit bfc14f2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 14 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tari-universe",
"private": true,
"version": "0.8.28",
"version": "0.8.29",
"type": "module",
"scripts": {
"dev": "vite dev --mode development",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tari Universe"
edition = "2021"
name = "tari-universe"
repository = "https://github.com/tari-project/universe"
version = "0.8.28"
version = "0.8.29"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.8.28",
"version": "0.8.29",
"productName": "Tari Universe (Alpha)",
"mainBinaryName": "Tari Universe (Alpha)",
"identifier": "com.tari.universe.alpha",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { useState } from 'react';
import P2pMarkup from './P2pMarkup.tsx';
import P2PoolStats from './P2PoolStats.tsx';
import { useAppConfigStore } from '@app/store/useAppConfigStore';
import { useUIStore } from '@app/store/useUIStore.ts';

export const PoolMiningSettings = () => {
const [disabledStats, setDisabledStats] = useState(false);
const isP2poolEnabled = useAppConfigStore((s) => s.p2pool_enabled);
const disabledStats = useUIStore((s) => s.disabledP2poolStats);
const setDisabledStats = useUIStore((s) => s.setDisabledP2poolStats);

return (
<>
<P2pMarkup setDisabledStats={setDisabledStats} />
Expand Down
4 changes: 0 additions & 4 deletions src/store/useUIStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ interface State {
dialogToShow?: DialogType | null;
isWebglNotSupported: boolean;
adminShow?: 'setup' | 'main' | 'shutdown' | 'orphanChainWarning' | null;
disabledP2poolStats?: boolean;
}
interface Actions {
setTheme: (theme: Theme) => void;
Expand All @@ -32,7 +31,6 @@ interface Actions {
setLatestVersion: (latestVersion: string) => void;
setIsWebglNotSupported: (isWebglNotSupported: boolean) => void;
setAdminShow: (adminShow: State['adminShow']) => void;
setDisabledP2poolStats: (disabledP2poolStats: boolean) => void;
}

type UIStoreState = State & Actions;
Expand All @@ -46,7 +44,6 @@ const initialState: State = {
dialogToShow: null,
showExperimental: false,
showExternalDependenciesDialog: false,
disabledP2poolStats: false,
};

export const useUIStore = create<UIStoreState>()((set) => ({
Expand All @@ -67,5 +64,4 @@ export const useUIStore = create<UIStoreState>()((set) => ({
set({ isWebglNotSupported });
},
setAdminShow: (adminShow) => set({ adminShow }),
setDisabledP2poolStats: (disabledP2poolStats) => set({ disabledP2poolStats }),
}));

0 comments on commit bfc14f2

Please sign in to comment.