Skip to content

Commit f290cc9

Browse files
committed
Support layout created/modified with 0.9.0+ Editor
1 parent 5ad7444 commit f290cc9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ We tested the following platform:
3232

3333
## Supported Layout versions
3434

35-
Support a layout file that created/modified with 0.8.0+ Editor.
35+
Support a layout file that created/modified with 0.9.0+ Editor.
3636

3737
## Getting Started
3838

app/editor/layout/layout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ goog.require('thin.Compatibility');
2525
* @enum {Array.<Array>}
2626
*/
2727
thin.layout.CompatibilityRule = {
28-
ALL: [['>=', '0.8.0'], ['<', thin.getNextMajorVersion()]],
29-
COMPLETE: [['>=', '0.8.0'], ['<=', thin.getVersion()]],
28+
ALL: [['>=', '0.9.0'], ['<', thin.getNextMajorVersion()]],
29+
COMPLETE: [['>=', '0.9.0'], ['<=', thin.getVersion()]],
3030
WARNING: [['>', thin.getVersion()], ['<', thin.getNextMajorVersion()]]
3131
};
3232

0 commit comments

Comments
 (0)