Changeset 2445450 – WordPress Plugin Repository (original) (raw)

Timestamp:

12/24/2020 09:49:16 AM (5 years ago)

clarionwpdeveloper

Message:

Tagging version 1.0.1

Location:

flat-file-bootstrap-slider/trunk

Files:

Legend:

Unmodified

Added

Removed

r1429898 r2445450
4 4 * Plugin URI: http://clariontechnologies.co.in
5 5 * Description: Twitter Bootstrap based professional WordPress carousel slider plugin.
6 * Version: 1.0.0
6 * Version: 1.0.1
7 7 * Author: kiranpatil353
8 8 * Author URI: http://clariontechnologies.co.in
41 41 register_activation_hook(__FILE__, 'ffsb_slider_activate');
42 42
43 function ffsb_slider_uninstall() {
43 function ffsb_slider_deactivate() {
44 44
45 45 $upload = wp_upload_dir();
54 54 foreach ($files as $file) {
55 55 if (is_dir($file)) {
56 self::deleteDir($file);
56 deleteDir($file);
57 57 } else {
58 58 unlink($file);
61 61 rmdir($upload_dir);
62 62 }
63 register_uninstall_hook(__FILE__, 'ffsb_slider_uninstall');
63 register_deactivation_hook(__FILE__, 'ffsb_slider_deactivate');
64 64 ?>
r1395304 r2445450
1 1 === Bootstrap Flat File Slider ===
2 2 Contributors: kiranpatil353, clarionwpdeveloper, saurabhpatil21
3 Tags: slider, carousal , bootstrap slider ,flat file slider , flat theme
3 Tags: slider, carousal , bootstrap slider, flat file slider , flat theme
4 4 Author: kiranpatil353
5 5 Author URI: http://clariontechnologies.co.in/
6 Requires at least: 3.0.1
7 Tested up to: 4.5
8 Stable tag: 1.0.0
6 Requires at least: 4.9
7 Tested up to: 5.6
8 Stable tag: 1.0.1
9 9 License: GPLv2 or later
10 10
29 29
30 30 == Changelog ==
31 = 1.0.1=
32 **Fixed**
33 Resolve the bug
34 Loads a plugin’s translated validation meesage.
35 Version Upgrade and tested compatibility with latest stable versions.
31 36
32 37 = 1.0.0 =

Note: See TracChangeset for help on using the changeset viewer.