Changeset 3283908
- Timestamp:
- 04/29/2025 08:20:25 AM (9 months ago)
- Location:
- embed-google-drive
- Files:
-
- 8 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from embed-google-drive/trunk)
-
tags/1.2.1/includes/classes/class-rtcamp-google-embeds.php (modified) (11 diffs)
-
tags/1.2.1/languages/rt-google-embeds.po (modified) (1 diff)
-
tags/1.2.1/readme.txt (modified) (3 diffs)
-
tags/1.2.1/rt-google-embeds.php (modified) (2 diffs)
-
trunk/includes/classes/class-rtcamp-google-embeds.php (modified) (11 diffs)
-
trunk/languages/rt-google-embeds.po (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/rt-google-embeds.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
embed-google-drive/tags/1.2.1/includes/classes/class-rtcamp-google-embeds.php
r3012766 r3283908 39 39 40 40 return self::$instance; 41 42 41 } 43 42 … … 53 52 // Register custom oembed provider for google drive urls. 54 53 add_filter( 'oembed_providers', array( $this, 'oembed_providers' ) ); 55 56 54 } 57 55 … … 96 94 97 95 load_plugin_textdomain( 'rt-google-embeds', false, RT_GOOGLE_EMBEDS_PLUGIN_DIR . 'languages/' ); 98 99 96 } 100 97 … … 161 158 array( $this, 'wpdocs_embed_handler_google_drive' ) 162 159 ); 163 164 160 } 165 161 … … 189 185 ) 190 186 ); 191 192 187 } 193 188 … … 212 207 213 208 return ob_get_clean(); 214 215 209 } 216 210 … … 252 246 253 247 return false; 254 255 248 } 256 249 … … 287 280 ) 288 281 ); 289 290 282 } 291 283 … … 343 335 344 336 return new WP_REST_Response( $data, 200 ); 345 346 337 } 347 338 … … 362 353 363 354 return $matches[0]; 364 365 355 } 366 356 … … 383 373 $data['preview_url'] = $this->get_thumbnail_url( $file_id ); 384 374 return new WP_REST_Response( $data, 200 ); 385 386 } 387 375 } 388 376 } 389 377 -
embed-google-drive/tags/1.2.1/languages/rt-google-embeds.po
r3232441 r3283908 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Embed Google Drive 1.2 \n"5 "Project-Id-Version: Embed Google Drive 1.2.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embed-google-drive\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
embed-google-drive/tags/1.2.1/readme.txt
r3232441 r3283908 4 4 Tags: Google Drive, embed, spreadsheet, document, drawing 5 5 Requires at least: 5.5 6 Tested up to: 6. 7.16 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.2 8 Stable tag: 1.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 70 70 == Changelog == 71 71 72 = 1.2.1 = 73 * Chore: Plugin tested up to WordPress 6.8 74 * Chore: Doc update 75 72 76 = 1.2 = 73 77 * Chore: Plugin tested up to WordPress 6.7.1 … … 88 92 == Upgrade Notice == 89 93 94 = 1.2.1 = 95 * Chore: Plugin tested up to WordPress 6.8 96 * Chore: Doc update 97 90 98 = 1.2 = 91 99 * Chore: Plugin tested up to WordPress 6.7.1 92 100 * Chore: Doc update 93 94 = 1.1 =95 * Plugin tested upto WordPress 6.4.296 * PHP Version updated to 8.097 * Fixed PHP Coding Standards issues98 * Plugin is VIP compatible -
embed-google-drive/tags/1.2.1/rt-google-embeds.php
r3232441 r3283908 4 4 * Description: Embed a link and preview of Google Drive Documents by pasting a shared document link into the editor. 5 5 * Plugin URI: https://github.com/rtCamp/embed-google-drive 6 * Version: 1.2 6 * Version: 1.2.1 7 7 * Author: rtCamp 8 8 * Text Domain: rt-google-embeds … … 20 20 21 21 if ( ! defined( 'RT_GOOGLE_EMBEDS_VERSION' ) ) { 22 define( 'RT_GOOGLE_EMBEDS_VERSION', '1.2 ' );22 define( 'RT_GOOGLE_EMBEDS_VERSION', '1.2.1' ); 23 23 } 24 24 -
embed-google-drive/trunk/includes/classes/class-rtcamp-google-embeds.php
r3012766 r3283908 39 39 40 40 return self::$instance; 41 42 41 } 43 42 … … 53 52 // Register custom oembed provider for google drive urls. 54 53 add_filter( 'oembed_providers', array( $this, 'oembed_providers' ) ); 55 56 54 } 57 55 … … 96 94 97 95 load_plugin_textdomain( 'rt-google-embeds', false, RT_GOOGLE_EMBEDS_PLUGIN_DIR . 'languages/' ); 98 99 96 } 100 97 … … 161 158 array( $this, 'wpdocs_embed_handler_google_drive' ) 162 159 ); 163 164 160 } 165 161 … … 189 185 ) 190 186 ); 191 192 187 } 193 188 … … 212 207 213 208 return ob_get_clean(); 214 215 209 } 216 210 … … 252 246 253 247 return false; 254 255 248 } 256 249 … … 287 280 ) 288 281 ); 289 290 282 } 291 283 … … 343 335 344 336 return new WP_REST_Response( $data, 200 ); 345 346 337 } 347 338 … … 362 353 363 354 return $matches[0]; 364 365 355 } 366 356 … … 383 373 $data['preview_url'] = $this->get_thumbnail_url( $file_id ); 384 374 return new WP_REST_Response( $data, 200 ); 385 386 } 387 375 } 388 376 } 389 377 -
embed-google-drive/trunk/languages/rt-google-embeds.po
r3232441 r3283908 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Embed Google Drive 1.2 \n"5 "Project-Id-Version: Embed Google Drive 1.2.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embed-google-drive\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
embed-google-drive/trunk/readme.txt
r3232441 r3283908 4 4 Tags: Google Drive, embed, spreadsheet, document, drawing 5 5 Requires at least: 5.5 6 Tested up to: 6. 7.16 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.2 8 Stable tag: 1.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 70 70 == Changelog == 71 71 72 = 1.2.1 = 73 * Chore: Plugin tested up to WordPress 6.8 74 * Chore: Doc update 75 72 76 = 1.2 = 73 77 * Chore: Plugin tested up to WordPress 6.7.1 … … 88 92 == Upgrade Notice == 89 93 94 = 1.2.1 = 95 * Chore: Plugin tested up to WordPress 6.8 96 * Chore: Doc update 97 90 98 = 1.2 = 91 99 * Chore: Plugin tested up to WordPress 6.7.1 92 100 * Chore: Doc update 93 94 = 1.1 =95 * Plugin tested upto WordPress 6.4.296 * PHP Version updated to 8.097 * Fixed PHP Coding Standards issues98 * Plugin is VIP compatible -
embed-google-drive/trunk/rt-google-embeds.php
r3232441 r3283908 4 4 * Description: Embed a link and preview of Google Drive Documents by pasting a shared document link into the editor. 5 5 * Plugin URI: https://github.com/rtCamp/embed-google-drive 6 * Version: 1.2 6 * Version: 1.2.1 7 7 * Author: rtCamp 8 8 * Text Domain: rt-google-embeds … … 20 20 21 21 if ( ! defined( 'RT_GOOGLE_EMBEDS_VERSION' ) ) { 22 define( 'RT_GOOGLE_EMBEDS_VERSION', '1.2 ' );22 define( 'RT_GOOGLE_EMBEDS_VERSION', '1.2.1' ); 23 23 } 24 24
Note: See TracChangeset
for help on using the changeset viewer.