Changeset 1027476
- Timestamp:
- 11/17/2014 08:31:57 PM (11 years ago)
- Location:
- polymer-components/trunk
- Files:
-
- 1 deleted
- 4 edited
-
bower.json (modified) (1 diff)
-
components (deleted)
-
conf.php (modified) (1 diff)
-
polymer-components.php (modified) (5 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
polymer-components/trunk/bower.json
r1015780 r1027476 16 16 ], 17 17 "dependencies": { 18 " polymer": "Polymer/polymer#~0.4.2",19 "core-elements": " Polymer/core-elements#~0.4.2",20 "paper-elements": " Polymer/paper-elements#~0.4.2"18 "webcomponentsjs": "polymer/webcomponentsjs#^0.5.1", 19 "core-elements": "polymer/core-elements#~0.5.1", 20 "paper-elements": "polymer/paper-elements#~0.5.1" 21 21 } 22 22 } -
polymer-components/trunk/conf.php
r1027346 r1027476 1 1 <?php 2 define( 'POLYMER_VERSION', '0. 4.2' );2 define( 'POLYMER_VERSION', '0.5.1' ); 3 3 4 4 define( 'POLYMER_COMPONENTS_MAIN', 'polymer-components/polymer-components.php' ); -
polymer-components/trunk/polymer-components.php
r1027346 r1027476 4 4 * Plugin URI: http://blocknot.es/ 5 5 * Description: Add Polymer elements to your website! 6 * Version: 1. 2.86 * Version: 1.3.0 7 7 * Author: Mattia Roccoberton 8 8 * Author URI: http://blocknot.es 9 9 * License: GPL3 10 10 * 11 * Note: polymer with bower; removed: core-scroll-header-panel/demos, google-code-prettify, polymer-test-tools, web-animations-js/test, web-animations-js/tools, web-animations-js/tutorial11 * Polymer from bower; removed: core-list/demos core-scroll-header-panel/demos google-code-prettify marked/test polymer-test-tools web-animations-next/test 12 12 * 13 13 * ToDo: 14 * - Polymer 0.5.115 14 * - area to manage custom elements 16 15 */ … … 42 41 'core-iconset' => 'core-iconset/core-iconset.html', 43 42 'core-iconset-svg' => 'core-iconset-svg/core-iconset-svg.html', 43 'core-image' => 'core-image/core-image.html', 44 44 'core-input' => 'core-input/core-input.html', 45 45 'core-item' => 'core-item/core-item.html', 46 'core-label' => 'core-label/core-label.html', 46 47 'core-list' => 'core-list/core-list.html', 47 48 'core-localstorage' => 'core-localstorage/core-localstorage.html', … … 71 72 'paper-dialog-transition' => 'paper-dialog/paper-dialog-transition.html', 72 73 'paper-dialog' => 'paper-dialog/paper-dialog.html', 74 'paper-dropdown' => 'paper-dropdown/paper-dropdown.html', 73 75 'paper-dropdown-menu' => 'paper-dropdown-menu/paper-dropdown-menu.html', 74 76 'paper-fab' => 'paper-fab/paper-fab.html', … … 84 86 'paper-shadow' => 'paper-shadow/paper-shadow.html', 85 87 'paper-slider' => 'paper-slider/paper-slider.html', 88 'paper-spinner' => 'paper-spinner/paper-spinner.html', 86 89 'paper-tab' => 'paper-tabs/paper-tab.html', 87 90 'paper-tabs' => 'paper-tabs/paper-tabs.html', … … 166 169 { // action 167 170 global $post; 168 wp_enqueue_script( 'polymer- platform-script', plugin_dir_url( __FILE__ ) . 'components/platform/platform.js', array() );171 wp_enqueue_script( 'polymer-webcomponentsjs', plugin_dir_url( __FILE__ ) . 'components/webcomponentsjs/webcomponents.js', array() ); 169 172 if( is_singular() ) 170 173 { // Single posts and pages -
polymer-components/trunk/readme.txt
r1027355 r1027476 5 5 Requires at least: 3.5.0 6 6 Tested up to: 4.0 7 Stable tag: trunk7 Stable tag: 1.3.0 8 8 License: GPL3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.txt … … 14 14 == Description == 15 15 16 This plugin allows to add Polymer elements to your posts and pages, the same components used in Android Lollipop. You can use the HTML editor with the Polymer tags or the shortcode *[poly]* for all the elements. The correct HTML libraries will be loaded automatically.17 Polymer website: http://www.polymer-project.org/16 This plugin allows to add Polymer elements in your posts and pages, the same components used in Android Lollypop. You can use the HTML editor with the Polymer tags or the shortcode *[poly]* for all the elements. The correct HTML libraries will be loaded automatically. 17 Polymer documentation page: http://www.polymer-project.org/ 18 18 19 Notice: Polymer is still in *developer* *preview* ,some constructs may change in future. A modern browser is required to run Polymer apps.19 Notice: Polymer is still in *developer* *preview* so some constructs may change in future. A modern browser is required to run Polymer apps. 20 20 21 21 Features: … … 81 81 == Upgrade Notice == 82 82 83 = 1.3.0 = 84 * Update Polymer to 0.5.1 83 85 = 1.2.8 = 84 86 * New setting: CSS editor on/off … … 95 97 == Changelog == 96 98 99 = 1.3.0 = 100 * Update Polymer to 0.5.1 97 101 = 1.2.8 = 98 102 * New setting: CSS editor on/off
Note: See TracChangeset
for help on using the changeset viewer.