mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-23 11:32:21 +08:00
commit
4dbd79a1ac
16
debian/changelog
vendored
16
debian/changelog
vendored
@ -1,3 +1,19 @@
|
|||||||
|
spark-store (3.3.3) stable; urgency=medium
|
||||||
|
|
||||||
|
* feat: 首页链接调用浏览器打开
|
||||||
|
|
||||||
|
-- shenmo <shenmo@spark-app.store> Fri, 30 Jan 2022 00:00:00 +0800
|
||||||
|
|
||||||
|
0spark-store (3.3.3~test5) stable; urgency=medium
|
||||||
|
|
||||||
|
* 修复可能的内存泄漏问题
|
||||||
|
* 修复应用搜索为空但仍显示上一次搜索结果的问题
|
||||||
|
* 修复动画加载延后的问题
|
||||||
|
* 修复统计下载量卡主渲染线程的问题
|
||||||
|
|
||||||
|
-- shenmo <shenmo@spark-app.store> Fri, 30 Jan 2022 00:00:00 +0800
|
||||||
|
|
||||||
|
|
||||||
spark-store (3.3.3~test4) stable; urgency=medium
|
spark-store (3.3.3~test4) stable; urgency=medium
|
||||||
|
|
||||||
* Enable i386 arch support by default
|
* Enable i386 arch support by default
|
||||||
|
@ -20,7 +20,7 @@ DWIDGET_USE_NAMESPACE
|
|||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
// Get build time
|
// Get build time
|
||||||
static const QString version = "Version 3.3.3~test4";
|
static const QString version = "Version 3.3.3";
|
||||||
static const QDate buildDate = QLocale( QLocale::English ).toDate( QString(__DATE__).replace(" ", " 0"), "MMM dd yyyy");
|
static const QDate buildDate = QLocale( QLocale::English ).toDate( QString(__DATE__).replace(" ", " 0"), "MMM dd yyyy");
|
||||||
static const QTime buildTime = QTime::fromString(__TIME__, "hh:mm:ss");
|
static const QTime buildTime = QTime::fromString(__TIME__, "hh:mm:ss");
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ int main(int argc, char *argv[])
|
|||||||
if (readConfig.value("build/version").toString() != version){
|
if (readConfig.value("build/version").toString() != version){
|
||||||
qDebug() << "Spark Store has been updated!";
|
qDebug() << "Spark Store has been updated!";
|
||||||
QSettings *setConfig = new QSettings(QDir::homePath() + "/.config/spark-store/config.ini", QSettings::IniFormat);
|
QSettings *setConfig = new QSettings(QDir::homePath() + "/.config/spark-store/config.ini", QSettings::IniFormat);
|
||||||
setConfig->setValue("build/version", "Version 3.3.3~test4");
|
setConfig->setValue("build/version", "Version 3.3.3");
|
||||||
setConfig->setValue("build/time", buildDate.toString("yyyy.MM.dd")+"-"+buildTime.toString());
|
setConfig->setValue("build/time", buildDate.toString("yyyy.MM.dd")+"-"+buildTime.toString());
|
||||||
setConfig->deleteLater();
|
setConfig->deleteLater();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user