Skip to content

Commit

Permalink
✨ feat: 默认模板支持瀑布流显示
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiguai committed Aug 14, 2023
1 parent a3361e2 commit 61111b5
Show file tree
Hide file tree
Showing 8 changed files with 2,572 additions and 18 deletions.
15 changes: 12 additions & 3 deletions VerLog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
## 发行日志

- 2023 年 8 月 10 日
- 2023 年 8 月 14 日
--Ver:1.0.14
--VerS:2.1.1
--commit:详见论坛[forum.lovecards.cn/d/26]

- 2023 年 8 月 10 日(失效)
--Ver:1.1.0
--VerS:2.1.0
--commit:详见论坛[forum.lovecards.cn/d/26]

- 2023 年 5 月 20 日
- 2023 年 5 月 20 日(失效)
--Ver:1.0.0
--VerS:2.0.0
--commit:发布

## 开发日志

- 2023 年 8 月 15 日 (1.0.14)
--更新.默认模板支持瀑布流显示
--修改.版本记录格式

- 2023 年 8 月 14 日 (1.0.13)
--修复.admin/System/view 的$testTemplateConfig 获取问题(原因是 File::read_file 在不同环境下获取目录列表的顺序不同,对该函数输出的 array 进行快排)
--修复.index/cards/card 的标签存在时无法评论问题(标签输出格式存在问题导致JS的标签渲染报错阻塞JS加载
--修复.index/cards/card 的标签存在时无法评论问题(标签输出格式存在问题导致 JS 的标签渲染报错阻塞 JS 加载

- 2023 年 8 月 5 日 (1.0.12)
--修复.api/Cards/good 的 IP 获取函数问题
Expand Down
4 changes: 2 additions & 2 deletions app/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ protected static function systemVer()
return [
'Name' => 'LoveCards',
'Url' => '//lovecards.cn',
'VerS' => '2.1.0',
'Ver' => '1.1.0',
'VerS' => '2.1.1',
'Ver' => '1.0.14',
'GithubUrl' => '//github.com/zhiguai/CZ-LoveCards',
'QGroupUrl' => '//jq.qq.com/?_wv=1027&k=qM8f2RMg',
'InstallEnvironment' => [
Expand Down
5 changes: 5 additions & 0 deletions public/nginx.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
Loading

0 comments on commit 61111b5

Please sign in to comment.