Skip to content

Commit

Permalink
chore: version bump 0.8.7 (#1197)
Browse files Browse the repository at this point in the history
Description
---
quick ui fix

---------

Co-authored-by: shan <[email protected]>
  • Loading branch information
brianp and shanimal08 authored Dec 5, 2024
1 parent cbe2572 commit 0f3c322
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 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.6",
"version": "0.8.7",
"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.6"
version = "0.8.7"

# 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
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Tari Universe (Alpha)",
"version": "0.8.6"
"version": "0.8.7"
},
"tauri": {
"systemTray": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function P2PConnectionData() {
const [copiedId, setCopiedId] = useState<string>();
const { copyToClipboard } = useCopyToClipboard();

const connectionInfo = useP2poolStatsStore((s) => s.connection_info);
const connectionInfo = useP2poolStatsStore((s) => s?.connection_info);

useEffect(() => {
if (copiedId) {
Expand Down
4 changes: 2 additions & 2 deletions src/containers/floating/Settings/sections/p2p/P2PoolStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export type ConnectedPeerInfoExtended = ConnectedPeerInfo & {

const P2PoolStats = () => {
const { t } = useTranslation('p2p', { useSuspense: false });
const connectedSince = useP2poolStatsStore((s) => s.connected_since);
const connectionInfo = useP2poolStatsStore((s) => s.connection_info);
const connectedSince = useP2poolStatsStore((s) => s?.connected_since);
const connectionInfo = useP2poolStatsStore((s) => s?.connection_info);
const sha3Stats = useP2poolStatsStore((s) => s?.sha3x_stats);
const randomXStats = useP2poolStatsStore((s) => s?.randomx_stats);
const peers = useP2poolStatsStore((s) => s?.peers);
Expand Down
2 changes: 1 addition & 1 deletion src/store/useP2poolStatsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { invoke } from '@tauri-apps/api';
import { create } from './create';
import { P2poolConnections, P2poolStats, P2poolStatsResult } from '../types/app-status.ts';

type State = Partial<P2poolStatsResult & P2poolConnections>;
type State = Partial<P2poolStatsResult> & Partial<P2poolConnections>;

interface Actions {
randomx_stats?: P2poolStats;
Expand Down

0 comments on commit 0f3c322

Please sign in to comment.