Releases: songday/blog-rs
Releases · songday/blog-rs
Version 0.5.6
Release v0.5.5
Breaking change
Changed tables name
The old version database can be fixed by these DDL/DML
ALTER TABLE tag RENAME TO tags;
ALTER TABLE tag_usage RENAME TO tags_usage;
ALTER TABLE post RENAME TO posts;
ALTER TABLE settings DROP COLUMN domain;
ALTER TABLE settings DROP COLUMN copyright;
ALTER TABLE settings DROP COLUMN license;
ALTER TABLE settings RENAME COLUMN name TO item;
ALTER TABLE settings RENAME COLUMN admin_password TO content;
UPDATE settings SET item='admin_password' WHERE id=1;
Others:
- Added access log (printed in console)
TLS
supported, thanks to flyingblackshark- etc.
Release v0.5.2
-
现在所有的博客,可以导出为
Hugo
模板 -
通过博客列表进入后,再返回,列表数据不会回到第一页
-
All posts now can be exported to
Hugo
-
From list page to detail page, and then back, data of list page won't show the 1st page
Release v0.5.1
现在删除博客的同时,博客题图也会被删除
Delete post with its images
Version 0.5.0
Refined pagination, post writing and detail page
完善了翻页,编写博客以及查看博客