Skip to content

Commit

Permalink
发布 v0.8.1 版本
Browse files Browse the repository at this point in the history
准备 v0.8.1 版本
  • Loading branch information
GuoJikun authored Jan 7, 2025
2 parents 8a577a8 + 467ea48 commit 68b796d
Show file tree
Hide file tree
Showing 8 changed files with 233 additions and 132 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/check-ts-type.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Typescript Check

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check-ts-type:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.12.3
- name: Install frontend dependencies
run: pnpm install
- name: Check types
run: pnpm run type-check
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,12 @@ pnpm tauri build
- [x] ods
- [x] csv
- [x] docx
- 代码文件(utf8):
- 文本文件(utf8):
- [x] html
- [x] css
- [x] js
- [x] ts
- [x] tsx
- [x] c
- [x] cpp
- [x] rs
Expand All @@ -81,7 +82,7 @@ pnpm tauri build
- [ ] rar
- [ ] 7z
- 设置
- [ ] 支持格式的选择
- [x] 支持格式的显示
- [ ] 版本显示以及更新
- [ ] 自启动

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quicklook",
"version": "0.8.0",
"version": "0.8.1",
"description": "Windows 平台的文件预览工具",
"private": true,
"type": "module",
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
@@ -1,6 +1,6 @@
[package]
name = "app"
version = "0.8.0"
version = "0.8.1"
description = "Windows 平台的文件预览工具"
authors = ["GuoJikun <[email protected]>"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/helper/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ pub fn get_webview_window(
}

pub fn get_scaled_size(size: f64, scale: f64) -> f64 {
size * scale
size / scale
}
Loading

0 comments on commit 68b796d

Please sign in to comment.