Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e0be3aa
Test commit (#508) (#509)
github-actions[bot] Jul 24, 2025
fc52aad
Test comment (#511) (#512)
github-actions[bot] Jul 24, 2025
cc21858
Clean up test comment. (#513) (#514)
github-actions[bot] Jul 24, 2025
7f7a348
Cherry-pick PR #520 with conflicts - manual resolution needed (#521)
github-actions[bot] Aug 26, 2025
2144986
Cherry-pick PR #524 with conflicts - manual resolution needed (#525)
github-actions[bot] Aug 27, 2025
57d8a31
Clone release preparation
hein-obox Sep 4, 2025
3d32073
Merge remote-tracking branch 'origin/main' into 3.4
hein-obox Sep 4, 2025
f692686
Tweak: improve changelog appearance [TMZ-928] (#543) (#544)
github-actions[bot] Sep 8, 2025
2cec5ca
Internal: Revert changes to quicklinks [TMZ-923] (#545) (#546)
github-actions[bot] Sep 11, 2025
6974bba
Tweak: Show PLG only on selected pages [TMZ-919] (#547) (#548)
github-actions[bot] Sep 19, 2025
dbe0ec1
New: Add theme home to Finder [TMZ-935] (#549) (#550)
github-actions[bot] Sep 23, 2025
4ece011
Internal: Bump version and add changelog [TMZ-954] (#551) (#552)
github-actions[bot] Sep 29, 2025
9e2216c
Internal: Tweak Date [TMZ-954] (#555) (#556)
github-actions[bot] Oct 20, 2025
9787054
Internal: Tweak changelog [TMZ-954] (#557)
ManorHazaz Oct 27, 2025
c9e517b
Internal: Merge main into 3.4 [TMZ-972] (#562)
nicoladj77 Nov 7, 2025
029c919
Create automated workflow (#564) (#566)
github-actions[bot] Nov 12, 2025
fc61ffc
Dry run svn credentials (#567) (#569)
github-actions[bot] Nov 16, 2025
e6f7b69
Print svn status (#568) (#570)
github-actions[bot] Nov 24, 2025
1980574
Internal: Create WordPress deploy action [TMZ-803] (#571) (#572)
github-actions[bot] Nov 24, 2025
a785862
Internal: Update wordpress deployment scripts [TMZ-803] (#573) (#574)
github-actions[bot] Nov 25, 2025
2a43d8c
Add Slack Notifications - GA (#577)
hein-obox Nov 26, 2025
1c7e319
Internal: Update release branch with main branch [TMZ-803] (#583)
hein-obox Nov 28, 2025
bfaa5f2
Internal: Create deploy workflow [TMZ-803] (#578) (#585)
github-actions[bot] Dec 1, 2025
9e9b756
Test new deployment
hein-obox Dec 1, 2025
5932211
Merge remote-tracking branch 'origin/3.4' into internal/test-new-depl…
hein-obox Dec 1, 2025
2edd533
Fix workflow
hein-obox Dec 1, 2025
e15eb64
Merge remote-tracking branch 'origin/internal/TMZ-803-fix-dry-run-dep…
hein-obox Dec 1, 2025
0a5b1a2
wip
hein-obox Dec 1, 2025
c270954
wip
hein-obox Dec 1, 2025
e3a235d
wip
hein-obox Dec 1, 2025
7577b15
wip
hein-obox Dec 1, 2025
1c8aa50
debug
hein-obox Dec 1, 2025
4a7394e
wip
hein-obox Dec 1, 2025
78fbcee
wip
hein-obox Dec 1, 2025
9b35394
wip
hein-obox Dec 1, 2025
d39ca5a
wip
hein-obox Dec 1, 2025
468106d
wip
hein-obox Dec 1, 2025
d68daf4
wip
hein-obox Dec 1, 2025
3896631
wip
hein-obox Dec 1, 2025
6c21a9a
Merge branch 'main' into internal/test-new-deployment
hein-obox Dec 2, 2025
ad62a65
svn status
hein-obox Dec 2, 2025
98708c7
Refactor publish script for WordPress theme
KingYes Dec 8, 2025
329f2a0
Fix formatting issues in publish-theme script
KingYes Dec 8, 2025
0fdc3c4
Add pwd command to SVN publish script
KingYes Dec 8, 2025
b19b4ac
Refactor publish-theme script for better directory management
KingYes Dec 8, 2025
919181a
Fix rsync command and clean up script
KingYes Dec 8, 2025
e82b812
Update publish-theme-to-wordpress-org-dry-run.sh
ManorHazaz Dec 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/scripts/publish-theme-to-wordpress-org-dry-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,20 @@ if [[ "$VERSION_EXISTS" == "true" ]]; then
fi

mkdir -p "$VERSION_DIR"
cd "$VERSION_DIR"

echo "Copy files from build directory"
rsync -ah --progress "$THEME_PATH/hello-elementor/"* . || rsync -ah --progress "$THEME_PATH/hello-elementor/." . || true
rsync -ah --progress "$THEME_PATH/hello-elementor/"* $VERSION_DIR

cd "$VERSION_DIR"

echo "svn delete"
svn status | grep -v '^.[ \t]*\\..*' | { grep '^!' || true; } | awk '{print $2}' | xargs -r svn delete;

echo "svn add"
svn status | grep -v '^.[ \t]*\\..*' | { grep '^?' || true; } | awk '{print $2}' | xargs -r svn add;

echo "Print SVN Status changes"
svn status

echo "Preparing files for SVN"
SVN_STATUS=$(svn status 2>/dev/null | grep -v '^\?[ \t]*\.$' || echo "")
Expand Down
1 change: 1 addition & 0 deletions dev/scss/reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
@forward "reset/forms";
@forward "reset/table";
@forward "reset/list";
// Test comment.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
exit; // Exit if accessed directly.
}

define( 'HELLO_ELEMENTOR_VERSION', '3.4.5' );
define( 'HELLO_ELEMENTOR_VERSION', '3.4.6' );
define( 'EHP_THEME_SLUG', 'hello-elementor' );

define( 'HELLO_THEME_PATH', get_template_directory() );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"slug": "elementor-hello-theme",
"homepage": "https://elementor.com/",
"description": "A sample theme for Elementor.",
"version": "3.4.5",
"version": "3.4.6",
"last_beta_version": "2.4.0-beta3",
"scripts": {
"start": "wp-scripts start",
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Source: https://stocksnap.io/photo/4B83RD7BV9

== Changelog ==

= 3.4.6 - 2025-12-1
* Tweak: Test 3.4.6 deployment

= 3.4.5 - 2025-10-27
* New: Add theme home to Finder
* Tweak: Improve banner behavior after clicking on action button
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Version: 3.4.5
Stable tag: 3.4.5
Version: 3.4.6
Stable tag: 3.4.6
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Expand Down
Loading