From 538e0019d9fd6a5c12e7c7620ac73562e274f372 Mon Sep 17 00:00:00 2001 From: George Tay Date: Sun, 14 Jul 2024 23:28:09 +0800 Subject: [PATCH 1/3] [#2231] CI failing for macos-11 JDK 11 (#2236) Upgrade macOS GitHub Runner Version --- .github/workflows/integration.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0874303fb1..f3e3d03a24 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -21,7 +21,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022] + # Deprecation Notice: MacOS 12 will be deprecated by the end of 2024 + os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, windows-2019, windows-2022] runs-on: ${{ matrix.os }} env: HOMEBREW_NO_AUTO_UPDATE: 1 # Prevent time-consuming brew update From 90533da8ca9cd5cc187223f90ee4c4c54fe5afce Mon Sep 17 00:00:00 2001 From: logical-1985516 <107944536+logical-1985516@users.noreply.github.com> Date: Tue, 16 Jul 2024 16:06:24 +0800 Subject: [PATCH 2/3] [#1981] Change link to link to all first timer issues (#2233) The link under 'Workflow' section of DG only links to frontend and backend issues. Let's link them to all types of first timer issues so that new contributors do not miss out on some other types of issues, such as DevOps. --- docs/dg/workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dg/workflow.md b/docs/dg/workflow.md index af167be466..9e71e0ebba 100644 --- a/docs/dg/workflow.md +++ b/docs/dg/workflow.md @@ -26,7 +26,7 @@ Our workflow is mostly based on the guidelines given at se-education.org/guides. ## Find the suitable pull requests -* If you are contributing to RepoSense for the first time, you can check the list of [backend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Aa-Backend+label%3Ad.FirstTimers) or [frontend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers+label%3Aa-FrontEnd) for first timers. +* If you are contributing to RepoSense for the first time, you can check the list of [issues that are suitable for first timers](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers). From dd0c13e32f8805700c24252bfa82e5d86f8814d8 Mon Sep 17 00:00:00 2001 From: jedkohjk <110604064+jedkohjk@users.noreply.github.com> Date: Wed, 24 Jul 2024 23:32:23 +0800 Subject: [PATCH 3/3] Align right panel with welcome title (#2229) Align panel titles The title text on the left panel is not flushed to the top because it is a header. There are several types of title texts on the right panel. Initially, some were headers and others were not. There was padding to ensure that those which were not headers were not flushed to the top. However, this meant that those headers were lower than expected and not aligned. To align the texts, let us remove the padding for the right panel and set the first element on the right panel as a header. --- frontend/src/styles/panels.scss | 2 +- frontend/src/views/c-authorship.vue | 17 +++++++++-------- frontend/src/views/c-zoom.vue | 23 ++++++++++++----------- 3 files changed, 22 insertions(+), 20 deletions(-) diff --git a/frontend/src/styles/panels.scss b/frontend/src/styles/panels.scss index 7432371be2..42d13b401e 100644 --- a/frontend/src/styles/panels.scss +++ b/frontend/src/styles/panels.scss @@ -2,7 +2,7 @@ @import 'z-indices'; .panel-padding { - padding: 2rem 1.5rem 2rem 2.2rem; + padding: 0 1.5rem 2rem 2.2rem; } #app-wrapper { diff --git a/frontend/src/views/c-authorship.vue b/frontend/src/views/c-authorship.vue index 7e3ef1007d..104ccc5cc6 100644 --- a/frontend/src/views/c-authorship.vue +++ b/frontend/src/views/c-authorship.vue @@ -1,13 +1,14 @@