diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 8e3fcaea11..e83ba9921f 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -12,6 +12,7 @@ on: - "packages/nocodb/**" - ".github/workflows/ci-cd.yml" pull_request: + types: [opened, reopened, synchronize, ready_for_review, labeled] branches: [develop] paths: - "packages/nc-gui/**" @@ -21,7 +22,7 @@ on: jobs: cypress-restTableOps-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -66,7 +67,7 @@ jobs: retention-days: 2 cypress-restViews-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -111,7 +112,7 @@ jobs: retention-days: 2 cypress-restRoles-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -156,7 +157,7 @@ jobs: retention-days: 2 cypress-restMisc-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -201,7 +202,7 @@ jobs: retention-days: 2 cypress-xcdb-restTableOps-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -246,7 +247,7 @@ jobs: retention-days: 2 cypress-xcdb-restViews-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -291,7 +292,7 @@ jobs: retention-days: 2 cypress-xcdb-restRoles-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -336,7 +337,7 @@ jobs: retention-days: 2 cypress-xcdb-restMisc-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -381,7 +382,7 @@ jobs: retention-days: 2 cypress-pg-restTableOps-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -426,7 +427,7 @@ jobs: retention-days: 2 cypress-pg-restViews-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -471,7 +472,7 @@ jobs: retention-days: 2 cypress-pg-restRoles-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -516,7 +517,7 @@ jobs: retention-days: 2 cypress-pg-restMisc-run-cache: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -561,7 +562,7 @@ jobs: retention-days: 2 cy-quick-sqlite: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -607,7 +608,7 @@ jobs: retention-days: 2 cy-quick-pg: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -652,7 +653,7 @@ jobs: retention-days: 2 unit-tests: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 @@ -692,7 +693,7 @@ jobs: run: npm run test:unit cypress-db-independent: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} + if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node uses: actions/setup-node@v1 diff --git a/packages/nc-gui/assets/img/icons/512x512-trans.png b/packages/nc-gui/assets/img/icons/512x512-trans.png index c29553653d..21b317781d 100644 Binary files a/packages/nc-gui/assets/img/icons/512x512-trans.png and b/packages/nc-gui/assets/img/icons/512x512-trans.png differ diff --git a/packages/nc-gui/assets/img/icons/512x512.png b/packages/nc-gui/assets/img/icons/512x512.png index 3ea62a1431..70af492648 100644 Binary files a/packages/nc-gui/assets/img/icons/512x512.png and b/packages/nc-gui/assets/img/icons/512x512.png differ diff --git a/packages/nc-gui/components/general/NocoIcon.vue b/packages/nc-gui/components/general/NocoIcon.vue index ac73078821..b7d54dd9e9 100644 --- a/packages/nc-gui/components/general/NocoIcon.vue +++ b/packages/nc-gui/components/general/NocoIcon.vue @@ -8,7 +8,7 @@ const { width = 90, height = 90 } = defineProps() diff --git a/packages/nc-gui/components/general/PreviewAs.vue b/packages/nc-gui/components/general/PreviewAs.vue index b99623b256..4faf78f335 100644 --- a/packages/nc-gui/components/general/PreviewAs.vue +++ b/packages/nc-gui/components/general/PreviewAs.vue @@ -82,7 +82,7 @@ watch(previewAs, (newRole) => {
-
+
{{ $t('general.close') }}
@@ -91,7 +91,7 @@ watch(previewAs, (newRole) => {