Skip to content

Commit

Permalink
1.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
evs-chris committed Mar 11, 2023
1 parent 4e58ae5 commit 1abbedc
Show file tree
Hide file tree
Showing 14 changed files with 56 additions and 48 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.1",
"version": "1.4.2",
"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.1",
"version": "1.4.2",
"homepage": "https://ractive.js.org",
"license": "MIT",
"main": "ractive.js",
Expand Down
18 changes: 10 additions & 8 deletions ractive.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Ractive.js v1.4.2
Build: d08f9e0d50cdd62c3c44a94944852b81d1c95972
Date: Fri Mar 10 2023 19:12:23 GMT-0500 (Eastern Standard 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.1 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.2 %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.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";
var welcomeMessage = "You're running Ractive 1.4.2 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 @@ -6662,7 +6662,9 @@ function resolveReference(fragment, ref) {
var part = parts.shift();

if (part === '..') {
context$1 = context$1.parent;
// treat reference expressions as their model
if (!context$1.parent && context$1.proxy && context$1.target) { context$1 = context$1.target.parent; }
else { context$1 = context$1.parent; }
}
}

Expand Down Expand Up @@ -19344,7 +19346,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.1.");
warn("Ractive already appears to be loaded while loading 1.4.2.");
}

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

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

// 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.

18 changes: 10 additions & 8 deletions ractive.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Ractive.js v1.4.2
Build: d08f9e0d50cdd62c3c44a94944852b81d1c95972
Date: Fri Mar 10 2023 19:12:23 GMT-0500 (Eastern Standard 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.1 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.2 %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.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";
var welcomeMessage = "You're running Ractive 1.4.2 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 @@ -6651,7 +6651,9 @@ function resolveReference(fragment, ref) {
var part = parts.shift();

if (part === '..') {
context$1 = context$1.parent;
// treat reference expressions as their model
if (!context$1.parent && context$1.proxy && context$1.target) { context$1 = context$1.target.parent; }
else { context$1 = context$1.parent; }
}
}

Expand Down Expand Up @@ -19333,7 +19335,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.1.");
warn("Ractive already appears to be loaded while loading 1.4.2.");
}

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

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

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

Large diffs are not rendered by default.

18 changes: 10 additions & 8 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.

18 changes: 10 additions & 8 deletions runtime.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Ractive.js v1.4.1
Build: 040252280a624fb2ed7850440aec704e42533122
Date: Tue Sep 27 2022 16:26:39 GMT-0400 (Eastern Daylight Time)
Ractive.js v1.4.2
Build: d08f9e0d50cdd62c3c44a94944852b81d1c95972
Date: Fri Mar 10 2023 19:12:23 GMT-0500 (Eastern Standard 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.1 %cin debug mode, %cmore...",
"%cRactive.js %c1.4.2 %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.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";
var welcomeMessage = "You're running Ractive 1.4.2 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 @@ -2811,7 +2811,9 @@ function resolveReference(fragment, ref) {
var part = parts.shift();

if (part === '..') {
context$1 = context$1.parent;
// treat reference expressions as their model
if (!context$1.parent && context$1.proxy && context$1.target) { context$1 = context$1.target.parent; }
else { context$1 = context$1.parent; }
}
}

Expand Down Expand Up @@ -16324,7 +16326,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.1.");
warn("Ractive already appears to be loaded while loading 1.4.2.");
}

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

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

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

Large diffs are not rendered by default.

0 comments on commit 1abbedc

Please sign in to comment.