Skip to content

Commit 46414da

Browse files
committed
other: Optimize download file name
1 parent 0a0df95 commit 46414da

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VITE_APP_VERSION=0.7.0
2-
VITE_APP_BUILD_NUMBER=8
3-
VITE_APP_RELEASE_DATE=2025-10-04
1+
VITE_APP_VERSION=0.7.1
2+
VITE_APP_BUILD_NUMBER=9
3+
VITE_APP_RELEASE_DATE=2025-10-11

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
**一个简约强大的 SQL 桌面客户端,支持多种文件格式查询**
88

99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10-
[![Version](https://img.shields.io/badge/version-0.7.0-blue.svg)](https://github.com/shencangsheng/easydb_app)
10+
[![Version](https://img.shields.io/badge/version-0.7.1-blue.svg)](https://github.com/shencangsheng/easydb_app)
1111
[![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Windows-lightgrey.svg)](https://github.com/shencangsheng/easydb_app)
1212

1313
[English](README_EN.md) | [中文](README.md)

README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
**A simple yet powerful SQL desktop client supporting multiple file formats**
88

99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10-
[![Version](https://img.shields.io/badge/version-0.7.0-blue.svg)](https://github.com/shencangsheng/easydb_app)
10+
[![Version](https://img.shields.io/badge/version-0.7.1-blue.svg)](https://github.com/shencangsheng/easydb_app)
1111
[![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Windows-lightgrey.svg)](https://github.com/shencangsheng/easydb_app)
1212

1313
[English](README_EN.md) | [中文](README.md)

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": "easydb-frontend",
33
"private": true,
4-
"version": "0.7.0",
4+
"version": "0.7.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easydb_app"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "EasyDB APP"
55
authors = ["shencangsheng"]
66
license = "MIT"

src-tauri/src/commands/query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ pub async fn writer(
149149

150150
downloads_dir.push(format!(
151151
"easydb_{}.{}",
152-
Utc::now().timestamp_millis(),
152+
Utc::now().format("%Y%m%d%H%M%S").to_string(),
153153
file_extension
154154
));
155155

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "EasyDB",
4-
"version": "0.7.0",
4+
"version": "0.7.1",
55
"identifier": "com.easydb.app",
66
"build": {
77
"frontendDist": "../dist",

version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "0.7.0",
3-
"buildNumber": "8",
4-
"releaseDate": "2025-10-04",
2+
"version": "0.7.1",
3+
"buildNumber": "9",
4+
"releaseDate": "2025-10-11",
55
"description": "EasyDB - 数据库管理工具",
66
"author": "shencangsheng",
77
"repository": "https://github.com/shencangsheng/easydb_app",

0 commit comments

Comments
 (0)