import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 import DelegateUI 1.0 import "../MyGlobals" 1.0 Item { anchors.fill: parent Rectangle { visible: true anchors.fill: parent anchors.margins: 15 anchors.bottomMargin: 45 color: "transparent" border.color: DelTheme.isDark ? DelTheme.DelCollapse.colorBorderDark : DelTheme.DelCollapse.colorBorder border.width: 1 radius: 8 Rectangle{ id:snik anchors.fill: parent anchors.topMargin: 15 color: "transparent" Column { width: parent.width spacing: 10 DelTimeline { id: reverseTimeline width: parent.width height: snik.height mode: DelTimeline.Mode_Left initModel: [ { time: new Date(2025, 2, 21), content: '初版DP-S后台管理工具发布\n由WinUI3编写', }, { time: new Date(2025, 3, 7), content: 'DP-S后台管理工具Qt版本发布\n支持win7系统', }, { time: new Date(2025, 3, 22), content: 'DP-S后台管理工具整体重构\n大幅度提升流畅性!', }, { time: new Date(2025, 4, 9), content: '添加了单个插件的卸载按钮\n优化添加服务器流程\n增加国内线路\n在程序标题栏显示当前程序版本', }, { time: new Date(2025, 4, 10), content: '新增更新日志栏目\n采用时间轴方式展示更新内容!\n优化栏目图标设置。', }, { time: new Date(2025, 4, 16), content: '开放双端插件栏目!', }, { time: new Date(2025, 4, 17), content: '新增服务器双端插件页面显示到期时间与开关按钮\n新增协议说明\n优化添加服务器网关的流程与逻辑', }, { time: new Date(2025, 4, 21), content: '新增个人中心联系客服按钮\n开放贡献点系统', }, { time: new Date(2025, 4, 22), content: '修复java插件安装的问题', }, { time: new Date(2025, 4, 23), content: '修复因为转义字符导致配置无法正常显示的问题\n需要在个人中心重新添加一下服务器', }, { time: new Date(2025, 4, 25), content: '双端插件详情显示页面加入视频播放', } ] } } } } }