Skip to content

Commit 1b8cdda

Browse files
committed
sync from upstream, version bump
1 parent 354e4a0 commit 1b8cdda

File tree

88 files changed

+228
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+228
-158
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## CHANGELOG v1.5.3
2+
3+
*Changelog update Sunday, Mar 27, 2022*
4+
5+
### General additions
6+
7+
- support Transmission v3.0
8+
9+
### Function improved
10+
11+
- use motd instead of bashrc information
12+
13+
### Function updated
14+
15+
- nfs only run with private IP address by default
16+
17+
### Bug fixed
18+
19+
- fix qBittorrent static script
20+
- fix switch branch button on dashboard
21+
22+
---
23+
124
## CHANGELOG v1.5.2
225

326
*Changelog update Saturday, Jan 1, 2022*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This project is a modified version of the QuickBox community edition. This proje
2424

2525
## Script status
2626

27-
![Version](https://img.shields.io/badge/version-1.5.2-orange?style=flat-square)![GNU v3.0 License](https://img.shields.io/badge/license-GNU%20v3.0%20License-blue.svg?style=flat-square)
27+
![Version](https://img.shields.io/badge/version-1.5.3-orange?style=flat-square)![GNU v3.0 License](https://img.shields.io/badge/license-GNU%20v3.0%20License-blue.svg?style=flat-square)
2828

2929
When upgrade from 1.3.2 to 1.3.3, very recommend to use SSH with `box update quickbox`. You also need to run the command twice to finish the service upgrade. If you are using WebUI to finish the upgrade, please also upgrade twice.
3030

README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
## 当前版本
2626

27-
![Version](https://img.shields.io/badge/version-1.5.2-orange?style=flat-square)![GNU v3.0 License](https://img.shields.io/badge/license-GNU%20v3.0%20License-blue.svg?style=flat-square)
27+
![Version](https://img.shields.io/badge/version-1.5.3-orange?style=flat-square)![GNU v3.0 License](https://img.shields.io/badge/license-GNU%20v3.0%20License-blue.svg?style=flat-square)
2828

2929
在执行 1.3.2 -> 1.3.3 的升级时,建议使用 SSH 运行 `box update quickbox` 进行升级操作,且需要执行两次以完成后台服务升级。若使用 WebUI 也需要执行两次。
3030

bump-version.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: TautCony
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
#
99
# Licensed under GNU General Public License v3.0 GPL-3 (in short)
1010
#
@@ -65,15 +65,21 @@ function _update_version() {
6565
for file in "${FILE_LIST[@]}"; do
6666
if [[ -f "$file" ]]; then
6767
# echo "Bumping version to $version in $file"
68-
sed -i "" "s/^# Current version: .*$/# Current version: v${VERSION}/" "$file"
68+
sed -i "s/^# Current version: .*$/# Current version: v${VERSION}/" "$file"
6969
git add "$file"
7070
fi
7171
done
7272

73-
sed -i "" "s/badge\/version-[^-]*/badge\/version-${VERSION}/" README.md
74-
sed -i "" "s/badge\/version-[^-]*/badge\/version-${VERSION}/" README_zh.md
73+
sed -i "s/badge\/version-[^-]*/badge\/version-${VERSION}/" README.md
74+
sed -i "s/badge\/version-[^-]*/badge\/version-${VERSION}/" README_zh.md
75+
sed -i "s/QUICKBOX_VERSION=.*$/QUICKBOX_VERSION=v${VERSION}/" setup/templates/motd/01-custom
76+
sed -i "s/QUICKBOX_VERSION=.*$/QUICKBOX_VERSION=v${VERSION}/" setup/templates/bash_qb.template
77+
sed -i "s/\$version = 'v1.5.2';$/\$version = 'v${VERSION}';/" setup/dashboard/inc/config.php
7578
git add README.md
7679
git add README_zh.md
80+
git add setup/templates/motd/01-custom
81+
git add setup/templates/bash_qb.template
82+
git add setup/dashboard/inc/config.php
7783
}
7884

7985
function _commit_changes() {

onekey.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

packages/package/install/installpackage-art

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

packages/package/install/installpackage-autodlirssi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

packages/package/install/installpackage-btsync

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

packages/package/install/installpackage-cifs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

packages/package/install/installpackage-deluge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# GitHub: https://github.com/amefs/quickbox-lite
66
# Author: Amefs
7-
# Current version: v1.5.2
7+
# Current version: v1.5.3
88
# URL:
99
# Original Repo: https://github.com/QuickBox/QB
1010
# Credits to: QuickBox.io

0 commit comments

Comments
 (0)