Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.5.0-alpha.6 #801

Merged
merged 3 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions assets/admin/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -786,11 +786,9 @@ textarea#episode_embed_code {
margin-top: 25px;
position: relative; }
.ssp-onboarding__submit span.connect-castos-message {
position: absolute;
left: 0;
bottom: -24px;
margin-left: 0;
display: block; }
display: block;
text-align: left;
margin: 20px 0 0; }
.ssp-onboarding__submit button[type=submit], .ssp-onboarding__submit .button {
position: relative;
height: 50px;
Expand Down
6 changes: 2 additions & 4 deletions assets/admin/scss/_onboarding.scss
Original file line number Diff line number Diff line change
Expand Up @@ -590,11 +590,9 @@
position: relative;

span.connect-castos-message {
position: absolute;
left: 0;
bottom: -24px;
margin-left: 0;
display: block;
text-align: left;
margin: 20px 0 0;
}

button[type=submit], .button {
Expand Down
4 changes: 2 additions & 2 deletions seriously-simple-podcasting.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Seriously Simple Podcasting
* Version: 3.5.0-alpha.5
* Version: 3.5.0-alpha.6
* Plugin URI: https://castos.com/seriously-simple-podcasting/?utm_medium=sspodcasting&utm_source=wordpress&utm_campaign=wpplugin_08_2019
* Description: Podcasting the way it's meant to be. No mess, no fuss - just you and your content taking over the world.
* Author: Castos
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'SSP_VERSION', '3.5.0-alpha.5' );
define( 'SSP_VERSION', '3.5.0-alpha.6' );
define( 'SSP_PLUGIN_FILE', __FILE__ );
define( 'SSP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SSP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion templates/onboarding/step-4.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@
<?php echo $podmotor_account_api_token ? __('Connected', 'seriously-simple-podcasting') : __( 'Connect Castos', 'seriously-simple-podcasting' ) ?>
</button>
<?php wp_nonce_field( 'ss_podcasting_castos-hosting', 'podcast_settings_tab_nonce', false ); ?>
<span class="connect-castos-message"></span>
<button type="submit" <?php disabled( ! $podmotor_account_api_token ) ?>><?php _e( 'Proceed', 'seriously-simple-podcasting' ); ?></button>
<span class="connect-castos-message"></span>
</div>
</form>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/2_settings-hosting.feature
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Feature: SSP Plugin Hosting Settings
Scenario: All hosting settings exist
Then I can see "Podcast Hosting"
And I can see "Castos API token"
And I can see "Your Castos API token. Available from your Castos account dashboard."
And I can see "Your Castos API token. Available from your"
And I can see "Connect"
Loading