48 lines
1.9 KiB
PHP
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
|