Rebranding to ChronoChat
diff --git a/log4cxx.properties b/log4cxx.properties
new file mode 100644
index 0000000..6fd7658
--- /dev/null
+++ b/log4cxx.properties
@@ -0,0 +1,21 @@
+# Set root logger level to DEBUG and its only appender to A1.
+log4j.rootLogger=DEBUG, A1
+
+# A1 is set to be a ConsoleAppender.
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+
+# A1 uses PatternLayout.
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+log4j.appender.A1.target=System.err
+#log4j.appender.A1.layout.ConversionPattern=%d{dd-MMM HH:MM:SS,SSS} %p %c %m%n
+#log4j.appender.A1.layout.ConversionPattern=%d{hh:mm:ss,SSS} %-14t %-14c %m%n
+log4j.appender.A1.layout.ConversionPattern=%d{ss,SSS} %-12c %m%n
+
+log4j.logger.SyncLogic = TRACE
+#log4j.logger.SyncInterestTable = TRACE
+#log4j.logger.AppDataFetch = TRACE
+log4j.logger.Test = TRACE
+#log4j.logger.bgpparser=TRACE
+#log4j.logger.bgpparser.AttributeType=ERROR
+#log4j.logger.bgpparser.MRTCommonHeader=ERROR
+
diff --git a/osxdist.py b/osxdist.py
index 89bf401..ef704aa 100644
--- a/osxdist.py
+++ b/osxdist.py
@@ -368,30 +368,30 @@
# Do the finishing touches to our Application bundle before release
- a = AppBundle('Chronos.app', ver)
+ a = AppBundle('ChronoChat.app', ver)
a.copy_qt_plugins()
a.handle_libs()
a.copy_resources(['demo.icns', 'qt.conf'])
a.update_plist()
- a.set_min_macosx_version('10.7.0')
+ a.set_min_macosx_version('10.8.0')
a.done()
# Sign our binaries, etc.
if options.codesign:
print ' * Signing binaries with identity `%s\'' % options.codesign
binaries = (
- 'Chronos.app',
+ 'ChronoChat.app',
)
codesign(binaries)
print ''
# Create diskimage
- title = "Chronos-Snapshot-%s" % ver
+ title = "ChronosChat %s" % ver
fn = "%s.dmg" % title
d = DiskImage(fn, title)
d.symlink('/Applications', '/Applications')
- d.copy('Chronos.app', '/Chronos.app')
+ d.copy('ChronoChat.app', '/ChronoChat.app')
d.copy('README', '/README.txt')
d.create()
diff --git a/sync-demo.pro b/sync-demo.pro
index 09d697f..e86a54d 100644
--- a/sync-demo.pro
+++ b/sync-demo.pro
@@ -1,5 +1,5 @@
TEMPLATE = app
-TARGET = Chronos
+TARGET = ChronoChat
DEFINES += __DEBUG
HEADERS = chatdialog.h \
digesttreescene.h \