From c964730f03e4a26efe8021af0e64741a8ab0cd1c Mon Sep 17 00:00:00 2001 From: "jdbernard@localhost" Date: Sun, 11 Apr 2010 16:00:50 +0200 Subject: [PATCH] Upgraded to Griffon 0.3 --- TimeStamper.iml | 2 +- TimeStamper.ipr | 48 +++++++++++++---------------- application.properties | 3 +- griffon-app/conf/Application.groovy | 12 +++----- 4 files changed, 29 insertions(+), 36 deletions(-) diff --git a/TimeStamper.iml b/TimeStamper.iml index 1d1dd7e..fcef4e2 100644 --- a/TimeStamper.iml +++ b/TimeStamper.iml @@ -28,7 +28,7 @@ - + diff --git a/TimeStamper.ipr b/TimeStamper.ipr index 4b1dc82..a93361e 100644 --- a/TimeStamper.ipr +++ b/TimeStamper.ipr @@ -10,53 +10,47 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + diff --git a/application.properties b/application.properties index 843029c..168a320 100755 --- a/application.properties +++ b/application.properties @@ -1,5 +1,6 @@ #Do not edit app.griffon.* properties, they may change automatically. DO NOT put application configuration in here, it is not the right place! +#Sun, 11 Apr 2010 16:00:38 +0200 #Thu Apr 01 22:28:40 CDT 2010 app.version=2.0 -app.griffon.version=0.2.1 +app.griffon.version=0.3 app.name=TimeStamper diff --git a/griffon-app/conf/Application.groovy b/griffon-app/conf/Application.groovy index f65b7e2..fa4b97c 100755 --- a/griffon-app/conf/Application.groovy +++ b/griffon-app/conf/Application.groovy @@ -4,13 +4,11 @@ application { autoShutdown=true } mvcGroups { - // MVC Group for "com.jdbernard.timestamper.LogDialog" - 'LogDialog' { - model = 'com.jdbernard.timestamper.LogDialogModel' - controller = 'com.jdbernard.timestamper.LogDialogController' - view = 'com.jdbernard.timestamper.LogDialogView' - } - + LogDialog { + model="com.jdbernard.timestamper.LogDialogModel" + controller="com.jdbernard.timestamper.LogDialogController" + view="com.jdbernard.timestamper.LogDialogView" + } TimeStamperMain { model="com.jdbernard.timestamper.TimeStamperMainModel" view="com.jdbernard.timestamper.TimeStamperMainView"