Skip to content

Commit 95e2c1c

Browse files
authored
Updates
1 parent 3b9458a commit 95e2c1c

10 files changed

Lines changed: 27 additions & 14 deletions

.github/ISSUE_TEMPLATE/compatibility-test-failure.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
name: Compatibility Test Failure
3+
about: Automated issue for WordPress/PHP compatibility test failures
24
title: WP {{ env.WP_VERSION }} / PHP {{ env.PHP_VERSION }} Compatibility Test Failure
35
labels: bug, compatibility, automated
46
assignees: []

.github/ISSUE_TEMPLATE/plugin-check-failure.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
name: Plugin Check Failure
3+
about: Automated issue for WordPress Plugin Check failures
24
title: WordPress Plugin Check Failure
35
labels: bug, plugin-check, automated
46
assignees: []

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Core plugin functionality
55
core:
66
- changed-files:
7-
- any-glob-to-any-file: simple-site-exporter.php
7+
- any-glob-to-any-file: simple-wp-site-exporter.php
88
- any-glob-to-any-file: includes/**/*
99
- any-glob-to-any-file: assets/js/**/*
1010

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
mkdir -p build/simple-wp-site-exporter
165165
166166
# Copy main plugin file
167-
cp simple-site-exporter.php build/simple-wp-site-exporter/
167+
cp simple-wp-site-exporter.php build/simple-wp-site-exporter/
168168
169169
# Copy directories if they exist
170170
[ -d assets ] && cp -r assets build/simple-wp-site-exporter/ || echo "No assets directory found"

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Get latest version
2424
id: get_version
2525
run: |
26-
VERSION=$(grep -oP "Version: \K[0-9]+\.[0-9]+\.[0-9]+" simple-site-exporter.php)
26+
VERSION=$(grep -oP "Version: \K[0-9]+\.[0-9]+\.[0-9]+" simple-wp-site-exporter.php)
2727
echo "version=$VERSION" >> $GITHUB_OUTPUT
2828
echo "Found version: $VERSION"
2929
@@ -43,7 +43,7 @@ jobs:
4343
if: steps.check_release.outputs.exists == 'false'
4444
run: |
4545
mkdir -p simple-wp-site-exporter
46-
cp simple-site-exporter.php simple-wp-site-exporter/
46+
cp simple-wp-site-exporter.php simple-wp-site-exporter/
4747
cp README.md simple-wp-site-exporter/
4848
cp CHANGELOG.md simple-wp-site-exporter/
4949
cp LICENSE simple-wp-site-exporter/ || echo "No LICENSE file found"
@@ -88,7 +88,7 @@ jobs:
8888
TMP_FILE=$(mktemp)
8989
9090
# Update the version badge with the new version and logo
91-
sed -E 's/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-[0-9]+\.[0-9]+\.[0-9]+-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/EngineScript-Simple-Site-Exporter\/releases\/latest\/download\/simple-wp-site-exporter-[0-9]+\.[0-9]+\.[0-9]+\.zip\)/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-'"$VERSION"'-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/EngineScript-Simple-Site-Exporter\/releases\/latest\/download\/simple-wp-site-exporter-'"$VERSION"'\.zip\)/g' "$README_FILE" > "$TMP_FILE"
91+
sed -E 's/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-[0-9]+\.[0-9]+\.[0-9]+-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/Simple-WP-Site-Exporter\/releases\/latest\/download\/simple-wp-site-exporter-[0-9]+\.[0-9]+\.[0-9]+\.zip\)/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-'"$VERSION"'-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/Simple-WP-Site-Exporter\/releases\/latest\/download\/simple-wp-site-exporter-'"$VERSION"'\.zip\)/g' "$README_FILE" > "$TMP_FILE"
9292
9393
# Replace file if changes were made
9494
if ! cmp -s "$README_FILE" "$TMP_FILE"; then

.github/workflows/wp-compatibility-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
return;
230230
}, 0);
231231
232-
require dirname( dirname( __FILE__ ) ) . '/simple-site-exporter.php';
232+
require dirname( dirname( __FILE__ ) ) . '/simple-wp-site-exporter.php';
233233
}
234234
235235
// Start up the WP testing environment.

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Changelog for Simple WP Site Exporter
22

