Skip to content

Commit b63c669

Browse files
authored
Release
1 parent 529e830 commit b63c669

7 files changed

Lines changed: 9 additions & 191 deletions

File tree

CHANGELOG.md

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

33
## Unreleased
4+
5+
## 1.8.0 - June 26, 2025
46
### WordPress Standards Compliance Enhancement
57
- **WordPress Baseline**: Updated minimum WordPress version requirement from 6.0 to 6.5+ for better compatibility
68
- **Internationalization**: Added complete i18n support with `load_plugin_textdomain()` and `.pot` file generation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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.7.0-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.7.0.zip)
9+
[![Version](https://img.shields.io/badge/Version-1.8.0-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.8.0.zip)
1010

1111
## Description
1212
A WordPress plugin that exports your entire site, including files and database, as a secure, downloadable ZIP archive.

changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
== Changelog ==
22

33
= Unreleased =
4+
5+
= 1.8.0 - June 26, 2025 =
46
* WordPress Standards Compliance Enhancement
57
* WordPress Baseline: Updated minimum WordPress version requirement from 6.0 to 6.5+ for better compatibility
68
* Internationalization: Added complete i18n support with load_plugin_textdomain() and .pot file generation

languages/simple-wp-site-exporter.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file is distributed under the same license as the Simple WP Site Exporter plugin.
44
msgid ""
55
msgstr ""
6-
"Project-Id-Version: Simple WP Site Exporter 1.7.0\n"
6+
"Project-Id-Version: Simple WP Site Exporter 1.8.0\n"
77
"Report-Msgid-Bugs-To: https://github.com/EngineScript/Simple-WP-Site-Exporter/issues\n"
88
"POT-Creation-Date: 2025-06-26 12:00+0000\n"
99
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

phpcs.xml

Lines changed: 0 additions & 186 deletions
This file was deleted.

readme.txt

Lines changed: 1 addition & 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: 6.5
55
Tested up to: 6.8
6-
Stable tag: 1.7.0
6+
Stable tag: 1.8.0
77
Requires PHP: 7.4
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html

simple-wp-site-exporter.php

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.7.0
5+
Version: 1.8.0
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.7.0' );
18+
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.8.0' );
1919
}
2020

2121
/**

0 commit comments

Comments
 (0)