Commit 398024b8 by ss.dai

1:新增程序版本信息 2:修改程序修改日志

parent c0dbf71b
QT += core QT += core
QT -= gui QT -= gui
VERSION = "1.0.1"
CONFIG += c++11 CONFIG += c++11
TARGET = fmporter TARGET = fmporter
......
-------------------
version 1.0.2
Fixes:
1:未杀完进程就替换文件导致升级失败的问题
...@@ -30,7 +30,7 @@ FmControl::~FmControl() ...@@ -30,7 +30,7 @@ FmControl::~FmControl()
void FmControl::Start() void FmControl::Start()
{ {
QLOG_INFO() << QString("fmupdate [start] %1").arg(VERSION); QLOG_INFO() << QString("fmupdate [start]");
m_appDir = QCoreApplication::applicationDirPath(); m_appDir = QCoreApplication::applicationDirPath();
m_keepTimer.start(); m_keepTimer.start();
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#define SERVICE_NAME "Fmupdate" #define SERVICE_NAME "Fmupdate"
#define SERVICE_DESC "用于非码程序的升级服务" #define SERVICE_DESC "用于非码程序的升级服务"
#define VERSION "1.0.2"
#define KEEP_INTERVAL 5*1000 #define KEEP_INTERVAL 5*1000
#define CHECK_INTERVAL 10*60*1000 #define CHECK_INTERVAL 10*60*1000
......
...@@ -12,7 +12,7 @@ DEFINES += QUAZIP_STATIC ...@@ -12,7 +12,7 @@ DEFINES += QUAZIP_STATIC
TARGET = fmscupd TARGET = fmscupd
CONFIG += windows CONFIG += windows
CONFIG -= app_bundle CONFIG -= app_bundle
VERSION = "1.0.2"
TEMPLATE = app TEMPLATE = app
SOURCES += main.cpp \ SOURCES += main.cpp \
...@@ -25,5 +25,9 @@ HEADERS += \ ...@@ -25,5 +25,9 @@ HEADERS += \
fmcontrol.h \ fmcontrol.h \
fmtools.h fmtools.h
OTHER_FILES += \
update.ini \
changes.txt
LIBS += -lUserenv LIBS += -lUserenv
LIBS += -lz LIBS += -lz
V1.0.2
1:修复因未杀完进程就替换文件导致升级失败的问题
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment