Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
flucout committed Nov 24, 2023
1 parent 3c66d2f commit 06bf42d
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/script/convert.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

Linux_Version="8.0.3"
Linux_Version="8.0.4"
Windows_Version="7.9.0"
Btm_Version="2.2.9"

Expand Down
4 changes: 2 additions & 2 deletions install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ INSERT INTO `cloud_config` (`key`, `value`) VALUES
('bt_key', ''),
('whitelist', '0'),
('download_page', '1'),
('new_version', '8.0.3'),
('new_version', '8.0.4'),
('update_msg', '暂无更新日志'),
('update_date', '2023-10-08'),
('update_date', '2023-11-19'),
('new_version_win', '7.9.0'),
('update_msg_win', '暂无更新日志'),
('update_date_win', '2023-07-20'),
Expand Down
5 changes: 5 additions & 0 deletions public/install/install_6.0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ if [ "${UbuntuCheck}" ] && [ "${UbuntuCheck}" -lt "16" ];then
echo "Ubuntu ${UbuntuCheck}不支持安装宝塔面板,建议更换Ubuntu18/20安装宝塔面板"
exit 1
fi
HOSTNAME_CHECK=$(cat /etc/hostname)
if [ -z "${HOSTNAME_CHECK}" ];then
echo "当前主机名hostname为空无法安装宝塔面板,请咨询服务器运营商设置好hostname后再重新安装"
exit 1
fi

cd ~
setup_path="/www"
Expand Down
Binary file modified public/install/src/panel6.zip
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions route/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
Route::get('/panel/notpro', 'api/return_empty');
Route::post('/Btdeployment/get_deplist', 'api/get_deplist');
Route::post('/panel/get_deplist', 'api/get_deplist');
Route::get('/ip/info_json', 'api/return_empty_array');

Route::post('/LinuxBeta', 'api/return_error');
Route::post('/panel/apple_beta', 'api/return_error');
Expand Down
6 changes: 5 additions & 1 deletion wiki/files/linux/PluginLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ def get_plugin_list(force = 0):
except Exception as ex:
raise public.error_conn_cloud(str(ex))
softList = json.loads(jsonData)
if type(softList)!=dict or 'list' not in softList: raise Exception('云端插件列表获取失败')
if type(softList)!=dict or 'list' not in softList:
if type(softList)==str:
raise Exception(softList)
else:
raise Exception('云端插件列表获取失败')
public.writeFile(cache_file, jsonData)
return softList

Expand Down
6 changes: 5 additions & 1 deletion wiki/files/win/PluginLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ def get_plugin_list(force = 0):
except Exception as ex:
raise public.error_conn_cloud(str(ex))
softList = json.loads(jsonData)
if type(softList)!=dict or 'list' not in softList: raise Exception('云端插件列表获取失败')
if type(softList)!=dict or 'list' not in softList:
if type(softList)==str:
raise Exception(softList)
else:
raise Exception('云端插件列表获取失败')
public.writeFile(cache_file, jsonData)
return softList

Expand Down
12 changes: 8 additions & 4 deletions wiki/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@

- 全局搜索替换 https://www.bt.cn/api/ => http://www.example.com/api/(需排除clearModel.py、scanningModel.py、ipsModel.py)

- 全局搜索替换 http://www.bt.cn/api/ => http://www.example.com/api/(需排除js文件)

- 全局搜索替换 https://download.bt.cn/install/update6.sh => http://www.example.com/install/update6.sh

- class/ajax.py 文件 \#是否执行升级程序 下面的 public.get_url() 改成 public.GetConfigValue('home')
- class/ajax.py 文件 \# 是否执行升级程序 下面的 public.get_url() 改成 public.GetConfigValue('home')

class/jobs.py 文件 \#尝试升级到独立环境 下面的 public.get_url() 改成 public.GetConfigValue('home')

Expand Down Expand Up @@ -63,6 +65,8 @@

- class/plugin_deployment.py 文件,SetupPackage方法内替换 public.GetConfigValue('home') => 'https://www.bt.cn'

- script/flush_plugin.py 文件,删除clear_hosts()一行

- install/install_soft.sh 在bash执行之前加入以下代码

```shell
Expand Down Expand Up @@ -97,11 +101,11 @@

- [可选]去除创建网站自动创建的垃圾文件:在class/panelSite.py,分别删除

htaccess = self.sitePath+'/.htaccess'
htaccess = self.sitePath + '/.htaccess'

index = self.sitePath+'/index.html'
index = self.sitePath + '/index.html'

doc404 = self.sitePath+'/404.html'
doc404 = self.sitePath + '/404.html'

这3行及分别接下来的4行代码

Expand Down

0 comments on commit 06bf42d

Please sign in to comment.