Skip to content

Commit 196d160

Browse files
committed
修改相关打包程序和界面提示
1 parent a5b8e7e commit 196d160

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

build/release/getKeyInput.exe

998 KB
Binary file not shown.

build/showKeyBoard(node).nsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
; 安装程序初始定义常量
55
!define PRODUCT_NAME $(ToolLang)
6-
!define PRODUCT_VERSION "v1.57"
6+
!define PRODUCT_VERSION "v1.58"
77
!define /date DATESTR "%y%m%d"
88
!define ExeName "showKeyBoard.exe"
99
!define PRODUCT_PUBLISHER "Austin.Young"
@@ -125,6 +125,7 @@ Section $(mainSect) mainSect
125125
SetOutPath "$INSTDIR"
126126
SetOverwrite on
127127
File "release\${ExeName}"
128+
File "release\getKeyInput.exe"
128129
File "release\fixStat修复统计数据.bat"
129130
; 配置文件如果存在不能覆盖
130131
SetOverwrite off
@@ -210,6 +211,7 @@ Section Uninstall
210211
Delete "$INSTDIR\Website.url"
211212
Delete "$INSTDIR\uninst.exe"
212213
Delete "$INSTDIR\${ExeName}"
214+
Delete "$INSTDIR\getKeyInput.exe"
213215
Delete "$INSTDIR\fixStat修复统计数据.bat"
214216
Delete "$SMPROGRAMS\$(KeyBoardPath)\Uninstall.lnk"
215217
Delete "$SMPROGRAMS\$(KeyBoardPath)\Website.lnk"

build/showKeyBoard.nsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
; 安装程序初始定义常量
55
!define PRODUCT_NAME $(ToolLang)
6-
!define PRODUCT_VERSION "v1.57"
6+
!define PRODUCT_VERSION "v1.58"
77
!define /date DATESTR "%y%m%d"
88
!define ExeName "showKeyBoard.exe"
99
!define PRODUCT_PUBLISHER "Austin.Young"
@@ -125,6 +125,7 @@ Section $(mainSect) mainSect
125125
SetOutPath "$INSTDIR"
126126
SetOverwrite on
127127
File "release\${ExeName}"
128+
File "release\getKeyInput.exe"
128129
File "release\fixStat修复统计数据.bat"
129130

130131
; 配置文件如果存在不能覆盖
@@ -211,6 +212,7 @@ Section Uninstall
211212
Delete "$INSTDIR\Website.url"
212213
Delete "$INSTDIR\uninst.exe"
213214
Delete "$INSTDIR\${ExeName}"
215+
Delete "$INSTDIR\getKeyInput.exe"
214216
Delete "$INSTDIR\fixStat修复统计数据.bat"
215217
Delete "$SMPROGRAMS\$(KeyBoardPath)\Uninstall.lnk"
216218
Delete "$SMPROGRAMS\$(KeyBoardPath)\Website.lnk"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.57",
2+
"version": "1.58",
33
"name": "node",
44
"scripts": {
55
"build": "node ./build/buildMain.js"

showKeyBoard.ahk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
;编译信息
22
;@Ahk2Exe-SetName ShowKeyBoard
33
;@Ahk2Exe-SetDescription Show and Analyse Mouse/KeyBoard
4-
;@Ahk2Exe-SetProductVersion 1.57.0.0
5-
;@Ahk2Exe-SetFileVersion 1.57.0.0
4+
;@Ahk2Exe-SetProductVersion 1.58.0.0
5+
;@Ahk2Exe-SetFileVersion 1.58.0.0
66
;@Ahk2Exe-SetCopyright Austing.Young (2023 - )
77
;@Ahk2Exe-SetMainIcon res\keyboard.ico
88
;@Ahk2Exe-ExeName build/release/ShowKeyBoard.exe
99
#Requires AutoHotkey v2
1010
#SingleInstance Ignore
11-
global APPName := "ShowKeyBoard", ver:= "1.57"
11+
global APPName := "ShowKeyBoard", ver:= "1.58"
1212
#Include "lib/JSON.ahk"
1313
#include common.ahk
1414
#include langVars.ahk

ui-helper/src/content.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default {
2626
intro4:'控制键主要为 Ctrl,Alt,Shift,Win',
2727
intro5:'是否显示和记录鼠标事件',
2828
intro6:'是否记录鼠标移动距离',
29-
intro7:'是否显示键盘和鼠标按键,可能略微增加响应延时 **',
29+
intro7:'是否显示键盘和鼠标按键 **',
3030
intro8:'是否记录按键,关闭时将不启动后台服务,需要手工修改.ini文件的needRecordKey=1,方可重新启用',
3131
intro9:'是否显示控制键状态 **',
3232
intro10:'控制键主要为 Ctrl,Alt,Shift,Win等,按下则显示',
@@ -278,7 +278,7 @@ export default {
278278
intro4: 'Control keys mainly include Ctrl, Alt, Shift, Win',
279279
intro5: 'Show and record mouse events',
280280
intro6: 'Record mouse movement distance',
281-
intro7: 'Display mouse and keyboard press, may slightly increase the key response delay **',
281+
intro7: 'Display mouse and keyboard press **',
282282
intro8: 'Record keyboard press,the backend service will not be launched when closed,You need to manually modify the value of needRecordKey=1 in the .ini file to re-enable this function.',
283283
intro9: 'Display control key status **',
284284
intro10: 'Control keys mainly include Ctrl, Alt, Shift, Win (display if pressed)',

ui-helper/src/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* @version 配置显示在登录页面的前端版本,格式为 v.主版本号.次版本号.日期.小版本序号 v1.0.190827.1
33
*/
44
// 对于发布版 YYMMDD 和 verNo 会在Webpack中自动替换为真实的日期和版本序号,如下格式不能随便改,参考vue.config.js的代码
5-
const replaceYYMMDD = '260225';
5+
const replaceYYMMDD = '260227';
66
const replaceVerNo = '0';
7-
const mainVersion = ' v1.57';
7+
const mainVersion = ' v1.58';
88
const strVersion = mainVersion+'.'+replaceYYMMDD+'.'+replaceVerNo; // 可以支持旧版浏览器
99
//export default strVersion
1010
export {strVersion};

0 commit comments

Comments
 (0)