Skip to content

Commit

Permalink
(#287) Rilis v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
totoprayogo1916 authored Dec 2, 2022
1 parent 11f7305 commit 8b94573
Show file tree
Hide file tree
Showing 6 changed files with 158 additions and 1,123 deletions.
15 changes: 11 additions & 4 deletions docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,15 @@ function sidebarGuide() {
text: "Migrasi/Upgrade",
collapsible: true,
items: [
{text: "v4.0.0 ke v4.5.0", link: "/panduan/migrasi-400-450",},
{text: "v3.11.0 ke v4.0.0", link: "/panduan/migrasi-dari-v3110",},
{text: "v3.10-CRI ke v3.11.0", link: "/panduan/migrasi-dari-v310-cri",},
{ text: "v4.0.0 ke v4.5.x", link: "/panduan/migrasi-400-450" },
{
text: "v3.11.0 ke v4.0.0",
link: "/panduan/migrasi-dari-v3110",
},
{
text: "v3.10-CRI ke v3.11.0",
link: "/panduan/migrasi-dari-v310-cri",
},
],
},
];
Expand All @@ -90,7 +96,8 @@ function sidebarChangelog() {
collapsible: false,
items: [
// { text: "dev (pengembangan)", link: "/changelog/dev" },
{ text: "v4.5.0 (terbaru)", link: "/changelog/450" },
{ text: "v4.5.1 (terbaru)", link: "/changelog/451" },
{ text: "v4.5.0", link: "/changelog/450" },
{ text: "v4.0.0", link: "/changelog/4-0-0" },
{ text: "v3.11.0", link: "/changelog/3-11-0" },
{ text: "v3.10-CRI", link: "/changelog/3-10-cri" },
Expand Down
23 changes: 23 additions & 0 deletions docs/changelog/451.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "Changelog SID v4.5.1"
---

# SID Versi v4.5.1

Rilis: 2 Desember 2022

## :rocket: Peningkatan
- Menerapkan fungsi `view()` untuk menggantikan `$this->load->view()`. Dimaksudkan
agar proses upgrade selanjutnya lebih mudah.
- Optimalkan penggunaan `base_url()` dan `site_url()`.

## :hammer_and_wrench: Perbaikan
- Menggabungkan pemanggilan config desa langsung lewat `config_model`.
- Menghapus fungsi yang tidak digunakan pada helpers dan models.

## :capital_abcd: Lain-lain
- Menghapus konstruktor kosong.
- Menghapus `donjo-app/models/Apis.php` karena kemungkinan tidak digunakan.

## :link: Link
- [Unduh v4.5.1](https://github.com/ataslangit/sistem-informasi-desa/releases/4.5.1)
6 changes: 0 additions & 6 deletions docs/changelog/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,10 @@ title: "Changelog SID dev"
Rilis: __belum riilis__

## :rocket: Peningkatan
- Menerapkan fungsi `view()` untuk menggantikan `$this->load->view()`. Dimaksudkan
agar proses upgrade selanjutnya lebih mudah.

## :hammer_and_wrench: Perbaikan
-

## :capital_abcd: Lain-lain
- Menghapus konstruktor kosong
- Menggabungkan pemanggilan config desa langsunglewat `config_model`
- Menghapus `donjo-app/models/Apis.php` karena kemungkinan tidak digunakan

## :link: Link

2 changes: 2 additions & 0 deletions docs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Berikut adalah log perubahan dari SID.

- [dev](/changelog/dev)<br>
<small>belum rilis</small>
- [v4.5.1](/changelog/451)<br>
<small>Rilis 2 Desember 2022</small>
- [v4.5.0](/changelog/450)<br>
<small>Rilis 7 November 2022</small>
- [v4.0.0](/changelog/4-0-0)<br>
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/config/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@
defined('EXIT__AUTO_MIN') || define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code

defined('VERSI_SID') || define('VERSI_SID', '4.5.0');
defined('VERSI_SID') || define('VERSI_SID', '4.5.1');
Loading

0 comments on commit 8b94573

Please sign in to comment.