From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED, URIBL_DBL_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1695548749; bh=17e54OdJjzW7l2o3qtpYJ+l/cw2KCk5Vey/7TFU96KE=; h=From:To:Cc:Subject:Date; b=FnCVe50rhWYtFcK59+4sX9g6dvmdNOV/LVMhvnb5IN1to5tcrJJnccg2G2nTBkUZB 01NDioln8TXShbl5R5jjuBYa4p/V866uRWrJ+8lWJ332Lk4pdYhAgLFM50o4lU8H+q lNwTVtzhPqoys3sVDPfwwGIXFzCkgo1ol4lIEGrnsks0VsN+qG04UmKk76GHsNHe+j MNij1TIYcB24d1F+21Ka3NtrL6+NkXBUMLntsGsUHsunhBuOXehIRNadj9M4pFf7cr zgdp9+khKamdhD1WxeiKsh2gXw1C+KuiAM+z2ExqIMIoGOOtwKi10DUzQZqvvVscgF Dndjc0zDdUUVA== Received: from localhost.localdomain (unknown [101.128.125.146]) by gnuweeb.org (Postfix) with ESMTPSA id CEBEF24B67E; Sun, 24 Sep 2023 16:45:47 +0700 (WIB) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , Arthur Lapz , Memet Zx , GNU/Weeb Mailing List Subject: [PATCH v3 00/11] Refactoring and Add New Features Date: Sun, 24 Sep 2023 16:45:21 +0700 Message-Id: <20230924094532.1662-1-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This series contains changes for commit 11/11: v3: - Removed complexity from the `hashCode()` function. - Add missing semicolons and wrong semicolon placement. - Change transition duration for chat bubble UI highlighting when clicked a reply UI button (line 452). - Add `line-clamp-1` for reply user profile name UI (line 578). Let me know if there is still a mistake and please test it too if there is a bug on the UI. Muhammad Rizki (11): style: remove extra newline at end of file feat(static/img): add `profile-cover.jpg` refactor(page): improve page design and add profile image cover feat(page): improve UX for copying text chore(page): add newlines to enhance Developer Experience feat(page): add GNUWeeb member list UI feat(page): add `getOrgMembers()` function feat(page): add `renderMemberList()` function feat(page): add initial UI for displaying recent group messages feat(css): add initial CSS class styles for chat bubbles feat(page): implement chat bubble message rendering index.html | 713 +++++++++++++++++++++++++++-------- static/img/profile-cover.jpg | Bin 0 -> 196121 bytes style.css | 53 +++ 3 files changed, 609 insertions(+), 157 deletions(-) create mode 100644 static/img/profile-cover.jpg base-commit: f7a07f6fc9fb837a11d01779b4af524ee036fcbb -- Muhammad Rizki