Skip to content

Commit

Permalink
v5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xjh22222228 committed Jan 19, 2021
1 parent c38923c commit 1ebacf1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nav",
"version": "5.0.2",
"version": "5.0.3",
"author": "xiejiahe",
"bugs": {
"url": "https://github.com/xjh22222228/nav/issues"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function addZero(num) {

const now = new Date()
now.setHours(now.getHours() + 8)
const date = `${now.getFullYear()}${addZero(now.getMonth() + 1)}${addZero(now.getDate())}${addZero(now.getHours())}:${addZero(now.getMinutes())}`
const date = `${now.getFullYear()}${addZero(now.getMonth() + 1)}${addZero(now.getDate())}${addZero(now.getHours())}:${addZero(now.getMinutes())}:${addZero(now.getSeconds())}`

const {
description,
Expand Down
2 changes: 1 addition & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const VERIFY_PATH = 'nav.verify.txt'

export const DB_PATH = 'data/db.json'

export const VERSION = '5.0.2'
export const VERSION = '5.0.3'

// keyboard event
const prefix = isMac() ? 'command' : 'ctrl'
Expand Down

0 comments on commit 1ebacf1

Please sign in to comment.