Skip to content

Commit

Permalink
Rilis v2411.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vickyrolanda committed Nov 20, 2024
1 parent 8189970 commit 71b9cec
Show file tree
Hide file tree
Showing 45 changed files with 676 additions and 360 deletions.
31 changes: 31 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Gunakan container PHP dan Apache dengan versi 8.1.30
FROM php:8.1.30-apache

# Instal dependensi sistem dan ekstensi PHP
# gd: Memerlukan libpng-dev, libjpeg-dev, libfreetype6-dev
# tidy: Memerlukan libzip-dev, libtidy-dev
# zip: Memerlukan libzip-dev
RUN apt-get update && apt-get install -y \
libpng-dev \
libjpeg-dev \
libfreetype6-dev \
libzip-dev \
libtidy-dev \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) \
gd \
exif \
mysqli \
pdo \
pdo_mysql \
tidy \
zip

# Mengatur direktori kerja
WORKDIR /var/www/html

# Mengekspos port 80 untuk Apache
EXPOSE 80

# Start Apache
CMD ["apache2-foreground"]
11 changes: 6 additions & 5 deletions Modules/Anjungan/Models/Anjungan.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@

class Anjungan extends Gawai
{
public function setTipeAttribute($value)
{
$this->attributes['tipe'] = self::ANJUNGAN;
}
protected $attributes = [
'tipe' => self::ANJUNGAN,
];

/**
* Apply a global scope to only include active status.
* The attributes that should be appended to the model.
*
* @var array
*/
protected static function booted()
{
Expand Down
2 changes: 1 addition & 1 deletion app/Libraries/TinyMCE.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/Libraries/TinyMCE/KodeIsianGambar.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/Models/BaseModel.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/Models/Gawai.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/Services/LaporanPenduduk.php

Large diffs are not rendered by default.

15 changes: 13 additions & 2 deletions catatan_rilis.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Di rilis ini, versi 2411.0.1 berisi [untuk diisi] dan perbaikan lain yang diminta Komunitas SID.
Di rilis ini, versi 2411.0.2 berisi [untuk diisi] dan perbaikan lain yang diminta Komunitas SID.

Terima kasih pada [untuk diisi] telah ikut berkontribusi.

Expand All @@ -16,6 +16,14 @@ Terima kasih pada [untuk diisi] telah ikut berkontribusi.
10. [#8716](https://github.com/OpenSID/OpenSID/issues/8716) Perbaikan menampilkan menu dengan status tidak aktif.
11. [#8718](https://github.com/OpenSID/OpenSID/issues/8718) Perbaikan surat layanan bawaan yang duplikasi.
12. [#8609](https://github.com/OpenSID/OpenSID/issues/8609) Perbaikan redirect tambah/ubah menu yang sudah ada.
13. [#8727](https://github.com/OpenSID/OpenSID/issues/8727) Perbaikan load helper pada modules.
14. [#8740](https://github.com/OpenSID/OpenSID/issues/8740) Perbaikan akses modul anjungan.
15. [#8741](https://github.com/OpenSID/OpenSID/issues/8741) Perbaikan menampilkan data statistik penduduk kategori ktp dan kia.
16. [#8733](https://github.com/OpenSID/OpenSID/issues/8733) Perbaikan cetak buku ktp dan kk.
17. [#8742](https://github.com/OpenSID/OpenSID/issues/8742) Perbaikan kode isian qrcode pada pratijau surat.
18. [#8744](https://github.com/OpenSID/OpenSID/issues/8744) Perbaikan iformasi pada form balas pesan.
19. [#8681](https://github.com/OpenSID/OpenSID/issues/8681) Perbaikan qrcode pada lampiran surat nikah.
20. [#8745](https://github.com/OpenSID/OpenSID/issues/8745) Perbaikan hak akses pada modul keluarga, catatan peristwa dan sinergi program.


### TEKNIS
Expand All @@ -28,4 +36,7 @@ Terima kasih pada [untuk diisi] telah ikut berkontribusi.
6. [#8665](https://github.com/OpenSID/OpenSID/issues/8665) Penyesuaian menampilkan favicon.ico.
7. [#8593](https://github.com/OpenSID/OpenSID/issues/8593) Penyesuaian modul pertanahan menggunakan view blade dan ORM laravel.
8. [#8703](https://github.com/OpenSID/OpenSID/issues/8703) Penyesuaian lokasi dan format file impor.
9. [#8705](https://github.com/OpenSID/OpenSID/issues/8705) Penyesuaian widget pemesanan pada layanan pelanggan, status idm dan stunting.
9. [#8705](https://github.com/OpenSID/OpenSID/issues/8705) Penyesuaian widget pemesanan pada layanan pelanggan, status idm dan stunting.
10. [#8714](https://github.com/OpenSID/OpenSID/issues/8714) Penghapusan contoh penduduk pada format impor penduduk.
11. [#8726](https://github.com/OpenSID/OpenSID/issues/8726) Penyesuaian notifikasi impor data penduduk.
12. [#8591](https://github.com/OpenSID/OpenSID/issues/8591) Penyesuaian lingkungan pengembangan menggunakan docker container.
Loading

0 comments on commit 71b9cec

Please sign in to comment.