diff --git a/README.md b/README.md
index 2b5d85cd..6a216a93 100644
--- a/README.md
+++ b/README.md
@@ -1,134 +1,10 @@
# three-mesh-ui
-
-
-
-
-
-
+Branch 7.1.x is ready to starts 7.x.x evaluation period.
+It has no release but its source code
-
-
-
-
-
-
-
-
-## [Examples 7.x.x (live)](https://felixmariotto.github.io/three-mesh-ui/7.x.x/) | [NPM](https://www.npmjs.com/package/three-mesh-ui) | [Documentation](https://github.com/felixmariotto/three-mesh-ui/wiki) | [Contributing](https://github.com/felixmariotto/three-mesh-ui/wiki/Roadmap-&-Contributions)
-
-# What is it ?
-
-**three-mesh-ui** is a small library for building VR user interfaces. The objects it creates are [three.object3Ds](https://github.com/mrdoob/three.js/blob/dev/src/core/Object3D.js), usable directly in a [three.js](https://threejs.org) scene like any other Object3D.
-
-**It is not a framework**, but a minimalist library to be used with the last version of three.js. It has no dependency but three.js.
-
-# Why ?
-
-In a normal three.js workflow, the common practice is to build user interfaces with HTML/CSS.
-
-In immersive VR, it is impossible, therefore this library was created.
-
-# Quick Start
-
-## Try it now
-
-Give it a try in [this jsFiddle](https://jsfiddle.net/felixmariotto/y81rf5t2/44/)
-
-Using react-three-fiber ? Here is a [codesandbox](https://codesandbox.io/s/react-three-mesh-ui-forked-v7n0b?file=/src/index.js) to get started.
-
-## Import
-### JSM
-#### With NPM
-`npm install three-mesh-ui`
-*:warning: It requires three as peer dependency*
-
-##### ES6 ([codesandbox demo](https://codesandbox.io/s/npm-package-demo-2onzpo))
-
-```javascript
-import ThreeMeshUI from 'three-mesh-ui'
-```
-
-##### CommonJS
-```javascript
-const ThreeMeshUI = require('three-mesh-ui');
-```
-
-##### HTML <script> tag ([codesandbox demo](https://codesandbox.io/s/module-build-demo-bkmfi8?file=/index.html:281-913))
-```html
-
-
-
-
-
-
-```
-:muscle: *You can use the minified version named __three-mesh-ui.module.min.js__ ([codesandbox demo](https://codesandbox.io/s/module-build-demo-minified-pm6jwx))*
-
-
-### JS
-#### HTML <script> tag ([codesandbox demo](https://codesandbox.io/s/js-build-demo-061eku))
-```html
-
-
-
-
-
-
-
-
-```
-:muscle: *You can use the minified version named __three-mesh-ui.min.js__ ([codesandbox demo](https://codesandbox.io/s/js-build-demo-minified-onh8zi))*
-:warning: *Although this would theorically allows you to build 'something', loading js libraries instead of using jsm, might restrict the global features you would have. This is true for both three and three-mesh-ui libraries.*
-
-
-## Font files
-
-In order to display some text with three-mesh-ui, you will need to provide font files.
-You can use the two files named `Roboto-msdf` in [this directory](https://github.com/felixmariotto/three-mesh-ui/tree/master/examples/assets), or [create your own font files](https://github.com/felixmariotto/three-mesh-ui/wiki/Creating-your-own-fonts)
-
-## API
-
-Here is an example of basic three-mesh-ui usage :
-
-```javascript
-const container = new ThreeMeshUI.Block({
- width: 1.2,
- height: 0.7,
- padding: 0.2,
- fontFamily: './assets/Roboto-msdf.json',
- fontTexture: './assets/Roboto-msdf.png',
-});
-
-//
-
-const text = new ThreeMeshUI.Text({
- content: "Some text to be displayed"
-});
-
-container.add( text );
-
-// scene is a THREE.Scene (see three.js)
-scene.add( container );
-
-// This is typically done in the render loop :
-ThreeMeshUI.update();
-```
+## [Examples (7.x.x)](https://felixmariotto.github.io/three-mesh-ui/7.x.x/)
+## [Documentation (7.x.x)](https://github.com/felixmariotto/three-mesh-ui/wiki)
+## [Contributing (7.x.x)](https://github.com/felixmariotto/three-mesh-ui/wiki/Roadmap-&-Contributions)
diff --git a/build/build.browser.html b/build/build.browser.html
index 62ce7ca4..1e438442 100644
--- a/build/build.browser.html
+++ b/build/build.browser.html
@@ -11,7 +11,7 @@
-
+
@@ -77,7 +77,7 @@
container.add(
new ThreeMeshUI.Text( {
- content: 'three-mesh-ui.js',
+ textContent: 'three-mesh-ui.js\n7.x.x',
fontSize: 0.125
} ),
);
diff --git a/build/build.browser.min.html b/build/build.browser.min.html
index 1cf26c17..a7d78928 100644
--- a/build/build.browser.min.html
+++ b/build/build.browser.min.html
@@ -11,7 +11,7 @@
-
+
@@ -77,7 +77,7 @@
container.add(
new ThreeMeshUI.Text( {
- content: 'three-mesh-ui.min.js',
+ textContent: 'three-mesh-ui.min.js\n7.x.x',
fontSize: 0.125
} ),
);
diff --git a/build/build.module.html b/build/build.module.html
index d0632820..dfca60c0 100644
--- a/build/build.module.html
+++ b/build/build.module.html
@@ -14,8 +14,8 @@
@@ -86,7 +86,7 @@
container.add(
new ThreeMeshUI.Text( {
- content: 'three-mesh-ui.module.js',
+ textContent: 'three-mesh-ui.module.js\n7.x.x',
fontSize: 0.125
} ),
);
diff --git a/build/build.module.min.html b/build/build.module.min.html
index 352f95e0..95eda421 100644
--- a/build/build.module.min.html
+++ b/build/build.module.min.html
@@ -14,7 +14,7 @@