feat: 公共表更名 common/member 前缀 + 插件命令自动加载 + 版本 1.1.1

- 18 张公共表更名(addon/attachment/configure/links/spider_log/spider_stat/sms/notice/ad/task/prop/medal/help/card -> common_*,member_wallets->member_wallet,score_rule/score_log -> member_*,addon_config->common_addonconf),模型全部对齐新表名,Db 直引用清零
- Attachment 模型补  表名绑定,修复富文本上传查 wxapp_attachment 1146 隐患
- install.sql + 迁移 SQL:backend_admin/backend_role delete_at 默认 0,修复软删除(NULL != 0)误过滤导致后台菜单为空
- AppService::boot() 支持插件 info.php 声明 commands 自动注册插件命令(psr-4 自动加载,坏类名自动跳过)
- 各插件(haonav/mqttbroker/wxchat/articles/blog/forum 等)字段与配置同步调整
- 框架版本 1.1.0 -> 1.1.1
This commit is contained in:
ywxapp
2026-08-20 20:19:15 +08:00
parent 303f548664
commit 1d49e6f5ee
395 changed files with 13342 additions and 2012 deletions
+83 -53
View File
@@ -1,10 +1,10 @@
/*
* @Author: YwxApp <ywx@ywxapp.cn>
* @Description: 前台主导航菜单管理(后台)
* @Description: 前台主导航菜单管理(后台treeTable 树形表格
*/
layui.define(['http', 'auth', 'table', 'treeTable'], function (exports) {
var $ = layui.$,
table = layui.table,
treeTable = layui.treeTable,
form = layui.form,
layer = layui.layer,
laytpl = layui.laytpl,
@@ -13,38 +13,47 @@ layui.define(['http', 'auth', 'table', 'treeTable'], function (exports) {
auth.init((layui.data('backend').permission) || []);
// 两级树拍平成单表,子项缩进展示
function flatTree(list, level) {
var rows = [];
layui.each(list || [], function (i, item) {
item._level = level;
item._title = (level > 0 ? ' ├ ' : '') + item.title;
rows.push(item);
if (item.child && item.child.length) {
rows = rows.concat(flatTree(item.child, level + 1));
}
});
return rows;
}
var dataTable = table.render({
// 树形表格:数据为扁平 pid 列表(isSimpleData),pid=0 为根自动建树
treeTable.render({
elem: '#dataTable',
url: 'index',
page: false,
parseData: function (res) {
return { code: res.code === 0 ? 0 : 1, msg: res.msg || '', count: res.count || 0, data: res.data || [] };
},
tree: {
customName: {
children: 'children',
isParent: 'is_parent',
name: 'title',
id: 'id',
pid: 'pid',
icon: 'icon'
},
data: { isSimpleData: true, rootPid: 0 },
view: {},
async: {},
callback: {}
},
height: 'full-100',
toolbar: '#tableBar',
cols: [[
{ field: 'id', title: 'ID', width: 70, align: 'center' },
{ field: 'title', title: '菜单名称', minWidth: 180, templet: function (d) { return d._title || d.title; } },
{ field: 'parent_id', title: '层级', width: 90, align: 'center', templet: '#parentTpl' },
{ type: 'checkbox', fixed: 'left' },
{ field: 'id', title: 'ID', width: 80, sort: true, fixed: 'left', align: 'center' },
{ field: 'title', title: '菜单名称', minWidth: 200, fixed: 'left' },
{
field: 'app', title: '所属应用', width: 110, align: 'center', templet: function (d) {
if (!d.app) return '<span class="layui-badge layui-bg-green">前台</span>';
if (d.app === 'member') return '<span class="layui-badge layui-bg-blue">会员</span>';
if (d.app === 'backend') return '<span class="layui-badge layui-bg-orange">后台</span>';
return '<span class="layui-badge layui-bg-black">' + d.app + '</span>';
}
},
{ field: 'url', title: '链接', minWidth: 200 },
{ field: 'sort', title: '排序', width: 80, align: 'center' },
{ field: 'status', title: '状态', width: 110, align: 'center', templet: '#statusTpl' },
{ title: '操作', width: 200, align: 'center', toolbar: '#dataBar', fixed: 'right' }
{ field: 'sort', title: '排序', width: 80, sort: true, align: 'center' },
{ field: 'status', title: '状态', width: 96, align: 'center', templet: '#statusTpl' },
{ fixed: 'right', title: '操作', width: 200, align: 'center', toolbar: '#dataBar' }
]],
response: { statusCode: 0 },
parseData: function (res) {
return { code: res.code, msg: res.msg, count: res.count || 0, data: flatTree(res.data, 0) };
},
page: false,
done: function () {
auth.render();
}
@@ -55,50 +64,71 @@ layui.define(['http', 'auth', 'table', 'treeTable'], function (exports) {
var id = obj.value;
var status = obj.elem.checked ? 1 : 0;
http.post('status', { id: id, status: status }).then(function (res) {
if (res.code !== 0) { layer.msg(res.msg || '操作失败'); dataTable.reload(); }
if (res.code !== 0) {
layer.msg(res.msg || '操作失败');
obj.elem.checked = !obj.elem.checked;
form.render('checkbox');
}
});
});
// 工具条(新建)
table.on('toolbar(dataTable)', function (obj) {
if (obj.event === 'dataCreate') { openForm({}); }
// 搜索 / 重置
form.on('submit(data-search-btn)', function (obj) {
treeTable.reload('dataTable', { where: { title: obj.field.title || '' } }, true);
return false;
});
$('#btn-reset').on('click', function () {
$('.layui-form[lay-filter="search-form"] input[name="title"]').val('');
treeTable.reload('dataTable', { where: {} }, true);
});
// 行操作
table.on('tool(dataTable)', function (obj) {
var d = obj.data;
if (obj.event === 'update') { openForm(d); }
else if (obj.event === 'addChild') { openForm({ parent_id: d.id }); }
else if (obj.event === 'delete') {
layer.confirm('确定删除该菜单吗?', function (idx) {
http.delete('delete', { id: d.id }).then(function (res) {
if (res.code === 0) { layer.close(idx); dataTable.reload(); }
else { layer.msg(res.msg || '操作失败'); }
});
});
// 工具条(新建 / 批量删除)
treeTable.on('toolbar(dataTable)', function (obj) {
if (obj.event === 'dataCreate') {
openForm({});
} else if (obj.event === 'dataDelete') {
var checkStatus = treeTable.checkStatus('dataTable');
delRows((checkStatus.data || []).map(function (item) { return item.id; }));
}
});
// 表单弹窗:拉取一级菜单作为父级选项
// 行操作
treeTable.on('tool(dataTable)', function (obj) {
var d = obj.data;
if (obj.event === 'update') { openForm(d); }
else if (obj.event === 'create') { openForm({ parent_id: d.id }); }
else if (obj.event === 'delete') { delRows([d.id]); }
});
// 删除(单条或批量)
function delRows(ids) {
if (!ids || !ids.length) return layer.msg('请选择要删除的项');
layer.confirm('确定删除选中的 ' + ids.length + ' 项吗?', function (idx) {
http.delete('delete', { ids: ids.join(',') }).then(function (res) {
if (res.code === 0) { layer.close(idx); treeTable.reload('dataTable', {}, true); }
else { layer.msg(res.msg || '操作失败'); }
});
});
}
// 表单抽屉:拉取一级菜单作为父级选项
function openForm(data) {
http.get('index').then(function (res) {
var parents = [];
layui.each((res.data || []), function (i, p) {
if (p.parent_id == 0) parents.push(p);
if (p.pid == 0) parents.push(p);
});
var html = laytpl($('#dataFormTpl').html()).render($.extend({ parents: parents }, data));
var html = laytpl($('#dataFormTpl').html()).render($.extend({ parents: parents, plugins: window.navPlugins || [] }, data));
layer.open({
type: 1, title: data.id ? '编辑菜单' : '新建菜单',
area: ['480px', 'auto'], content: html,
btn: ['保存', '取消'],
type: 1, title: data.id ? '编辑菜单' : (data.parent_id ? '添加子菜单' : '新建菜单'),
area: ['520px', '98%'], offset: 'r', anim: 'slideLeft', shade: 0.1, shadeClose: true,
btnAlign: 'l', btn: ['保存', '取消'], content: html,
success: function () { form.render(); },
yes: function (idx, layero) {
var field = form.val('wxapp-form-submit') || {};
// 用表单序列化兜底
var fd = {};
$(layero).find('form').serializeArray().map(function (x) { fd[x.name] = x.value; });
http.post(data.id ? 'update' : 'save', fd).then(function (r) {
if (r.code === 0) { layer.close(idx); dataTable.reload(); }
if (r.code === 0) { layer.close(idx); treeTable.reload('dataTable', {}, true); }
else { layer.msg(r.msg || '操作失败'); }
});
}
+95
View File
@@ -0,0 +1,95 @@
:root{
--dl-primary:#1E9FFF;
--dl-primary-dark:#0C7CD5;
--dl-primary-light:#e8f5ff;
--dl-text:#222;
--dl-sub:#888;
--dl-line:#eee;
--dl-bg:#f5f6f8;
--dl-radius:14px;
}
*{box-sizing:border-box;}
/* 下载站主体容器(套在全站 layout 的 main-wrapper 内) */
.dl-wrap{max-width:1180px;margin:24px auto;padding:0 20px;}
/* 首屏主推引导 */
.dl-hero{background:linear-gradient(120deg,#1E9FFF,#48b1ff);border-radius:var(--dl-radius);padding:36px 40px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;margin-bottom:28px;}
.dl-hero h2{margin:0 0 10px;font-size:30px;}
.dl-hero p{margin:0;opacity:.92;font-size:15px;}
.dl-hero .slogan{margin-top:14px;font-size:13px;opacity:.85;}
.dl-hero-btn{display:inline-block;background:#fff;color:var(--dl-primary);padding:12px 34px;border-radius:24px;font-weight:700;font-size:16px;text-decoration:none;box-shadow:0 4px 14px rgba(0,0,0,.12);white-space:nowrap;}
.dl-hero-btn:hover{transform:translateY(-1px);}
/* 区块标题 */
.dl-block{background:#fff;border:1px solid var(--dl-line);border-radius:var(--dl-radius);padding:22px 26px;margin-bottom:24px;}
.dl-block-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;}
.dl-block-title{font-size:18px;margin:0;font-weight:700;}
.dl-block-title::before{content:"";display:inline-block;width:4px;height:16px;background:var(--dl-primary);border-radius:2px;margin-right:10px;vertical-align:-2px;}
.dl-refresh{font-size:13px;color:var(--dl-primary);cursor:pointer;border:1px solid var(--dl-primary);background:#fff;border-radius:16px;padding:4px 14px;}
.dl-refresh:hover{background:var(--dl-primary-light);}
/* 内联搜索条(列表/搜索页顶部) */
.dl-searchbar{display:flex;gap:10px;margin-bottom:20px;}
.dl-searchbar input{flex:1;border:1px solid var(--dl-line);border-radius:20px;outline:0;padding:10px 18px;font-size:14px;background:#f7f8fa;}
.dl-searchbar input:focus{border-color:var(--dl-primary);background:#fff;}
.dl-searchbar button{border:0;background:var(--dl-primary);color:#fff;padding:0 26px;border-radius:20px;cursor:pointer;font-size:14px;}
.dl-searchbar button:hover{background:var(--dl-primary-dark);}
/* 分类导航(首页卡片式) */
.dl-cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:18px;}
.dl-cat{background:#fafbfc;border:1px solid var(--dl-line);border-radius:10px;padding:16px;}
.dl-cat h3{margin:0 0 10px;font-size:15px;}
.dl-cat h3 a{color:#333;text-decoration:none;}
.dl-cat h3 a:hover{color:var(--dl-primary);}
.dl-cat-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:8px 14px;}
.dl-cat-list a{color:#666;text-decoration:none;font-size:13px;}
.dl-cat-list a:hover{color:var(--dl-primary);}
.dl-cat-more{display:inline-block;margin-top:12px;font-size:13px;color:var(--dl-primary);text-decoration:none;}
/* 软件卡片网格 */
.dl-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:18px;}
.dl-card{background:#fff;border:1px solid var(--dl-line);border-radius:12px;padding:16px;text-align:center;transition:.2s;display:flex;flex-direction:column;align-items:center;}
.dl-card:hover{box-shadow:0 6px 20px rgba(30,159,255,.12);border-color:#cfe9ff;transform:translateY(-3px);}
.dl-cover{width:72px;height:72px;object-fit:cover;border-radius:14px;background:#f2f2f2;margin-bottom:10px;}
.dl-name{font-size:14px;color:#333;text-decoration:none;font-weight:600;display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.dl-card:hover .dl-name{color:var(--dl-primary);}
.dl-desc{font-size:12px;color:var(--dl-sub);margin:6px 0 0;height:18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.dl-meta{font-size:12px;color:#aaa;margin:8px 0 12px;}
.dl-card-btn{margin-top:auto;display:inline-block;padding:6px 18px;border-radius:16px;background:var(--dl-primary);color:#fff;text-decoration:none;font-size:13px;}
.dl-card-btn:hover{background:var(--dl-primary-dark);}
/* 分页 */
.dl-pager{margin-top:22px;text-align:center;color:#666;}
.dl-pager a,.dl-pager span{padding:6px 12px;margin:0 3px;border-radius:6px;text-decoration:none;color:#555;border:1px solid var(--dl-line);display:inline-block;}
.dl-pager .active{background:var(--dl-primary);color:#fff;border-color:var(--dl-primary);}
/* 详情页 */
.dl-detail{display:flex;gap:30px;background:#fff;border:1px solid var(--dl-line);border-radius:var(--dl-radius);padding:28px;flex-wrap:wrap;}
.dl-detail-cover{width:150px;height:150px;object-fit:cover;border-radius:16px;background:#f2f2f2;}
.dl-detail-info{flex:1;min-width:280px;}
.dl-detail-title{margin:0 0 16px;font-size:24px;}
.dl-detail-row{margin:8px 0;color:#666;}
.dl-tag-free{background:#e8f5e9;color:#2e7d32;padding:3px 12px;border-radius:14px;font-size:12px;}
.dl-tag-pay{background:#fff3e0;color:#ef6c00;padding:3px 12px;border-radius:14px;font-size:12px;}
.dl-btn-down{display:inline-block;margin-top:18px;padding:12px 40px;background:var(--dl-primary);color:#fff;border-radius:10px;text-decoration:none;font-weight:700;font-size:16px;}
.dl-btn-down:hover{background:var(--dl-primary-dark);}
.dl-detail-intro{margin-top:24px;background:#fff;border:1px solid var(--dl-line);border-radius:var(--dl-radius);padding:24px;}
.dl-detail-intro h3{margin-top:0;}
.dl-back{display:inline-block;margin-top:18px;color:var(--dl-primary);text-decoration:none;}
/* 面包屑 */
.dl-crumb{font-size:13px;color:#999;margin-bottom:14px;}
.dl-crumb a{color:#666;text-decoration:none;}
.dl-crumb a:hover{color:var(--dl-primary);}
.dl-crumb span{margin:0 6px;color:#ccc;}
/* 空态 */
.dl-empty{color:#999;text-align:center;padding:50px 0;}
@media (max-width:640px){
.dl-wrap{padding:0 16px;}
.dl-hero{padding:24px;flex-direction:column;align-items:flex-start;}
.dl-hero h2{font-size:24px;}
.dl-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:12px;}
}
+8
View File
@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150">
<rect width="150" height="150" rx="18" fill="#e8f5ff"/>
<g fill="none" stroke="#1E9FFF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round">
<path d="M75 40 v50"/>
<path d="M55 72 l20 20 20-20"/>
<path d="M45 110 h60"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 350 B

File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -97,7 +97,7 @@ body {
.mynav-empty { color: var(--nav-muted); font-size: 13px; padding: 6px 0; }
/* 分类 */
.section-title { background: var(--nav-card); padding: 10px 16px; border-radius: 10px 10px 0 0; margin-bottom: 5px; box-shadow: 0 2px 15px rgba(0,0,0,.1); }
.section-title {display:flex;justify-content:space-between; background: var(--nav-card); padding: 10px 16px; border-radius: 10px 10px 0 0; margin-bottom: 5px; box-shadow: 0 2px 15px rgba(0,0,0,.1); }
.section-title h2 { font-size: 18px; }
.section-title h2 a { color: var(--nav-card-text); text-decoration: none; }
@@ -107,6 +107,8 @@ body {
.sub-category .sub-title { display: flex; align-items: center; gap: 8px; margin: 10px 0 4px; font-size: 15px; font-weight: 700; color: var(--nav-card-text); }
.sub-category .sub-title::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: var(--nav-primary); display: inline-block; }
.sub-category .website-grid { margin-bottom: 6px; }
.sub-category .sub-more { margin-left: auto; font-size: 13px; font-weight: 400; color: var(--nav-muted); text-decoration: none; }
.sub-category .sub-more:hover { color: var(--nav-primary); }
.website-card {
background: var(--nav-card); border-radius: 10px; padding: 12px 8px; text-align: center; transition: all .3s;
box-shadow: 0 2px 10px rgba(0,0,0,.1); cursor: pointer; position: relative;
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 664 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 900 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<style>
.st0 { fill: #42B883; }
.st1 { fill: #35495E; }
</style>
<path class="st0" d="M78.8,10L64,35.4L49.2,10H0l64,110l64-110C128,10,78.8,10,78.8,10z" />
<path class="st1" d="M78.8,10L64,35.4L49.2,10H25.6L64,76l38.4-66H78.8z" />
</svg>

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Some files were not shown because too many files have changed in this diff Show More