Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
cc50e382
Commit
cc50e382
authored
Jun 07, 2019
by
Piotr Gawron
Browse files
caching is active by default
parent
43bb301d
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
cc50e382
...
...
@@ -5,6 +5,8 @@ minerva (14.0.0~alpha.0) unstable; urgency=low
*
Feature
:
Replaced
connection
pool
manager
C3P0
with
better
maintained
Hikari
(#
564
)
*
Feature
removal
:
BioCompendium
annotator
removed
(#
32
)
*
Small
improvement
:
caching
is
active
by
default
for
new
users
when
uploading
project
(#
202
)
*
Bug
fix
:
export
to
CellDesigner
of
reaction
with
two
modifiers
connected
with
boolean
operator
resulted
was
skipping
some
layout
information
*
Bug
fix
:
reaction
in
SBGNML
file
containing
two
products
was
improperly
...
...
frontend-js/package-lock.json
View file @
cc50e382
This diff is collapsed.
Click to expand it.
frontend-js/src/main/js/gui/admin/AddProjectDialog.js
View file @
cc50e382
...
...
@@ -290,7 +290,7 @@ AddProjectDialog.prototype.createGeneralTabContent = function () {
}));
table
.
appendChild
(
self
.
createCheckboxRow
({
labelName
:
"
Cache data:
"
,
defaultValue
:
fals
e
,
defaultValue
:
tru
e
,
inputName
:
"
project-cache-data
"
,
help
:
'
If this checkbox is checked, all hyperlinks in the project resolved by MIRIAM repository (e.g. cross-links
'
+
'
to external bioinformatics databases) are resolved and cached.
'
...
...
model/src/main/java/lcsb/mapviewer/model/user/UserAnnotationSchema.java
View file @
cc50e382
...
...
@@ -65,7 +65,7 @@ public class UserAnnotationSchema implements Serializable {
private
Boolean
annotateModel
=
false
;
private
Boolean
cacheData
=
fals
e
;
private
Boolean
cacheData
=
tru
e
;
private
Boolean
autoResizeMap
=
true
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment