diff --git a/README.md b/README.md index 54105a4..4ad498a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,18 @@ -log4javascript -============== +# log4javascript -http://log4javascript.org + -It contains the log4javascript lib prepared to be used with npm +It contains the log4javascript lib prepared to be used with npm. + +Unfortunately, the npm package 1.4.16 still contains log4javascript 1.4.13. +It was necessary to increase the version since the new package contains also TypeScript definitions. + +## Changes + +1.4.16 (6-Dec-2020) + +- improve typescript definitions + +1.4.15 (13-May-2016) + +- add typescript definitions diff --git a/changelog.txt b/changelog.txt index abf21c2..b41b702 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,21 @@ log4javascript change log ------------------------- +1.4.13 (23/5/2015) +- Fix for BrowserConsolerAppender regression in last version (feature request + 14) + +1.4.12 (14/5/2015) +- Fix for BrowserConsolerAppender error in IE <= 8 (issue 18) + +1.4.11 (19/2/2015) +- Fix for CORS requests in IE 10+ +- Remove message when sending remaining Ajax log messages when unloading + +1.4.10 (28/9/2014) +- AMD support added +- Fix for issue 16: getDefaultLogger() broken in production edition + 1.4.9 (12/5/2014) - Fix for typo in BrowserConsoleAppender @@ -31,7 +46,7 @@ log4javascript change log at the expense of popping up a confirm dialog. That being the case, it is now disabled by default. -- Removed leaked global variable "initialized" +- Removed leaked global variable "initialized" - Fixed bugs #3528265, #3560924, #3560922, #2805479, #3510639 on Sourceforge Tracker diff --git a/console_uncompressed.html b/console_uncompressed.html index 55679f8..fffe334 100644 --- a/console_uncompressed.html +++ b/console_uncompressed.html @@ -162,7 +162,7 @@ } } else { var groupElementContainer = this; - + this.mainDiv = document.createElement("div"); this.mainDiv.className = "group"; @@ -174,7 +174,7 @@ this.expander.unselectable = true; var expanderText = this.group.expanded ? "-" : "+"; this.expanderTextNode = this.expander.appendChild(document.createTextNode(expanderText)); - + this.headingDiv.appendChild(document.createTextNode(" " + this.group.name)); this.contentDiv = this.mainDiv.appendChild(document.createElement("div")); @@ -632,7 +632,7 @@ rootGroup = new Group("root", true); rootGroup.render(); currentGroup = rootGroup; - + setCommandInputWidth(); setLogContainerHeight(); toggleLoggingEnabled(); @@ -757,9 +757,9 @@ function LogItemContentReverser() { } - + LogItemContentReverser.prototype = new LogItemVisitor(); - + LogItemContentReverser.prototype.visitGroup = function(group) { group.reverseChildren(); this.visitChildren(group); @@ -1779,10 +1779,10 @@ if (!Array.prototype.push) { Array.prototype.push = function() { - for (var i = 0, len = arguments.length; i < len; i++){ - this[this.length] = arguments[i]; - } - return this.length; + for (var i = 0, len = arguments.length; i < len; i++){ + this[this.length] = arguments[i]; + } + return this.length; }; } @@ -2130,7 +2130,7 @@ span.pre { white-space: pre; } - + pre.unwrapped { display: inline !important; } diff --git a/docs/lite.html b/docs/lite.html index 13a942d..375ed12 100644 --- a/docs/lite.html +++ b/docs/lite.html @@ -80,7 +80,7 @@

Code

if(!Array.prototype.shift){Array.prototype.shift=function(){if(this.length>0){var firstItem=this[0];for(var i=0,len=this.length-1;ilog4javascript 1.4 manual

Contents