3+
## 1.6.3 - June 6, 2025
4+
### Updates
5+
- **Version Bump**: Updated plugin version to maintain consistency across all files
6+
37
## 1.6.2 - June 6, 2025
48
### Plugin Rebrand
59
- **Plugin Renamed**: Changed plugin name from "EngineScript: Simple Site Exporter" to "Simple WP Site Exporter"
10+
- **Plugin File Renamed**: Changed main plugin file from 'simple-site-exporter.php' to 'simple-wp-site-exporter.php'
11+
- **Repository Moved**: Moved repository from 'EngineScript-Simple-Site-Exporter' to 'Simple-WP-Site-Exporter'
612
- **Text Domain Updated**: Updated text domain from 'Simple-Site-Exporter' to 'simple-wp-site-exporter' for consistency
713
- **Package Name Updated**: Updated composer package name to 'enginescript/simple-wp-site-exporter'
814
- **Directory Names Updated**: Updated export directory from 'enginescript-sse-site-exports' to 'simple-wp-site-exporter-exports'
9-
- **GitHub Workflows Updated**: Updated all GitHub Actions workflows to reference the new plugin name
10-
- **Documentation Updated**: Updated README.md, readme.txt, and all documentation to reflect the new plugin name
15+
- **GitHub Workflows Updated**: Updated all GitHub Actions workflows to reference the new plugin name, filename, and repository
16+
- **Documentation Updated**: Updated README.md, readme.txt, and all documentation to reflect the new plugin name and repository
1117

1218
## 1.6.1 - May 24, 2025
1319
### WordPress Plugin Check Compliance

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Simple WP Site Exporter
22

3-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d81efac1703c4d3b8b998d2587cd696b)](https://app.codacy.com/gh/EngineScript/EngineScript-Simple-Site-Exporter/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
3+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d81efac1703c4d3b8b998d2587cd696b)](https://app.codacy.com/gh/EngineScript/Simple-WP-Site-Exporter/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
44
[![License](https://img.shields.io/badge/License-GPL%20v3-green.svg?logo=gnu)](https://www.gnu.org/licenses/gpl-3.0.html)
55
[![WordPress Compatible](https://img.shields.io/badge/WordPress-6.0%2B-blue.svg?logo=wordpress)](https://wordpress.org/)
66
[![PHP Compatible](https://img.shields.io/badge/PHP-7.4%2B-purple.svg?logo=php)](https://www.php.net/)
77

88
## Current Version
9-
[![Version](https://img.shields.io/badge/Version-1.6.2-orange.svg?logo=github)](https://github.com/EngineScript/EngineScript-Simple-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.6.2.zip)
9+
[![Version](https://img.shields.io/badge/Version-1.6.3-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.6.3.zip)
1010

1111
## Description
1212
A WordPress plugin that exports your entire site, including files and database, as a secure, downloadable ZIP archive.
@@ -118,4 +118,4 @@ Simple WP Site Exporter is developed and maintained by [EngineScript](https://gi
118118

119119
## Support
120120

121-
For support, feature requests, or bug reports, please [create an issue](https://github.com/EngineScript/EngineScript-Simple-Site-Exporter/issues) on our GitHub repository.
121+
For support, feature requests, or bug reports, please [create an issue](https://github.com/EngineScript/Simple-WP-Site-Exporter/issues) on our GitHub repository.

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: enginescript
33
Tags: backup, export, migration, site export, database export
44
Requires at least: 5.8
55
Tested up to: 6.8
6-
Stable tag: 1.6.2
6+
Stable tag: 1.6.3
77
Requires PHP: 7.4
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -72,6 +72,9 @@ Yes, the plugin is designed to be compatible with most shared hosting environmen
7272

7373
== Changelog ==
7474

75+
= 1.6.3 =
76+
* Version consistency update across all plugin files and documentation
77+
7578
= 1.6.2 =
7679
* Plugin renamed from "EngineScript: Simple Site Exporter" to "Simple WP Site Exporter"
7780
* Updated text domain to 'simple-wp-site-exporter' for consistency
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Plugin Name: Simple WP Site Exporter
44
Description: Exports the site files and database as a zip archive.
5-
Version: 1.6.2
5+
Version: 1.6.3
66
Author: EngineScript
77
License: GPL v3 or later
88
Text Domain: simple-wp-site-exporter
@@ -15,7 +15,7 @@
1515

1616
// Define plugin version
1717
if (!defined('ES_WP_SITE_EXPORTER_VERSION')) {
18-
define('ES_WP_SITE_EXPORTER_VERSION', '1.6.2');
18+
define('ES_WP_SITE_EXPORTER_VERSION', '1.6.3');
1919
}
2020

2121
/**

0 commit comments

Comments
 (0)