Skip to content

Commit

Permalink
v0.17.1 (#322)
Browse files Browse the repository at this point in the history
Open Source
  • Loading branch information
aidemsined authored Jan 17, 2025
2 parents 90509bf + 085421a commit 48dcf21
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 80 deletions.
2 changes: 1 addition & 1 deletion backend/ttnn_visualizer/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DefaultConfig(object):
STATIC_ASSETS_DIR = Path(APPLICATION_DIR).joinpath("ttnn_visualizer", "static")
SEND_FILE_MAX_AGE_DEFAULT = 0

LAUNCH_BROWSER_ON_START = str_to_bool(os.getenv("LAUNCH_BROWSER_ON_START", "false"))
LAUNCH_BROWSER_ON_START = str_to_bool(os.getenv("LAUNCH_BROWSER_ON_START", "true"))

# File Name Configs
TEST_CONFIG_FILE = "config.json"
Expand Down
Binary file modified favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ttnn-visualzer",
"private": true,
"version": "0.17.0",
"version": "0.17.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Binary file modified public/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 3 additions & 7 deletions public/favicon/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "ttnn_visualizer"
authors = []
version = "0.17.0"
version = "0.17.1"
description = "TT Visualizer"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
12 changes: 2 additions & 10 deletions src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
//
// SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

import { Link, Outlet } from 'react-router-dom';
import { Outlet } from 'react-router-dom';
import { Classes, Tooltip } from '@blueprintjs/core';
import { Helmet } from 'react-helmet-async';
import { useAtomValue } from 'jotai';
import { ToastContainer, cssTransition } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.min.css';
import classNames from 'classnames';
import TenstorrentLogo from './TenstorrentLogo';
import ROUTES from '../definitions/routes';
import { activePerformanceTraceAtom, activeReportAtom } from '../store/app';
import MainNavigation from './MainNavigation';

Expand Down Expand Up @@ -40,13 +38,7 @@ function Layout() {

<header className='app-header'>
<nav className='nav-container'>
<Link
className='tt-logo'
to={ROUTES.HOME}
>
<TenstorrentLogo />
<p className='version'>v{appVersion}</p>
</Link>
<p className='version'>v{appVersion}</p>
<MainNavigation />
</nav>

Expand Down
33 changes: 0 additions & 33 deletions src/components/TenstorrentLogo.tsx

This file was deleted.

27 changes: 0 additions & 27 deletions src/scss/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,6 @@
display: flex;
align-items: center;
justify-content: space-between;

.tt-logo {
// TODO: Sort logo viewbox so we don't have to do this
margin: -30px;
display: flex;
align-items: center;
text-decoration: none;

p {
margin: 0;
color: $tt-white;
text-decoration: none;
margin-left: -15px;
margin-top: 10px;
}
}

.title {
font-size: 12px;

&.is-lengthy {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 250px;
}
}
}

.current-data {
Expand Down

0 comments on commit 48dcf21

Please sign in to comment.