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

V3.0.0 beta #116

Merged
merged 5 commits into from Dec 3, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/class-wp-agora-io-public.php
Expand Up @@ -241,7 +241,7 @@ public function uploadChatFile(){
mkdir($targetDirPath);
}

$allowedFileTypes = array("jpg", "jpeg", "gif", "png", "bmp", "svg", "tiff", "mp4", "mov", "mpeg", "mkv", "doc", "docx", "xls", "xlsx", "zip", "txt", "ppt", "pptx");
$allowedFileTypes = array("jpg", "jpeg", "gif", "png", "bmp", "svg", "tiff", "aif", "cda", "mid", "midi", "mp3", "mpa", "ogg", "wav", "wma", "mp4", "mov", "mpeg", "mkv", "7z", "arj", "deb", "pkg", "rar", "rpm", "targz", "z", "zip", "pdf", "csv", "log", "json", "doc", "docx", "rtf", "tex", "txt", "wpd ", "odt","xls", "xlsx", "key", "odp", "pps", "ppt", "pptx");

$file = sanitize_file_name($_FILES['file']['name']);

Expand Down
4 changes: 2 additions & 2 deletions wp-agora-io.php
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: WP Agora.io
* Plugin URI: https://github.com/digitallysavvy/Agora-Word-Press/
* Description: Integrate the Agora Communication and Streaming platform directly into your WordPress content. This plugin let you create channels and manage their settings directly into WP.
* Version: 3.0.0.beta4
* Version: 3.0.0.beta5
* Author: Agora.io
* Author URI: https://www.agora.io
* License: GPL-2.0+
Expand All @@ -28,7 +28,7 @@
/**
* Currently plugin version based on SemVer - https://semver.org
*/
define( 'WP_AGORA_IO_VERSION', '3.0.0.beta4' );
define( 'WP_AGORA_IO_VERSION', '3.0.0.beta5' );

/**
* The code that runs during plugin activation.
Expand Down