Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
eee70e1
v2.0.0 (#934)
chilingling Dec 12, 2024
923ad6c
fix: slot should extra params (#919)
chilingling Dec 12, 2024
e1806b3
feat(theme): change datasource and setting panel theme variable
wenmine Dec 13, 2024
0a308db
feat: support checking all blocks in material add block panel (#923)
gene9831 Dec 13, 2024
5e6e6a5
fix: optimize bind-i18n styles (#925)
gene9831 Dec 13, 2024
6b20d26
fix(style-panel): resolve style-panel styles issue (#924)
betterdancing Dec 13, 2024
230b334
fix: preview should not overwrite mainFile (#920)
chilingling Dec 16, 2024
eb76a70
fix: Modify UI review comments (#916)
xuanlid Dec 17, 2024
7360072
feat: Support merging categories and groups (#907)
gene9831 Dec 19, 2024
9f9447d
feat:UI specification adjustment (#938)
lichunn Dec 19, 2024
cff74bb
feat: schemaDataAsync (#885)
chilingling Dec 20, 2024
7716dda
feat: blockCompiler (#906)
chilingling Dec 20, 2024
9027902
Fix: preview URL (#966)
yy-wow Dec 27, 2024
8fabfcc
fix: fix param type error when create group (#985)
gene9831 Jan 2, 2025
a6b7892
chore: update version to 2.1.0-rc.0 (#947)
hexqi Dec 20, 2024
18bb652
feat: add pull request base branch release/* (#954)
chilingling Dec 24, 2024
403620b
fix: chore bug fix for v2.1 (#953)
chilingling Dec 24, 2024
028b808
fix: resolve some schema update issue (#956)
chilingling Dec 25, 2024
a05459b
fix: resolve warnings (#957)
chilingling Dec 25, 2024
77ec192
fix: time asc add i18n failed (#976)
chilingling Dec 31, 2024
132f3e8
fix: basePropsGroup use deepclone prevent clone array itself (#975)
chilingling Dec 31, 2024
80359a1
fix: generate code accessor scenario (#972)
chilingling Dec 31, 2024
af552d0
fix: blockPublishLogic (#973)
chilingling Dec 31, 2024
55d1f75
fix: blockCompile get correct version (#964)
chilingling Dec 31, 2024
c6ce763
fix:modify style (#981)
zhangjuncao Jan 2, 2025
884f988
fix: optimize save code button marker position (#982)
SonyLeo Jan 2, 2025
dc71923
fix: update cli template resolve preview error (#983)
hexqi Jan 2, 2025
ff5048d
fix: block switch select property failed (#984)
chilingling Jan 2, 2025
7847ab5
fix: resolve block property issue (#971)
chilingling Jan 2, 2025
e3f3339
fix: cannot publish current editing block (#987)
chilingling Jan 2, 2025
4fea04b
fix: preview page breadcrumb don't exist useBlock method and preview …
chilingling Jan 2, 2025
b38af9f
v2.1.0
chilingling Jan 2, 2025
15597a1
fix: Modify UI review comments (#941)
xuanlid Jan 7, 2025
a14a508
fix:Modify panel shadow color (#943)
xuanlid Jan 7, 2025
3bc9d33
Merge remote-tracking branch 'upstream/refactor/develop' into resolve…
rhlin Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
60 changes: 30 additions & 30 deletions .github/workflows/push-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,40 +4,40 @@ on:
push:
branches: []
pull_request:
branches: [develop,main, refactor/develop]
branches: [develop, main, refactor/develop, release/*]

jobs:
push-check:
runs-on: ubuntu-latest # windows-latest || macos-latest
runs-on: ubuntu-latest # windows-latest || macos-latest

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies
run: pnpm i
- name: Install dependencies
run: pnpm i

- name: Get changed files
id: get_changed_files
uses: tj-actions/changed-files@v41
with:
files: |
**.js
**.vue
**.jsx
- name: Run ESLint
run: npx eslint ${{steps.get_changed_files.outputs.all_changed_files}}
- name: Run Build
run: pnpm run build:plugin && pnpm run build:alpha > build-alpha.log 2>&1
- name: Get changed files
id: get_changed_files
uses: tj-actions/changed-files@v41
with:
files: |
**.js
**.vue
**.jsx
- name: Run ESLint
run: npx eslint ${{steps.get_changed_files.outputs.all_changed_files}}
- name: Run Build
run: pnpm run build:plugin && pnpm run build:alpha > build-alpha.log 2>&1

- name: Upload build logs
uses: actions/upload-artifact@v4
with:
name: build-alpha-log
path: build-alpha.log
- name: Upload build logs
uses: actions/upload-artifact@v4
with:
name: build-alpha-log
path: build-alpha.log
2 changes: 1 addition & 1 deletion designer-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "designer-demo",
"private": true,
"version": "2.0.0-rc.4",
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "cross-env VITE_THEME=light vite",
Expand Down
Loading
Loading