Skip to content

Commit da3b74b

Browse files
committed
Location updates
1 parent 43bbbb4 commit da3b74b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

modules/cbdebugger/changelog.md renamed to changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ CHANGELOG
22
=========
33

44
## 1.4.0
5+
# ColdBox Tracer Appender added by Default by Eric Peterson
56

67
## 1.3.0
78
* Travis integration

modules/cbdebugger/ModuleConfig.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ component {
77

88
// Module Properties
99
this.title = "ColdBox Debugger";
10-
this.author = "Curt Gratz";
10+
this.author = "Curt Gratz - Ortus Solutions";
1111
this.webURL = "http://www.ortussolutions.com";
1212
this.description = "The ColdBox Debugger Module";
1313
this.version = "@version.number@[email protected]@";
@@ -123,7 +123,7 @@ component {
123123

124124
// Register the appender with the root loggger, and turn the logger on.
125125
var root = logBox.getRootLogger();
126-
root.addAppender( appenders['tracer'] );
126+
root.addAppender( appenders[ 'tracer' ] );
127127
root.setLevelMax( 4 );
128128
root.setLevelMin( 0 );
129129
}

modules/cbdebugger/box.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,17 @@
44
"version" : "@version.number@[email protected]@",
55
"slug" : "cbdebugger",
66
"type" : "modules",
7-
"homepage" : "https://github.com/ColdBox/cbox-debugger",
8-
"documentation" : "https://github.com/ColdBox/cbox-debugger",
9-
"repository" : { "type" : "git", "url" : "https://github.com/ColdBox/cbox-debugger" },
7+
"homepage" : "https://github.com/coldbox-modules/cbox-debugger",
8+
"bugs" : "https://github.com/coldbox-modules/cbox-debugger/issues",
9+
"documentation" : "https://github.com/coldbox-modules/cbox-debugger",
10+
"repository" : { "type" : "git", "url" : "https://github.com/coldbox-modules/cbox-debugger" },
1011
"shortDescription" : "The official ColdBox 4 debugger module",
1112
"license" : [
1213
{ "type" : "Apache2", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html" }
1314
],
1415
"contributors" : [
1516
"Curt Gratz <[email protected]", "Brad Wood <[email protected]>", "Luis Majano <[email protected]>"
1617
],
17-
"engines" : [
18-
{ "type" : "lucee", "version" : ">4.5" },
19-
{ "type" : "adobe", "version" : ">9.02" }
20-
],
2118
"ignore":[
2219
"**/.*",
2320
"tests",

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Apache License, Version 2.0.
99
##IMPORTANT LINKS
1010
- https://github.com/ColdBox/cbox-debugger
1111
- http://www.coldbox.org/forgebox/view/cbdebugger
12+
- [ChangeLog](changelog.md)
1213

1314
##SYSTEM REQUIREMENTS
1415
- Lucee 4.5+

workbench/build.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
</copy>
7070
<!-- Copy readme -->
7171
<copy todir="${dir.build}" encoding="UTF-8" file="readme.md" overwrite="true" />
72+
<copy todir="${dir.build}" encoding="UTF-8" file="changelog.md" overwrite="true" />
7273

7374
<!-- Replace Version + Build Numbers -->
7475
<replaceregexp match='@version.number@' replace="${project.version}" flags="ig" byline="true" encoding="UTF-8">

0 commit comments

Comments
 (0)