-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappConstants.R
More file actions
38 lines (34 loc) · 1.15 KB
/
appConstants.R
File metadata and controls
38 lines (34 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# global constants available to the app
# last update:2016-01-17
# constants required for every app
appName <- 'gonimo'
appTitle <- 'Gonimo'
app_id <- 'eu.ownyourdata.gonimo'
helpUrl <- 'https://www.ownyourdata.eu/apps/gonimo'
mobileUrl <- ''
# definition of data structure
currRepoSelect <- ''
appRepos <- list(Vorlage = 'eu.ownyourdata.gonimo',
Verlauf = 'eu.ownyourdata.gonimo.log')
appStruct <- list(
Vorlage = list(
fields = c('text'),
fieldKey = 'text',
fieldTypes = c('string'),
fieldInits = c('empty'),
fieldTitles = c('Text'),
fieldWidths = c(600)),
Verlauf = list(
fields = c('date', 'description'),
fieldKey = 'date',
fieldTypes = c('date', 'string'),
fieldInits = c('empty', 'empty'),
fieldTitles = c('Datum', 'Text'),
fieldWidths = c(150, 450)))
# Version information
currVersion <- "0.3.0"
verHistory <- data.frame(rbind(
c(version = "0.3.0",
text = "erstes Release")
))
# app specific constants