Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
feat(config): update config format
· 9ec4687e
Daniel Seiller
authored
Sep 28, 2019
9ec4687e
feat(build scripts): skip .history folder when building UI files
· 92bd1b16
Daniel Seiller
authored
Sep 28, 2019
92bd1b16
Hide whitespace changes
Inline
Side-by-side
build_gui.py
View file @
92bd1b16
...
...
@@ -5,6 +5,8 @@ import os
ui_path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
for
root
,
folders
,
files
in
os
.
walk
(
ui_path
):
if
"
.history
"
in
folders
:
folders
.
remove
(
"
.history
"
)
for
file
in
files
:
file
=
os
.
path
.
join
(
root
,
file
)
outfile
,
ext
=
os
.
path
.
splitext
(
file
)
...
...
ed_lrr_gui/config.py
View file @
92bd1b16
...
...
@@ -26,10 +26,10 @@ cfg.init(
comment
=
"
history of systems.json download paths
"
,
)
cfg
.
init
(
"
history.
out
_path
"
,
"
history.
stars_csv
_path
"
,
[],
"
path_list
"
,
comment
=
"
history of
output
paths
(
stars.csv
and precomputed graphs)
"
,
comment
=
"
history of paths
for
stars.csv
"
,
)
cfg
.
init
(
"
route.range
"
,
7.56
,
comment
=
"
jump range
"
)
cfg
.
init
(
"
route.primary
"
,
False
,
comment
=
"
only route through primary stars
"
)
...
...