Skip to content

Commit 48dcf21

Browse files
authored
v0.17.1 (#322)
Open Source
2 parents 90509bf + 085421a commit 48dcf21

File tree

11 files changed

+8
-80
lines changed

11 files changed

+8
-80
lines changed

backend/ttnn_visualizer/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DefaultConfig(object):
2424
STATIC_ASSETS_DIR = Path(APPLICATION_DIR).joinpath("ttnn_visualizer", "static")
2525
SEND_FILE_MAX_AGE_DEFAULT = 0
2626

27-
LAUNCH_BROWSER_ON_START = str_to_bool(os.getenv("LAUNCH_BROWSER_ON_START", "false"))
27+
LAUNCH_BROWSER_ON_START = str_to_bool(os.getenv("LAUNCH_BROWSER_ON_START", "true"))
2828

2929
# File Name Configs
3030
TEST_CONFIG_FILE = "config.json"

favicon.ico

0 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ttnn-visualzer",
33
"private": true,
4-
"version": "0.17.0",
4+
"version": "0.17.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
4.75 KB
Loading
57.9 KB
Loading

public/favicon/favicon-32x32.png

-10 Bytes
Loading

public/favicon/favicon.svg

Lines changed: 3 additions & 7 deletions
Loading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "ttnn_visualizer"
33
authors = []
4-
version = "0.17.0"
4+
version = "0.17.1"
55
description = "TT Visualizer"
66
readme = "README.md"
77
requires-python = ">=3.12"

src/components/Layout.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
//
33
// SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
44

5-
import { Link, Outlet } from 'react-router-dom';
5+
import { Outlet } from 'react-router-dom';
66
import { Classes, Tooltip } from '@blueprintjs/core';
77
import { Helmet } from 'react-helmet-async';
88
import { useAtomValue } from 'jotai';
99
import { ToastContainer, cssTransition } from 'react-toastify';
1010
import 'react-toastify/dist/ReactToastify.min.css';
1111
import classNames from 'classnames';
12-
import TenstorrentLogo from './TenstorrentLogo';
13-
import ROUTES from '../definitions/routes';
1412
import { activePerformanceTraceAtom, activeReportAtom } from '../store/app';
1513
import MainNavigation from './MainNavigation';
1614

@@ -40,13 +38,7 @@ function Layout() {
4038

4139
<header className='app-header'>
4240
<nav className='nav-container'>
43-
<Link
44-
className='tt-logo'
45-
to={ROUTES.HOME}
46-
>
47-
<TenstorrentLogo />
48-
<p className='version'>v{appVersion}</p>
49-
</Link>
41+
<p className='version'>v{appVersion}</p>
5042
<MainNavigation />
5143
</nav>
5244

src/components/TenstorrentLogo.tsx

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/scss/_layout.scss

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,6 @@
1111
display: flex;
1212
align-items: center;
1313
justify-content: space-between;
14-
15-
.tt-logo {
16-
// TODO: Sort logo viewbox so we don't have to do this
17-
margin: -30px;
18-
display: flex;
19-
align-items: center;
20-
text-decoration: none;
21-
22-
p {
23-
margin: 0;
24-
color: $tt-white;
25-
text-decoration: none;
26-
margin-left: -15px;
27-
margin-top: 10px;
28-
}
29-
}
30-
31-
.title {
32-
font-size: 12px;
33-
34-
&.is-lengthy {
35-
text-overflow: ellipsis;
36-
overflow: hidden;
37-
white-space: nowrap;
38-
max-width: 250px;
39-
}
40-
}
4114
}
4215

4316
.current-data {

0 commit comments

Comments
 (0)