Files
aibuddytool/resources/views/admin/changelog.blade.php
Charles T 500714d7bf Update (config): enable canonical
Update (migration): Add category type
Add (admin): Add post cliffhanger
2023-08-03 19:46:32 +08:00

48 lines
1.9 KiB
PHP

@extends('layouts.admin.app')
@section('content')
<div class="container-xl">
<!-- Page title -->
<div class="page-header d-print-none">
<h2 class="page-title">
{{ __('Changelog') }}
</h2>
</div>
</div>
<div class="page-body">
<div class="container-xl">
<div class="card">
<div class="card-body">
<p class="fw-bold mb-0">Change Log 3/8/2023 7.43pm</p>
<ul>
<li>(Improvement) Improve post UI outside front</li>
<li>(Fix) SEO problems</li>
<li>(Feature) Add cliffhanger field in post</li>
</ul>
<p class="fw-bold mb-0">Change Log 2/8/2023 12.03am</p>
<ul>
<li>(Feature) Add Delete Forever button</li>
<li>(Feature) Add Index to Search Engines button</li>
<li>(Feature) Auto set author on new post</li>
<li>(Feature) Only publish status must fill in all post fields, others status can save with minimum
title and
slug only</li>
<li>(Fix) Post list has timezone error</li>
</ul>
<p class="fw-bold mb-0">Change Log 1/8/2023 10.35pm</p>
<ul>
<li>(Feature) Auto set category on new post</li>
<li>(Feature) Auto set author on new post</li>
<li>(Feature) Only publish status must fill in all post fields, others status can save with minimum
title and
slug only</li>
<li>(Fix) Post list has timezone error</li>
</ul>
</div>
</div>
</div>
</div>
@endsection