Skip to content

Commit 4d1add8

Browse files
committed
Update version info
1 parent ce59eb9 commit 4d1add8

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.8.2",
2+
"version": "0.8.3",
33
"compounds": [
44
{
55
"name": "Debug Run",

docs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tuui-docs",
33
"private": true,
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"scripts": {
66
"dev": "vitepress dev src",
77
"build": "vitepress build src",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tuui",
33
"appId": "com.tuui.app",
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"description": "Tool Unitary User Interface",
66
"homepage": "https://www.tuui.com",
77
"author": "AIQL <contact@aiql.com>",

src/main/MainRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { loadConfig } from './mcp/init'
1313
const options = {
1414
width: Constants.IS_DEV_ENV ? 1500 : 1280,
1515
height: 1080,
16-
minWidth: 960,
16+
minWidth: 500,
1717
minHeight: 480,
1818
tray: {
1919
// all optional values from DEFAULT_TRAY_OPTIONS can de defined here

src/renderer/components/layouts/HeaderLayout.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ watchEffect(() => {
4141
@click.stop="layoutStore.sidebar = !layoutStore.sidebar"
4242
>
4343
</v-app-bar-nav-icon>
44-
<v-app-bar-title class="text-button">{{ $t(titleKey.toString()) }}</v-app-bar-title>
44+
<v-app-bar-title class="text-button title">{{ $t(titleKey.toString()) }}</v-app-bar-title>
4545

4646
<v-btn-toggle
47-
class="no-drag"
47+
class="no-drag ml-2"
4848
v-model="layoutStore.screen"
4949
data-testid="main-menu"
5050
mandatory
@@ -84,4 +84,14 @@ watchEffect(() => {
8484
.no-drag {
8585
app-region: no-drag;
8686
}
87+
88+
.title {
89+
display: block;
90+
}
91+
92+
@media (max-width: 600px) {
93+
.title {
94+
display: none;
95+
}
96+
}
8797
</style>

0 commit comments

Comments
 (0)