Releases: ikhsan3adi/absensi-sekolah-qr-code
v1.7.0
What's Changed
- Tahun ajaran dinamis by @ikhsan3adi in #111
- Menggunakan format tanggal bahasa indonesia di laporan by @ikhsan3adi in #112
- Refactor directory structure and update script paths by @reactmore in #118
- fix kelas & jurusan page mobile ui overflow by @ikhsan3adi in #122
- fix urutan siswa salah saat generate laporan by @ikhsan3adi in #123
- fix jurusan page ui by @nanda443 in #124
- Add : General Settings School by @reactmore in #125
New Contributors
- @reactmore made their first contribution in #118
- @nanda443 made their first contribution in #124
Full Changelog: v1.6.0...v1.7.0
v1.6.0
What's Changed
- Update siswa & guru without updating
unique_code
by @ikhsan3adi in #86 - Remove unnecessary route & html by @ikhsan3adi in #90
- fix: Dynamic alert bg color by @ikhsan3adi in #91
- feat: QRCode download by @ikhsan3adi in #93
- Create QRGeneratorTest.php by @ikhsan3adi in #92
- chore: Create siswa & guru seeder by @ikhsan3adi in #96
- docs: Update readme & screenshots by @ikhsan3adi in #97
- style: Remove action button text by @ikhsan3adi in #98
- refactor test & QR Generator by @ikhsan3adi in #99
- feat: Tambah total status kehadiran di laporan by @ikhsan3adi in #100
- fix: View not found @ kelas & jurusan forms by @ikhsan3adi in #104
- fix: Dashboard error by @ikhsan3adi in #105
- refactor view namings by @ikhsan3adi in #103
- refactor form variable namings by @ikhsan3adi in #106
Full Changelog: v1.5.7...v1.6.0
v1.5.7
What's Changed
- Fix QR generator by @ikhsan3adi in #63
- Restore ability to use spark serve command by @ikhsan3adi in #63
- Complete Community Standard by @ikhsan3adi in #68
- Generate QR code without logo by default by @ikhsan3adi in #71
- Use https://github.com/ikhsan3adi/myth-auth to fix user registration by @ikhsan3adi in #81
- Update pengaturan nama sekolah dan override Myth:Auth auth config by @janglapuk in #84
New Contributors
- @janglapuk made their first contribution in #84
Full Changelog: v1.5.6...v1.5.7
v1.5.6
What's Changed
- fix: Replace .env with .env.example by @ikhsan3adi in #61
Full Changelog: v1.5.5...v1.5.6
v1.5.5
What's Changed
- Update issue templates by @ikhsan3adi in #48
- Update README.md by @ikhsan3adi in #51
- Bump codeigniter4/framework from 4.4.3 to 4.4.7 by @dependabot in #57
- Upgrade codeigniter to 4.5.1 by @ikhsan3adi in #59
- Add Continuous Integration workflow by @ikhsan3adi in #60
Full Changelog: v1.5.3...v1.5.5
v1.5.3
Hotfix
What's Changed
- Fix Internal Server Error saat Scan QR Code disebabkan kesalahan namespace pada enum
Kehadiran
danTipeUser
diapp/Libraries/enums
Full Changelog: v1.5.2...v1.5.3
v1.5.2 Fix Scan QR Siswa Error
Hotfix
What's Changed
-
Fix muncul pesan
Internal Server Error
saat melakukan Scan QR Code Siswa namun absen berhasil masuk. -
Fix error saat Generate QR Code jika nama siswa/guru mengandung tanda kutip
(')
- Issue terkait: #15
- Komentar terkait yang membantu:
Full Changelog: v1.5.1...v1.5.2
v1.5.1
What's Changed
-
Bump codeigniter4/framework from 4.3.5 to 4.4.3 by @dependabot in #22
-
Fix error saat menjalankan
php spark serve
disebabkan auto update ke versi codeigniter 4.4.0+
Referensi: https://codeigniter4.github.io/userguide/installation/upgrade_440.html#mandatory-file-changes
Full Changelog: v1.5.0...v1.5.1
v1.5.0
What's Changed
Menambahkan halaman kelas & jurusan
Tabel jurusan
Fix bug saat generate laporan (setelah menambahkan kelas baru)
Error: undefined array key
File: app/Views/admin/generate-laporan/generate-laporan.php
Line: 44
Sebelum:
<?php foreach ($kelas as $value) : ?>
<?php
$idKelas = $value['id_kelas'];
$kelas = "{$value['kelas']} {$value['jurusan']}";
$jumlahSiswa = count($siswaPerKelas[$idKelas - 1]);
?>
<option value="<?= $idKelas; ?>">
<?= "$kelas - {$jumlahSiswa} siswa"; ?>
</option>
<?php endforeach; ?>
Sesudah:
<?php foreach ($kelas as $key => $value) : ?> // tambah $key =>
<?php
$idKelas = $value['id_kelas'];
$kelas = "{$value['kelas']} {$value['jurusan']}";
$jumlahSiswa = count($siswaPerKelas[$key]); // jadi $key
?>
<option value="<?= $idKelas; ?>">
<?= "$kelas - {$jumlahSiswa} siswa"; ?>
</option>
<?php endforeach; ?>
Lainnya
- Add new feature: responsive camera scaning. by @kevindoni in #13
- Scan page improved by @ikhsan3adi in #14
New Contributors
- @kevindoni made their first contribution in #13
- @ikhsan3adi made their first contribution in #14
Full Changelog: v1.0.5...v1.5.0
v1.0.5
Fix QR Code Generator
- Fix QR Generator tidak menghasilkan qr code image
Full Changelog: v1.0.3...v1.1.0