Skip to content

Commit

Permalink
1.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
evs-chris committed Sep 27, 2022
1 parent 68a6f4d commit 4e58ae5
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 46 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ractive",
"description": "Next-generation DOM manipulation",
"version": "1.4.0",
"version": "1.4.1",
"homepage": "https://ractive.js.org",
"license": "MIT",
"main": "ractive.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ractive",
"description": "Next-generation DOM manipulation",
"version": "1.4.0",
"version": "1.4.1",
"homepage": "https://ractive.js.org",
"license": "MIT",
"main": "ractive.js",
Expand Down
20 changes: 13 additions & 7 deletions ractive.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.0
Build: cf2bc5f2a151700d010d1ddc802f4a663e067d28
Date: Fri Feb 25 2022 00:20:23 GMT-0500 (Eastern Standard Time)
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Website: https://ractive.js.org
License: MIT
*/
Expand Down Expand Up @@ -537,13 +537,13 @@ var welcome;

if (hasConsole) {
var welcomeIntro = [
"%cRactive.js %c1.4.0 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.1 %cin debug mode, %cmore...",
'color: rgb(114, 157, 52); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(82, 140, 224); font-weight: normal; text-decoration: underline;'
];
var welcomeMessage = "You're running Ractive 1.4.0 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";
var welcomeMessage = "You're running Ractive 1.4.1 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";

welcome = function () {
if (Ractive.WELCOME_MESSAGE === false) {
Expand Down Expand Up @@ -6468,8 +6468,14 @@ var Model = (function (ModelBase) {
if (key === 'data') {
var val = this.retrieve();
if (val && val.viewmodel && val.viewmodel.isRoot) {
// this needs to happen in a runloop, as it can cause bubbling
var batch$$1 = runloop.active();
if (!batch$$1) { runloop.start(); }

child.link(val.viewmodel, 'data');
this.dataModel = val;

if (!batch$$1) { runloop.end(); }
}
}
}
Expand Down Expand Up @@ -19338,7 +19344,7 @@ if (win && !win.Ractive) {
/* istanbul ignore next */
if (~opts$1.indexOf('ForceGlobal')) { win.Ractive = Ractive; }
} else if (win) {
warn("Ractive already appears to be loaded while loading 1.4.0.");
warn("Ractive already appears to be loaded while loading 1.4.1.");
}

assign(Ractive.prototype, proto$9, defaults);
Expand Down Expand Up @@ -19385,7 +19391,7 @@ defineProperties(Ractive, {
},

// version
VERSION: { value: '1.4.0' },
VERSION: { value: '1.4.1' },

// plugins
adaptors: { writable: true, value: {} },
Expand Down
2 changes: 1 addition & 1 deletion ractive.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions ractive.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ractive.min.js.map

Large diffs are not rendered by default.

22 changes: 14 additions & 8 deletions ractive.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.0
Build: cf2bc5f2a151700d010d1ddc802f4a663e067d28
Date: Fri Feb 25 2022 00:20:23 GMT-0500 (Eastern Standard Time)
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Website: https://ractive.js.org
License: MIT
*/
Expand Down Expand Up @@ -526,13 +526,13 @@ var welcome;

if (hasConsole) {
var welcomeIntro = [
"%cRactive.js %c1.4.0 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.1 %cin debug mode, %cmore...",
'color: rgb(114, 157, 52); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(82, 140, 224); font-weight: normal; text-decoration: underline;'
];
var welcomeMessage = "You're running Ractive 1.4.0 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";
var welcomeMessage = "You're running Ractive 1.4.1 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";

welcome = function () {
if (Ractive.WELCOME_MESSAGE === false) {
Expand Down Expand Up @@ -6457,8 +6457,14 @@ var Model = (function (ModelBase) {
if (key === 'data') {
var val = this.retrieve();
if (val && val.viewmodel && val.viewmodel.isRoot) {
// this needs to happen in a runloop, as it can cause bubbling
var batch$$1 = runloop.active();
if (!batch$$1) { runloop.start(); }

child.link(val.viewmodel, 'data');
this.dataModel = val;

if (!batch$$1) { runloop.end(); }
}
}
}
Expand Down Expand Up @@ -19327,7 +19333,7 @@ if (win && !win.Ractive) {
/* istanbul ignore next */
if (~opts$1.indexOf('ForceGlobal')) { win.Ractive = Ractive; }
} else if (win) {
warn("Ractive already appears to be loaded while loading 1.4.0.");
warn("Ractive already appears to be loaded while loading 1.4.1.");
}

assign(Ractive.prototype, proto$9, defaults);
Expand Down Expand Up @@ -19374,7 +19380,7 @@ defineProperties(Ractive, {
},

// version
VERSION: { value: '1.4.0' },
VERSION: { value: '1.4.1' },

// plugins
adaptors: { writable: true, value: {} },
Expand Down Expand Up @@ -19415,4 +19421,4 @@ defineProperty(Ractive.prototype, 'rendered', {
});

export default Ractive;
//# sourceMappingURL=/media/sync/dev/js/ractive/.gobble-build/10-transpile/.cache/ractive.mjs.map
//# sourceMappingURL=/home/chris/sync/dev/js/ractive/.gobble-build/10-transpile/.cache/ractive.mjs.map
2 changes: 1 addition & 1 deletion ractive.mjs.map

Large diffs are not rendered by default.

20 changes: 13 additions & 7 deletions runtime.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions runtime.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion runtime.min.js.map

Large diffs are not rendered by default.

22 changes: 14 additions & 8 deletions runtime.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.0
Build: cf2bc5f2a151700d010d1ddc802f4a663e067d28
Date: Fri Feb 25 2022 00:20:23 GMT-0500 (Eastern Standard Time)
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Website: https://ractive.js.org
License: MIT
*/
Expand Down Expand Up @@ -526,13 +526,13 @@ var welcome;

if (hasConsole) {
var welcomeIntro = [
"%cRactive.js %c1.4.0 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.1 %cin debug mode, %cmore...",
'color: rgb(114, 157, 52); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(85, 85, 85); font-weight: normal;',
'color: rgb(82, 140, 224); font-weight: normal; text-decoration: underline;'
];
var welcomeMessage = "You're running Ractive 1.4.0 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";
var welcomeMessage = "You're running Ractive 1.4.1 in debug mode - messages will be printed to the console to help you fix problems and optimise your application.\n\nTo disable debug mode, add this line at the start of your app:\n Ractive.DEBUG = false;\n\nTo disable debug mode when your app is minified, add this snippet:\n Ractive.DEBUG = /unminified/.test(function(){/*unminified*/});\n\nGet help and support:\n http://ractive.js.org\n http://stackoverflow.com/questions/tagged/ractivejs\n http://groups.google.com/forum/#!forum/ractive-js\n http://twitter.com/ractivejs\n\nFound a bug? Raise an issue:\n https://github.com/ractivejs/ractive/issues\n\n";

welcome = function () {
if (Ractive.WELCOME_MESSAGE === false) {
Expand Down Expand Up @@ -2617,8 +2617,14 @@ var Model = (function (ModelBase) {
if (key === 'data') {
var val = this.retrieve();
if (val && val.viewmodel && val.viewmodel.isRoot) {
// this needs to happen in a runloop, as it can cause bubbling
var batch$$1 = runloop.active();
if (!batch$$1) { runloop.start(); }

child.link(val.viewmodel, 'data');
this.dataModel = val;

if (!batch$$1) { runloop.end(); }
}
}
}
Expand Down Expand Up @@ -16318,7 +16324,7 @@ if (win && !win.Ractive) {
/* istanbul ignore next */
if (~opts$1.indexOf('ForceGlobal')) { win.Ractive = Ractive; }
} else if (win) {
warn("Ractive already appears to be loaded while loading 1.4.0.");
warn("Ractive already appears to be loaded while loading 1.4.1.");
}

assign(Ractive.prototype, proto$9, defaults);
Expand Down Expand Up @@ -16361,7 +16367,7 @@ defineProperties(Ractive, {
},

// version
VERSION: { value: '1.4.0' },
VERSION: { value: '1.4.1' },

// plugins
adaptors: { writable: true, value: {} },
Expand Down Expand Up @@ -16402,4 +16408,4 @@ defineProperty(Ractive.prototype, 'rendered', {
});

export default Ractive;
//# sourceMappingURL=/media/sync/dev/js/ractive/.gobble-build/13-transpile/.cache/runtime.mjs.map
//# sourceMappingURL=/home/chris/sync/dev/js/ractive/.gobble-build/13-transpile/.cache/runtime.mjs.map
2 changes: 1 addition & 1 deletion runtime.mjs.map

Large diffs are not rendered by default.

0 comments on commit 4e58ae5

Please sign in to comment.