Skip to content

Commit

Permalink
Merge branch 'develop' into feature/post-list/sticky-posts
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdkei authored Feb 5, 2025
2 parents 36d475f + 80b0920 commit 84b9485
Show file tree
Hide file tree
Showing 110 changed files with 9,866 additions and 8,461 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
npx wp-scripts test-playwright --trace on --project=chromium common-margin.spec.ts
npx wp-scripts test-playwright --trace on --project=chromium heading-transform.spec.ts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
Expand Down
6 changes: 3 additions & 3 deletions editor-css/_editor_before_grid-column.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

//inner-blocksの中のinner-blocksのcss打ち消し
.block-editor-inner-blocks .block-editor-block-list__layout{
flex-direction:unset;
flex-wrap: unset;
&.wp-block-social-links, //inner-blocksの中のinner-blocksがソーシャルアイコンブロックだった場合
&.wp-block-group { //inner-blocksの中のinner-blocksがグループブロックだった場合
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
&.wp-block-group:where(:not(.is-vertical)){ //垂直レイアウトの場合は除外したいため追加
flex-direction: row;
}
}

// colの余分な余白の削除など
Expand Down
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ gulp.task('text-domain-free', (done) => {
.pipe(replace("wp_set_script_translations( 'vk-blocks-build-js', 'vk-blocks-pro', VK_BLOCKS_DIR_PATH . 'languages' );", "wp_set_script_translations( 'vk-blocks-build-js', 'vk-blocks' );"))
.pipe(gulp.dest('./inc/'));
gulp.src(['./src/**'])
.pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "__( $1, 'vk-blocks' )"))
.pipe(replace(/_e\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_e( $1, 'vk-blocks' )"))
.pipe(replace(/_n_noop\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_n_noop( $1, $2, 'vk-blocks' )"))
.pipe(replace(/_x\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_x( $1, $2, 'vk-blocks' )"))
.pipe(replace('"textdomain": "vk-blocks-pro"', '"textdomain": "vk-blocks"'))
.pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "__( $1, 'vk-blocks' )"))
.pipe(replace(/_e\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_e( $1, 'vk-blocks' )"))
.pipe(replace(/_n_noop\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_n_noop( $1, $2, 'vk-blocks' )"))
.pipe(replace(/_x\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_x( $1, $2, 'vk-blocks' )"))
.pipe(replace(/"textdomain":\s*?["']vk-blocks-pro["']/gsm, '"textdomain": "vk-blocks"'))
.pipe(gulp.dest('./src/'));
gulp.src(['./test/**'])
.pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "__( $1, 'vk-blocks' )"))
Expand Down
2 changes: 1 addition & 1 deletion languages/vk-blocks-pro-ja-vk-blocks-admin-js.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion languages/vk-blocks-pro-ja-vk-blocks-build-js.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion languages/vk-blocks-pro-ja.l10n.php

Large diffs are not rendered by default.

Binary file modified languages/vk-blocks-pro-ja.mo
Binary file not shown.
Loading

0 comments on commit 84b9485

Please sign in to comment.