]> source.dussan.org Git - vaadin-core.git/commitdiff
Changed Changelog and Readme (components -> elements)
authorManolo Carrasco <manolo@apache.org>
Mon, 19 Oct 2015 07:50:22 +0000 (09:50 +0200)
committerManolo Carrasco <manolo@apache.org>
Mon, 19 Oct 2015 07:50:22 +0000 (09:50 +0200)
CHANGES.md
README.md

index 2d0e1f3abf6753367783a899150c451a94028c66..08f2b22ddad8372bdd8df38cc232d11c4fbfd31b 100644 (file)
@@ -1,3 +1,6 @@
+## Vaadin Elements 0.3.0-beta10 (2015-10-19)
+- Vaadin Components has been renamed to Vaadin Elements.
+
 ## Vaadin Components 0.3.0-beta10 (2015-10-09)
 - `<vaadin-grid>` updated to 0.9.0-beta3.
 
index 078ffb1c60c0041641ee6bd8034a3f7cf60aaf2a..1d020427b02388e260444813641f2928d17cfc54 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Vaadin Components
 
-[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) or [discuss on the vaadin.com forum](https://vaadin.com/forum/#!/category/9848927/)
+[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-elements?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) or [discuss on the vaadin.com forum](https://vaadin.com/forum/#!/category/9848927/)
 
 Vaadin Components is an evolving set of custom HTML elements, built using [Polymer](https://www.polymer-project.org), for building mobile and desktop web applications in modern browsers.
 
@@ -10,7 +10,7 @@ View live examples and source code side-by-side for individual custom elements.
 
 | Component | Description |
 | --- | --- |
-| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
+| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
 
 
 ### Quickstart
@@ -39,7 +39,7 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
  We recommend using [Bower](http://bower.io) for managing your front-end dependencies. Follow the [Bower installation instructions](http://bower.io/#install-bower), then run the following command inside your project folder to install the most recent stable release.
 
  ```shell
- $ bower install --save vaadin-components
+ $ bower install --save vaadin-elements
  ```
 
  This will download Vaadin Components and its dependencies to the `bower_components` folder inside your project's folder.
@@ -56,18 +56,18 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
 
  For example, to import vaadin-grid, use the following URL:
 
-   `https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/vaadin-grid.html`
+   `https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/vaadin-grid.html`
 
  To import all Vaadin Components, use the following URL:
 
-   `https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/vaadin-components.html`
+   `https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/vaadin-elements.html`
 
- > You can also use the nightly snapshot versions of any component, e.g. https://cdn.vaadin.com/vaadin-components/master/vaadin-grid/vaadin-grid.html
+ > You can also use the nightly snapshot versions of any component, e.g. https://cdn.vaadin.com/vaadin-elements/master/vaadin-grid/vaadin-grid.html
 
 
 - ##### Download ZIP
 
- 1. Download the latest ZIP archive from [vaadin.com/download](https://vaadin.com/download#components)
+ 1. Download the latest ZIP archive from [vaadin.com/download](https://vaadin.com/download#elements)
  2. Extract the archive under your project folder, for example `deps`
 
 #### 3. Create a HTML file
@@ -85,16 +85,16 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
     <!-- Import Web Component polyfills and all Vaadin Components -->
 
     <!-- CDN -->
-    <script src="https://cdn.vaadin.com/vaadin-components/latest/webcomponentsjs/webcomponents-lite.min.js"></script>
-    <link href="https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/vaadin-components.html" rel="import">
+    <script src="https://cdn.vaadin.com/vaadin-elements/latest/webcomponentsjs/webcomponents-lite.min.js"></script>
+    <link href="https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/vaadin-elements.html" rel="import">
 
     <!-- Bower -->
     <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
-    <link href="bower_components/vaadin-components/vaadin-components.html" rel="import"> -->
+    <link href="bower_components/vaadin-components/vaadin-elements.html" rel="import"> -->
 
     <!-- ZIP archive -->
     <!-- <script src="deps/webcomponentsjs/webcomponents-lite.min.js"></script>
-    <link href="deps/vaadin-components/vaadin-components.html" rel="import"> -->
+    <link href="deps/vaadin-elements/vaadin-elements.html" rel="import"> -->
   </head>
   <body>