Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
归档的月份默认按倒序排序
  • Loading branch information
jockchou committed Aug 27, 2015
1 parent 01c29ab commit 303ae5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/libraries/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,9 @@ private function readAllPostInfo($mdfiles, $postPath) {
);

if (!$this->checkObjInArr($monthObj, "yearMonths")) {
array_push($this->yearMonths, $monthObj);
array_unshift($this->yearMonths, $monthObj);
}

$blog = array_merge($blog, $blogProp);
array_push($this->blogs, $blog);
}
Expand Down
5 changes: 3 additions & 2 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
4.支持将img目录改到blog/img目录,方便统一在blog中管理资源
5.添加缓存配置enableCache,默认开启缓存
6.页面缓存分主题,切换主题不需要清理缓存了
7.归档的月份按倒序排序

说明:
之前的版本图片和markdown文件是分别放在img和blog目录,这样不太方便管理和备份。
这个版本,我们统一放在blog目录中,图片推荐放在blog/img目录中,在markdown中使用相对路径引用图片。
2.2之前的版本图片和markdown文件是分别放在img和posts目录,这样不太方便管理和备份。
2.2版本开始,我们统一放在blog目录中,图片推荐放在blog/img目录中,在markdown中使用相对路径引用图片。
如果你不想修改以前markdown中的路径,你仍然可以使用根目录下的img文件夹中的图片,只是我们推荐以后的图片都放到blog目录中与markdown文件一起管理。

0 comments on commit 303ae5e

Please sign in to comment.