Skip to content

Commit 711522b

Browse files
committed
Merge branch 'develop' into fix/single-theme-button
# Conflicts: # readme.txt
2 parents b08658d + 9621afe commit 711522b

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Build Plugin Pre-Release
2+
3+
on:
4+
release:
5+
types: [ prereleased ]
6+
7+
jobs:
8+
build:
9+
uses: impress-org/givewp-github-actions/.github/workflows/pre-release.yml@master
10+
with:
11+
plugin_slug: wp-rollback
12+
zip_name: wp-rollback

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy to WordPress.org
2+
3+
on:
4+
release:
5+
types: [ released ]
6+
7+
jobs:
8+
build:
9+
uses: impress-org/givewp-github-actions/.github/workflows/wp-org-release.yml@master
10+
with:
11+
wp_org_slug: wp-rollback
12+
zip_name: wp-rollback
13+
text_domain: wp-rollback
14+
secrets:
15+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
16+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}

readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Safety largely depends on you. The WordPress website admin. We absolutely do NOT
7171

7272
= Why isn't there a rollback button next to X plugin or theme? =
7373

74-
WP Rollback only works with plugins or themes installed from the WordPress Repository. If you don't see the rollback link, then most likely that plugin or theme is not found on WordPress.org. This plugin does not support plugins from Github, ThemeForest, or other sources other than the WordPress.org Repo.
74+
WP Rollback only works with plugins or themes installed from the WordPress Repository. If you don't see the rollback link, then most likely that plugin or theme is not found on WordPress.org. This plugin does not support plugins from GitHub, ThemeForest, or other sources other than the WordPress.org Repo.
7575

7676
= I rolled my [insert plugin name] back to version X.X and now my site is broken. This is your fault. =
7777

@@ -109,6 +109,7 @@ This is the first version of this plugin. It is a tool for your convenience. Rol
109109

110110
= 1.7.2 =
111111
* Fix: Ensure that the "Rollback" button displays properly when a WordPress site only has a single theme installed. Thanks [@eldertech](https://wordpress.org/support/users/eldertech/) for your help uncovering this bug.
112+
* Fix: Minor CSS fixes for the Rollback page.
112113
* Tweak: Update the WordPress.org readme.txt file to have better instructions for translating the plugin. We also fixed a few typos.
113114

114115
= 1.7.1 =

wp-rollback.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ final class WP_Rollback {
6969
*
7070
* @var string
7171
*/
72-
public $themes_repo = 'http://themes.svn.wordpress.org';
72+
public $themes_repo = 'https://themes.svn.wordpress.org';
7373

7474
/**
7575
* Plugin file.

0 commit comments

Comments
 (0)