Compare commits

...

3 Commits

Author SHA1 Message Date
495ef3292e 更新提示超时时间增加到15 2022-10-24 09:15:04 +08:00
5900b3cdf3 feat:安装时不再需要网络
modify: 为了CI的构建速度,在构建依赖中不再依赖语言工具
2022-10-24 09:12:37 +08:00
2b76f5e202 3304 2022-10-23 23:50:16 +08:00
7 changed files with 24 additions and 11 deletions

13
debian/changelog vendored
View File

@@ -1,3 +1,16 @@
spark-store (3.3.1~test1) stable; urgency=medium
* 安装时不再需要联网
-- shenmo <shenmo@spark-app.store> Fri, 30 Jan 2022 00:00:00 +0800
spark-store (3.3.0.4) stable; urgency=medium
* 为减轻服务器压力,不再单独更新某一个应用,而是作为整体更新
-- shenmo <shenmo@spark-app.store> Fri, 30 Jan 2022 00:00:00 +0800
spark-store (3.3.0.3) stable; urgency=medium
* 回滚 更新中行为到进度条而不是实时输出

3
debian/control vendored
View File

@@ -14,7 +14,8 @@ Build-Depends:
libdtkcore-dev(>=5.0),
libdtkgui-dev(>=5.0),
libdtkwidget-dev(>=5.0),
qttools5-private-dev,
# qttools5-private-dev,
# 为了在ci中加速配置跳过此依赖。若要配置翻译需要安装此依赖
libnotify-dev,
qtwebengine5-dev
Standards-Version: 3.0

View File

@@ -30,7 +30,7 @@ case "$1" in
gcc /opt/durapps/spark-store/bin/ss-feedback/sender-d.sh.c -o /opt/durapps/spark-store/bin/ss-feedback/sender-d
# Download and install key
# Install key
mkdir -p /tmp/spark-store-install/
cp -f /opt/durapps/spark-store/bin/spark-store.asc /tmp/spark-store-install/spark-store.asc
gpg --dearmor /tmp/spark-store-install/spark-store.asc
@@ -39,8 +39,8 @@ case "$1" in
# Run apt update to avoid users being fucked up by the non-exist dependency problem
aptss ssupdate
# Now abandoned as aptss now run ssupdate everytime
#aptss ssupdate
# Start upgrade detect service

View File

@@ -24,4 +24,5 @@ function network-check()
}
network-check
#network-check
echo "不再检测网络"

View File

@@ -37,7 +37,7 @@ int main(int argc, char *argv[])
DAboutDialog dialog;
a.setAboutDialog(&dialog);
dialog.setLicense(QObject::tr("We publish this program under GPL V3"));
dialog.setVersion(DApplication::buildVersion("Version 3.3.0.3"));
dialog.setVersion(DApplication::buildVersion("Version 3.3.1~test1"));
dialog.setProductIcon(QIcon::fromTheme("spark-store")); // 设置Logo
dialog.setProductName(QLabel::tr("Spark Store"));
dialog.setDescription(
@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
a.setOrganizationName("spark-union");
a.setOrganizationDomain("https://www.deepinos.org/");
a.setApplicationName("Spark Store"); //不需要翻译,否则 ~/.local/share/ 下文件夹名称也被翻译为中文
a.setApplicationVersion(DApplication::buildVersion("3.3.0.3"));
a.setApplicationVersion(DApplication::buildVersion("3.3.1~test1"));
a.setApplicationAcknowledgementPage("https://gitee.com/deepin-community-store/spark-store");
a.setApplicationDescription(
QObject::tr(

View File

@@ -28,9 +28,7 @@ if [ "$PKG_UPGRADE_LIST" = "" ];then
zenity --info --icon-name=spark-store --text "没有选中任何软件\n但是你并没有站在世界之巅" --title "星火商店更新检测服务" --height 150 --width 300
else
for PKG_NAME_UPGRADE in $PKG_UPGRADE_LIST;do
bash aptss install $PKG_NAME_UPGRADE -y | zenity --progress --auto-close --no-cancel --pulsate --text="正在更新 $PKG_NAME_UPGRADE ,请稍候..." --height 70 --width 400 --title="星火商店更新模块"
done
bash aptss install $PKG_UPGRADE_LIST -y | zenity --progress --auto-close --no-cancel --pulsate --text=正在更新已选中的应用,请稍候... --height 70 --width 400 --title="星火商店更新模块"
if [ "$?" = "0" ];then

View File

@@ -19,7 +19,7 @@ function notify-send() {
function network()
{
#超时时间
local timeout=5
local timeout=15
#目标网站
local target=www.baidu.com