From e51ba1164e0b6a4267b18c89866a385ddeae99e5 Mon Sep 17 00:00:00 2001 From: Aliu Salaudeen Date: Thu, 6 Mar 2025 10:15:45 +0100 Subject: [PATCH 1/5] rename IQGPT to AIDEN --- src/components/{iqgpt-logo.tsx => aiden-logo.tsx} | 2 +- src/data/SidebarData.ts | 6 +++--- src/messages/en.json | 2 +- src/messages/kr.json | 2 +- src/messages/zh.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename src/components/{iqgpt-logo.tsx => aiden-logo.tsx} (99%) diff --git a/src/components/iqgpt-logo.tsx b/src/components/aiden-logo.tsx similarity index 99% rename from src/components/iqgpt-logo.tsx rename to src/components/aiden-logo.tsx index 55db6737..ba376cac 100644 --- a/src/components/iqgpt-logo.tsx +++ b/src/components/aiden-logo.tsx @@ -1,7 +1,7 @@ import { Icon, IconProps } from '@chakra-ui/react' import React from 'react' -export const IqgptLogo = (props: IconProps) => { +export const AIDENLogo = (props: IconProps) => { return ( Date: Fri, 7 Mar 2025 17:27:45 +0100 Subject: [PATCH 2/5] update git workflow --- .github/workflows/push.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 8d9c98c4..335bdba9 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -6,22 +6,22 @@ jobs: timeout-minutes: 10 steps: - name: Setup Node.js environment - uses: actions/setup-node@v1.4.4 + uses: actions/setup-node@v3 with: - cache: yarn - cache-dependency-path: yarn.lock node-version: 20 + cache: 'yarn' + cache-dependency-path: yarn.lock - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v2 + - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} From 6d944a03ca091a3e6ce1a142124fbb9f520773f5 Mon Sep 17 00:00:00 2001 From: Aliu Salaudeen Date: Fri, 7 Mar 2025 17:30:12 +0100 Subject: [PATCH 3/5] resolve outdated browserslist warning --- yarn.lock | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7fe20800..aefc1868 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4347,15 +4347,10 @@ camelize@^1.0.0: resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== -caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503: - version "1.0.30001512" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001512.tgz#7450843fb581c39f290305a83523c7a9ef0d4cb4" - integrity sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw== - -caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: - version "1.0.30001680" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" - integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: + version "1.0.30001702" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz" + integrity sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA== chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2: version "2.4.2" From dd6198f8d5182acc3a7444c71b2efbd5442ae7f6 Mon Sep 17 00:00:00 2001 From: Aliu Salaudeen Date: Fri, 7 Mar 2025 17:32:33 +0100 Subject: [PATCH 4/5] resolve issue with cache dir --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 335bdba9..052f0cc6 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -19,7 +19,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) From 9e8525ec462b64d41ce30eb92a2810f92d352daf Mon Sep 17 00:00:00 2001 From: Aliu Salaudeen Date: Fri, 7 Mar 2025 17:39:12 +0100 Subject: [PATCH 5/5] still on resolving cache-dependency-path issue --- .github/workflows/push.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 052f0cc6..779ad146 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -5,6 +5,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: + - name: Check out code + uses: actions/checkout@v3 + with: + fetch-depth: 1 + - name: Setup Node.js environment uses: actions/setup-node@v3 with: @@ -12,11 +17,6 @@ jobs: cache: 'yarn' cache-dependency-path: yarn.lock - - name: Check out code - uses: actions/checkout@v3 - with: - fetch-depth: 1 - - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)"