Skip to content

Commit fbefb48

Browse files
authored
Merge pull request #4 from wpfresher/release/1.0.0
Update plugin name
2 parents fda2e80 + 276f80a commit fbefb48

11 files changed

Lines changed: 33 additions & 88 deletions

File tree

.assets/css/admin.css

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

.assets/js/admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* AI Image Generator Admin JS
2+
* Image Generator Admin JS
33
* https://beautifulplugins.com/
44
*
55
* Copyright (c) 2025 BeautifulPlugins

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
payload: |
177177
{
178178
"channel": "#announcement",
179-
"text": "WordPress.org release of *AI Image Generator* version *${{ env.TAG_NAME }}* has *${{ job.status == 'success' && 'succeeded ✅' || job.status == 'failure' && 'failed ❌' || 'been cancelled' }}*",
179+
"text": "WordPress.org release of *Image Generator* version *${{ env.TAG_NAME }}* has *${{ job.status == 'success' && 'succeeded ✅' || job.status == 'failure' && 'failed ❌' || 'been cancelled' }}*",
180180
"attachments": [
181181
{
182182
"color": "${{ job.status == 'success' && 'good' || job.status == 'failure' && 'danger' || 'warning' }}",

artificial-image-generator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Plugin Name: AI Image Generator
4-
* Plugin URI: https://beautifulplugins.com/ai-image-generator/
3+
* Plugin Name: Image Generator
4+
* Plugin URI: https://beautifulplugins.com/image-generator/
55
* Description: Generate AI-powered images automatically across your WordPress site. Create stunning visuals for posts, pages, and more with ease.
66
* Version: 1.0.0
77
* Requires at least: 5.0

blueprint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"landingPage": "/wp-admin/admin.php?page=artificial-image-generator",
33
"preferredVersions": {
44
"php": "7.4",
5-
"wp": "5.0"
5+
"wp": "5.2"
66
},
77
"phpExtensionBundles": [
88
"kitchen-sink"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "beautifulplugins/artificial-image-generator",
33
"description": "Generate AI-powered images automatically across your WordPress site. Create stunning visuals for posts, pages, and more with ease.",
4-
"homepage": "https://beautifulplugins.com/ai-image-generator",
4+
"homepage": "https://beautifulplugins.com/image-generator/",
55
"type": "wordpress-plugin",
66
"license": "GPL-2.0-or-later",
77
"prefer-stable": true,

includes/Admin/Settings.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class Settings
77
*
8-
* This class handles the settings for the AI Image Generator plugin.
8+
* This class handles the settings for the Image Generator plugin.
99
*
1010
* @since 1.0.0
1111
* @package ArtificialImageGenerator/Admin
@@ -56,9 +56,9 @@ public function settings_page() {
5656
<div class="wrap">
5757
<h1>
5858
<?php esc_html_e( 'Settings', 'artificial-image-generator' ); ?>
59-
<abbr title="<?php esc_attr_e( 'AI Image Generator', 'artificial-image-generator' ); ?>" class="dashicons dashicons-format-image"></abbr>
59+
<abbr title="<?php esc_attr_e( 'Image Generator', 'artificial-image-generator' ); ?>" class="dashicons dashicons-format-image"></abbr>
6060
</h1>
61-
<p><?php esc_html_e( 'Configure the settings for the AI Image Generator plugin.', 'artificial-image-generator' ); ?></p>
61+
<p><?php esc_html_e( 'Configure the settings for the Image Generator plugin.', 'artificial-image-generator' ); ?></p>
6262
<form method="post" action="<?php echo esc_url( admin_url( 'options.php' ) ); ?>">
6363
<?php
6464
settings_fields( 'artificial_image_generator' );
@@ -131,7 +131,7 @@ public function register_settings() {
131131
* @return void
132132
*/
133133
public function general_settings() {
134-
echo '<p>' . esc_html__( 'Configure the AI Image Generator general settings.', 'artificial-image-generator' ) . '</p>';
134+
echo '<p>' . esc_html__( 'Configure the Image Generator general settings.', 'artificial-image-generator' ) . '</p>';
135135
}
136136

137137
/**

includes/Admin/views/admin-page.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/**
3-
* AI Image Generator Admin Page
3+
* Image Generator Admin Page
44
*
5-
* This file renders the admin page for the AI Image Generator plugin.
5+
* This file renders the admin page for the Image Generator plugin.
66
*
77
* @package ArtificialImageGenerator
88
* @since 1.0.0
@@ -12,8 +12,8 @@
1212
?>
1313
<div class="wrap">
1414
<h1>
15-
<?php esc_html_e( 'AI Image Generator', 'artificial-image-generator' ); ?>
16-
<abbr title="<?php esc_attr_e( 'AI Image Generator', 'artificial-image-generator' ); ?>" class="dashicons dashicons-format-image"></abbr>
15+
<?php esc_html_e( 'Image Generator', 'artificial-image-generator' ); ?>
16+
<abbr title="<?php esc_attr_e( 'Image Generator', 'artificial-image-generator' ); ?>" class="dashicons dashicons-format-image"></abbr>
1717
</h1>
1818
<p><?php esc_html_e( 'Configure to generate thumbnails.', 'artificial-image-generator' ); ?></p>
1919
<form id="aimg-form" method="POST" enctype="multipart/form-data" action="<?php echo esc_url( admin_url( 'admin-post.php' ) ); ?>">

languages/artificial-image-generator.pot

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPLv2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: AI Image Generator 1.0.0\n"
5+
"Project-Id-Version: Image Generator 1.0.0\n"
66
"Report-Msgid-Bugs-To: https://beautifulplugins.com/support/\n"
77
"POT-Creation-Date: 2025-12-21 18:10:55+00:00\n"
88
"MIME-Version: 1.0\n"
@@ -65,7 +65,7 @@ msgstr ""
6565
msgid "Invalid overlay image ID."
6666
msgstr ""
6767

68-
#: includes/Admin/Admin.php:33 includes/Admin/Admin.php:34
68+
#. Plugin Name of the plugin/theme
6969
msgid "Image Generator"
7070
msgstr ""
7171

@@ -78,12 +78,8 @@ msgstr ""
7878
msgid "You do not have sufficient permissions to access this page."
7979
msgstr ""
8080

81-
#. Plugin Name of the plugin/theme
82-
msgid "AI Image Generator"
83-
msgstr ""
84-
8581
#: includes/Admin/Settings.php:61
86-
msgid "Configure the settings for the AI Image Generator plugin."
82+
msgid "Configure the settings for the Image Generator plugin."
8783
msgstr ""
8884

8985
#: includes/Admin/Settings.php:85
@@ -107,7 +103,7 @@ msgid "Enable Page Thumbnails"
107103
msgstr ""
108104

109105
#: includes/Admin/Settings.php:134
110-
msgid "Configure the AI Image Generator general settings."
106+
msgid "Configure the Image Generator general settings."
111107
msgstr ""
112108

113109
#: includes/Admin/Settings.php:146
@@ -290,7 +286,7 @@ msgid "Preview could not be generated. Save the settings to generate a preview."
290286
msgstr ""
291287

292288
#. Plugin URI of the plugin/theme
293-
msgid "https://beautifulplugins.com/ai-image-generator/"
289+
msgid "https://beautifulplugins.com/image-generator/"
294290
msgstr ""
295291

296292
#. Description of the plugin/theme

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "artificial-image-generator",
3-
"title": "AI Image Generator",
3+
"title": "Image Generator",
44
"version": "1.0.0",
55
"description": "Generate AI-powered images automatically across your WordPress site. Create stunning visuals for posts, pages, and more with ease.",
66
"author": "BeautifulPlugins",
7-
"homepage": "https://beautifulplugins.com/ai-image-generator",
7+
"homepage": "https://beautifulplugins.com/image-generator/",
88
"license": "GPL-v2.0-or-later",
99
"prettier": "@wordpress/prettier-config",
1010
"scripts": {

0 commit comments

Comments
 (0)