diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-03 10:50:42 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-03 10:50:42 +0200 |
commit | 38e80ae890d2bd0eecc831c37b0937e54ed23be3 (patch) | |
tree | 1a75fea2d766ab4ae1e0758e534c3057494cc64a | |
parent | b8b1fb49a269e3f33dde70a72b0d6b441fba9f44 (diff) |
Improve statusbar message, update date
-rw-r--r-- | DESCRIPTION | 2 | ||||
-rw-r--r-- | inst/GUI/gmkin.R | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/DESCRIPTION b/DESCRIPTION index a816214..f6be6d4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,7 +2,7 @@ Package: gmkin Type: Package Title: GUI for fitting kinetic models to chemical degradation data with mkin Version: 0.5-1 -Date: 2014-05-07 +Date: 2014-07-03 Authors@R: c(person("Johannes", "Ranke", role = c("aut", "cre", "cph"), email = "jranke@uni-bremen.de"), person("Eurofins Regulatory AG", role = "cph")) diff --git a/inst/GUI/gmkin.R b/inst/GUI/gmkin.R index 71a9f04..7566824 100644 --- a/inst/GUI/gmkin.R +++ b/inst/GUI/gmkin.R @@ -21,8 +21,9 @@ # Set the GUI title and create the basic widget layout {{{1
w <- gwindow("gmkin - Browser based GUI for kinetic evaluations using mkin")
-sb <- gstatusbar(paste("Powered by gWidgetsWWW2, ExtJS, Rook, FME, deSolve",
- "and minpack.lm --- Working directory is", getwd()), cont = w)
+sb <- gstatusbar(paste("Powered by gWidgetsWWW2 (ExtJS, Rook)",
+ "and mkin (FME, deSolve and minpack.lm",
+ "--- Working directory is", getwd()), cont = w)
pg <- gpanedgroup(cont = w, default.size = 260)
center <- gnotebook(cont = pg)
left <- gvbox(cont = pg, use.scrollwindow = TRUE)
|