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=1695416330; bh=Dh/mEMEHduO1U/L7L+aG0VLiH+JHJHvjYJCOMnu5N+M=; h=From:To:Cc:Subject:Date; b=BP+zSG1N5F3/QkgSRIKhr+kAHBQ7EiY6mssDf6SicshegU+dJI0CDC/hf97wCb67U UddK1hYj601cF7E6QU94e3YUHEoQcOLKCzswCcfh5jSy/XqrTUJRMotqFiCa2qqIzX p1iOJj+EQWar1UkVFP5K4p172VFi7GpigwKQpAt+Nu+0ZC2qYQByGkzZneeU9AWpXh UMEqFcRTllY8DyN/tvPANnF33aLmB1GmZxqtm9RciUIe2bfrHvM6392DP/4E8lLb7f FyxFyw+muq+oDP2HLPkfq0Gn/MvQ/l16MvxA73w0cXhlqF9OwosrFWUhVvT0EkInqf KbPi436rTG62A== Received: from localhost.localdomain (unknown [175.158.50.129]) by gnuweeb.org (Postfix) with ESMTPSA id 26B4324B67C; Sat, 23 Sep 2023 03:58: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 v1 00/11] Refactoring and Add New Features Date: Sat, 23 Sep 2023 03:58:06 +0700 Message-Id: <20230922205817.107-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 patch series introduces new features and fixes a minor bug. The bug related to rounded profile pictures in the previous version has been fixed. For detailed information on each commit, please see the individual commits below. Fixes: 51471b2e130a ("feat(index): add main page) Other explanations were provided in each commit. Thanks! 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 | 719 +++++++++++++++++++++++++++-------- static/img/profile-cover.jpg | Bin 0 -> 196121 bytes style.css | 53 +++ 3 files changed, 615 insertions(+), 157 deletions(-) create mode 100644 static/img/profile-cover.jpg base-commit: f7a07f6fc9fb837a11d01779b4af524ee036fcbb -- Muhammad Rizki