Skip to content

Commit fc2e5c0

Browse files
authored
Version update 4.5.11 (#1518)
Version update 4.5.11
2 parents 37d2f6b + 41d612b commit fc2e5c0

23 files changed

+26
-17
lines changed

.github/workflows/create.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: WordPress Plugin Deploy
1212
uses: rtCamp/action-wordpress-org-plugin-deploy@master
1313
env:
14-
ASSETS_DIR: assets
14+
ASSETS_DIR: wpassets
1515
EXCLUDE_LIST: .bowerrc .gitattributes .gitignore .jshintrc .travis.yml CONTRIBUTING.md
1616
Gruntfile.js README.md bin deploy.sh package-lock.json package.json phpcs.xml phpunit.xml
1717
tests

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,19 @@ https://www.youtube.com/watch?v=dJrykKQGDcs
147147

148148
## Changelog ##
149149

150-
### 4.5.10 [December 26, 2019] ###
150+
### 4.5.11 [December 26, 2019] ###
151151

152152
* Enhancement
153153
* Add better styling for albums
154154

155+
* FIXED
156+
* Redirection popup on Media upload in Activity stream
157+
158+
### 4.5.10 [December 26, 2019] ###
159+
155160
* FIXED
156161
* Warnings on Support page of rtMedia Settings
157162
* Issue with rtMedia Update filter on BuddyPress activity wall
158-
* Redirection popup on Media upload in Activity stream
159163

160164
### 4.5.9 [October 29, 2019] ###
161165

@@ -1644,8 +1648,8 @@ https://www.youtube.com/watch?v=dJrykKQGDcs
16441648
* HTML5 Audio Tag Support (with fallback)
16451649
* HTML5 Video Tag Support (with fallback)
16461650

1647-
#### 4.5.10 ####
1648-
rtMedia 4.5.10, with improved styling for albums and improved UX on BuddyPress Activity Wall.
1651+
#### 4.5.11 ####
1652+
rtMedia 4.5.11, with improved styling for albums and improved UX on BuddyPress Activity Wall.
16491653

16501654
## Sponsors ##
16511655

app/assets/css/rtmedia.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ button::-moz-focus-inner {
865865
padding: 0;
866866
width: 90px;
867867
height: 110px;
868-
-webkit-tap-highlight-color: transparent;
868+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
869869
opacity: 0;
870870
z-index: 10;
871871
-webkit-transition: all 300ms ease-out;
@@ -2975,7 +2975,7 @@ a.rtmedia-upload-media-link {
29752975
#buddypress .mejs-controls button {
29762976
padding: 4px 8px;
29772977
border: none;
2978-
background: transparent url("../../../lib/media-element/mejs-controls.png") no-repeat;
2978+
background: rgba(0, 0, 0, 0) url("../../../lib/media-element/mejs-controls.png") no-repeat;
29792979
}
29802980
#buddypress .mejs-controls .mejs-play > button {
29812981
background-position: 0 0;

index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
44
Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
55
Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
6-
Version: 4.5.10
6+
Version: 4.5.11
77
Author: rtCamp
88
Text Domain: buddypress-media
99
Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
@@ -22,7 +22,7 @@
2222
* The version of the plugin
2323
*
2424
*/
25-
define( 'RTMEDIA_VERSION', '4.5.10' );
25+
define( 'RTMEDIA_VERSION', '4.5.11' );
2626
}
2727

2828
if ( ! defined( 'RTMEDIA_PATH' ) ) {

languages/buddypress-media.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the same license as the rtMedia for WordPress, BuddyPress and bbPress package.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 4.5.10\n"
5+
"Project-Id-Version: rtMedia for WordPress, BuddyPress and bbPress 4.5.11\n"
66
"Report-Msgid-Bugs-To: https://rtmedia.io/support/\n"
7-
"POT-Creation-Date: 2019-12-20 10:04:47+00:00\n"
7+
"POT-Creation-Date: 2019-12-26 11:07:53+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"
@@ -3516,4 +3516,4 @@ msgstr ""
35163516
#: app/main/controllers/template/RTMediaNav.php:41
35173517
msgctxt "My Account Privacy sub nav"
35183518
msgid "Privacy"
3519-
msgstr ""
3519+
msgstr ""

readme.txt

+10-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ License: GPLv2 or later
55
License URI: http://www.gnu.org/licenses/gpl-2.0.html
66
Requires at least: WordPress 4.1
77
Tested up to: 5.3.2
8-
Stable tag: 4.5.10
8+
Stable tag: 4.5.11
99

1010
Add albums, photo, audio/video upload, privacy, sharing, front-end uploads & more. All this works on mobile/tablets devices.
1111

@@ -134,17 +134,22 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
134134

135135
== Changelog ==
136136

137-
= 4.5.10 [December 26, 2019] =
137+
= 4.5.11 [December 26, 2019] =
138138

139139
* Enhancement
140140

141141
* Add better styling for albums
142142

143+
* FIXED
144+
145+
* Redirection popup on Media upload in Activity stream
146+
147+
= 4.5.10 [December 26, 2019] =
148+
143149
* FIXED
144150

145151
* Warnings on Support page of rtMedia Settings
146152
* Issue with rtMedia Update filter on BuddyPress activity wall
147-
* Redirection popup on Media upload in Activity stream
148153

149154
= 4.5.9 [October 29, 2019] =
150155

@@ -1637,8 +1642,8 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
16371642

16381643
== Upgrade Notice ==
16391644

1640-
= 4.5.10 =
1641-
rtMedia 4.5.10, with improved styling for albums and improved UX on BuddyPress Activity Wall.
1645+
= 4.5.11 =
1646+
rtMedia 4.5.11, with improved styling for albums and improved UX on BuddyPress Activity Wall.
16421647

16431648
== Sponsors ==
16441649

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)