Skip to content

Releases: ikhsan3adi/absensi-sekolah-qr-code

v1.7.0

27 Jul 04:02
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.0...v1.7.0

v1.6.0

15 Jul 11:58
abb8806
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.7...v1.6.0

v1.5.7

03 Jul 16:47
ba2a6ee
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.6...v1.5.7

v1.5.6

23 Apr 06:55
132dc87
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.5...v1.5.6

v1.5.5

22 Apr 07:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.3...v1.5.5

v1.5.3

25 Dec 02:58
Compare
Choose a tag to compare

Hotfix

What's Changed

  • Fix Internal Server Error saat Scan QR Code disebabkan kesalahan namespace pada enum Kehadiran dan TipeUser di app/Libraries/enums

Full Changelog: v1.5.2...v1.5.3

v1.5.2 Fix Scan QR Siswa Error

03 Dec 11:35
Compare
Choose a tag to compare

Hotfix

What's Changed

  • Fix muncul pesan Internal Server Error saat melakukan Scan QR Code Siswa namun absen berhasil masuk.

    • Error disebabkan pemindahan kolom jurusan ke tabel terpisah namun belum melakukan join ke tabel jurusan untuk memberi informasi di halaman scan QR Code.
    • Issue terkait: #33 #18 #24
    • Komentar terkait yang membantu:
  • Fix error saat Generate QR Code jika nama siswa/guru mengandung tanda kutip (')

Full Changelog: v1.5.1...v1.5.2

v1.5.1

30 Nov 05:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.0...v1.5.1

v1.5.0

19 Aug 03:28
Compare
Choose a tag to compare

What's Changed

Menambahkan halaman kelas & jurusan

Screenshot from 2023-08-19 10-20-02

Tabel jurusan

Screenshot from 2023-08-19 10-22-59

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

New Contributors

Full Changelog: v1.0.5...v1.5.0

v1.0.5

05 Aug 10:27
Compare
Choose a tag to compare

Fix QR Code Generator

  • Fix QR Generator tidak menghasilkan qr code image

Full Changelog: v1.0.3...v1.1.0