Skip to content

Commit 3b9458a

Browse files
authored
Updates
1 parent 3fc7236 commit 3b9458a

6 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# This workflow runs continuous integration checks on the Simple WP Site Exporter plugin.
2-
# It performs code linting for both PHP and JavaScript files and builds t mkdir -p build/simple-wp-site-exporter
3-
4-
# Copy main plugin files
5-
cp simple-site-exporter.php build/simple-wp-site-exporter/lugin package.
2+
# It performs code linting for both PHP and JavaScript files and builds the plugin package.
63
# The workflow is triggered on push to main branch and on pull requests to ensure code quality.
74
# It creates and stores a plugin zip file as an artifact that can be used for testing.
85

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ jobs:
213213
/**
214214
* PHPUnit bootstrap file for plugin tests.
215215
*
216-
* @package EngineScript_Simple_Site_Exporter
216+
* @package Simple_WP_Site_Exporter
217217
*/
218218
219219
// Give access to tests_add_filter() function.
@@ -243,15 +243,15 @@ jobs:
243243
cat > tests/test-plugin.php << 'EOF'
244244
<?php
245245
/**
246-
* Class Test_EngineScript_Simple_Site_Exporter
246+
* Class Test_Simple_WP_Site_Exporter
247247
*
248-
* @package EngineScript_Simple_Site_Exporter
248+
* @package Simple_WP_Site_Exporter
249249
*/
250250
251251
/**
252252
* Simple test case for Simple WP Site Exporter plugin.
253253
*/
254-
class Test_EngineScript_Simple_Site_Exporter extends WP_UnitTestCase {
254+
class Test_Simple_WP_Site_Exporter extends WP_UnitTestCase {
255255
/**
256256
* Test that the plugin can be loaded correctly.
257257
*

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
### GitHub Actions Security Updates
2929
- Pinned all GitHub Actions to specific commit hashes instead of version tags for improved security
30-
- Updated all workflow references from Simple-WP-Optimizer to Simple Site Exporter
30+
- Updated all workflow references from Simple-WP-Optimizer to Simple WP Site Exporter
3131
- Enhanced CI/CD pipeline security with version pinning and proper repository references
3232

3333
### Code Structure Improvements

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The plugin is designed to work with most WordPress sites, but very large sites (
8686
### Where are the export files stored?
8787

8888
Exports are stored in your WordPress uploads directory, specifically at:
89-
`[wp-root]/wp-content/uploads/enginescript-sse-site-exports/`
89+
`[wp-root]/wp-content/uploads/simple-wp-site-exporter-exports/`
9090

9191
### Why do export files disappear after an hour?
9292

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The plugin is designed to work with most WordPress sites, but very large sites (
4848
= Where are the export files stored? =
4949

5050
Exports are stored in your WordPress uploads directory, specifically at:
51-
`[wp-root]/wp-content/uploads/enginescript-sse-site-exports/`
51+
`[wp-root]/wp-content/uploads/simple-wp-site-exporter-exports/`
5252

5353
= Why do export files disappear after 5 minutes? =
5454

simple-site-exporter.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515

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

2121
/**
@@ -31,7 +31,7 @@ function sse_log($message, $level = 'info') {
3131
$formatted_message = sprintf(
3232
'[%s] [%s] %s: %s',
3333
gmdate('Y-m-d H:i:s'),
34-
'Simple Site Exporter',
34+
'Simple WP Site Exporter',
3535
strtoupper($level),
3636
$message
3737
);
@@ -88,7 +88,7 @@ function sse_get_execution_time_limit() {
8888
// --- Admin Menu ---
8989
function sse_admin_menu() {
9090
add_management_page(
91-
esc_html__( 'Simple Site Exporter', 'simple-wp-site-exporter' ), // Escaped title
91+
esc_html__( 'Simple WP Site Exporter', 'simple-wp-site-exporter' ), // Escaped title
9292
esc_html__( 'Site Exporter', 'simple-wp-site-exporter' ), // Escaped menu title
9393
'manage_options', // Capability required
9494
'simple-wp-site-exporter',

0 commit comments

Comments
 (0)