Update the codes to 01.01.00.10 for the formal release

1. first formal version of macos
2. add the bambu networking plugin install logic
3. auto compute the wipe volume when filament change
4. add the logic of wiping into support
5. refine the GUI layout and icons, improve the gui apperance in lots of
   small places
6. serveral improve to support
7. support AMS auto-mapping
8. disable lots of unstable features: such as params table, media file download, HMS
9. fix serveral kinds of bugs
10. update the document of building
11. ...
This commit is contained in:
lane.wei 2022-07-22 17:46:10 +08:00 committed by Lane.Wei
parent e1528e4299
commit e9e4d75877
267 changed files with 10326 additions and 32228 deletions

View file

@ -1,41 +1,27 @@
#NoteText
#Content
{
border:0px solid #787878;
font-size: 14px;
line-height: 22px;
height: 90%;
color: #535353;
overflow-y: auto;
overflow-x: hidden;
margin: 10mm 30mm;
padding:10% 15%;
}
#NoteText h
#FeatureText
{
font-size:22px;
line-height: 32px;
}
#NoteText::-webkit-scrollbar {/*滚动条整体样式*/
width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}
#NoteText::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background-color: #AAAAAA;
}
#NoteText::-webkit-scrollbar-track {/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
border-radius: 10px;
background: #EDEDED;
line-height: 30px;
}
#CheckArea
{
margin-top:10mm;
line-height: 30px;
}
#InstallCheck
{
width: 30px;
}
#RestartText
{
padding-left:30px;
}

View file

@ -1,4 +1,28 @@
function OnInit()
{
TranslatePage();
SendInstallPluginCheck();
}
function SendInstallPluginCheck()
{
let nVal="no";
if( $('#InstallCheck').is(':checked') )
nVal="yes";
var tSend={};
tSend['sequence_id']=Math.round(new Date() / 1000);
tSend['command']="network_plugin_install";
tSend['data']={};
tSend['data']['action']=nVal;
SendWXMessage( JSON.stringify(tSend) );
}
function FinishGuide()

View file

@ -13,49 +13,25 @@
<script type="text/javascript" src="../js/common.js"></script>
<script type="text/javascript" src="5.js"></script>
</head>
<body onLoad="TranslatePage()">
<body onLoad="OnInit()">
<div id="Title">
<div class="trans" tid="t23">Release note</div>
<div class="trans" tid="t64">Bambu Network Plugin</div>
</div>
<div id="Content">
<div id="NoteText">
<h>7.5.0</h>
<p>更新日志:</p>
<p>1.新增关联内容设置</p>
<p>2.优化编辑器里的图片上传组件中的在线图片列表和后台默认上传组件中的图片库列表增加图片预览图标和链接;</p>
<p>3.新增对国产达梦数据库的兼容</p>
<p>4.新增免费模板metv75一套</p>
<p>5.优化管理员内容权限控制</p>
<p>6.优化编辑器里的图片上传组件中的在线图片列表和后台默认上传组件中的图片库列表增加图片预览图标和链接;</p>
<p>7.优化数据备份与导入功能</p>
<p>8.修复XSS漏洞</p>
<div id="FeatureText">
<div ><a tid="t75" class="trans">Bambu Network plug-in Provides the following features:</a></div>
<div><span></span>&nbsp;&nbsp;<a tid="t65" class="trans" ></a></div>
<div><span></span>&nbsp;&nbsp;<a tid="t66" class="trans" ></a></div>
<div><span></span>&nbsp;&nbsp;<a tid="t67" class="trans" ></a></div>
<div><span></span>&nbsp;&nbsp;<a tid="t68" class="trans" ></a></div>
</div>
<br/><br/>
<h>7.4.0</h>
<p>更新日志:</p>
<p>1.新增关联内容设置</p>
<p>2.优化编辑器里的图片上传组件中的在线图片列表和后台默认上传组件中的图片库列表增加图片预览图标和链接;</p>
<p>3.新增对国产达梦数据库的兼容</p>
<p>4.新增免费模板metv75一套</p>
<p>5.优化管理员内容权限控制</p>
<p>6.优化前台内容限控制</p>
<p>7.优化数据备份与导入功能</p>
<p>8.修复XSS漏洞</p>
<br/><br/>
<h>7.3.0</h>
<p>更新日志:</p>
<p>1.新增关联内容设置</p>
<p>2.优化编辑器里的图片上传组件中的在线图片列表和后台默认上传组件中的图片库列表增加图片预览图标和链接;</p>
<p>3.新增对国产达梦数据库的兼容</p>
<p>4.新增免费模板metv75一套</p>
<p>5.优化管理员内容权限控制</p>
<p>6.优化编辑器里的图片上传组件中的在线图片列表和后台默认上传组件中的图片库列表增加图片预览图标和链接;</p>
<p>7.优化数据备份与导入功能</p>
<p>8.修复XSS漏洞</p>
</div>
<div id="CheckArea"><input id="InstallCheck" onClick="SendInstallPluginCheck()" checked type="checkbox"><a tid="t69" class="trans">Install Bambu Network Plug-in. </a></div>
<div id="RestartText" tid="t70" class="trans" ></div>
</div>
<div id="AcceptArea">
<div class="GrayBtn trans" tid="t8" id="PreBtn" onclick="window.history.back()">Back</div>