Skip to content

Commit d4c5541

Browse files
committed
Merge branch 'release/v0.1.9'
2 parents ba5d504 + 7c2bfee commit d4c5541

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Colour - Dash
22
=============
33

4-
.. image:: https://colour-science.org/images/Apps_Screenshot.png
4+
.. image:: https://www.colour-science.org/images/Apps_Screenshot.png
55

66
Introduction
77
------------
@@ -27,8 +27,8 @@ Run
2727
$ docker run -d \
2828
--name=colour-dash \
2929
-e COLOUR_DASH_SERVER=http://example.com:8010/ \
30-
-e COLOUR_DASH_CSS=https://colour-science.org/assets/css/all-nocdn.css \
31-
-e COLOUR_DASH_JS=https://colour-science.org/assets/js/analytics.js,https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.1/iframeResizer.contentWindow.min.js \
30+
-e COLOUR_DASH_CSS=https://www.colour-science.org/assets/css/all-nocdn.css \
31+
-e COLOUR_DASH_JS=https://www.colour-science.org/assets/js/analytics.js,https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.1/iframeResizer.contentWindow.min.js \
3232
-p 8010:8000 colourscience/colour-dash
3333
3434
Development

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
__major_version__ = '0'
2323
__minor_version__ = '1'
24-
__change_version__ = '8'
24+
__change_version__ = '9'
2525
__version__ = '.'.join(
2626
(__major_version__,
2727
__minor_version__,

apps/rgb_colourspace_models_chromatically_adapted_primaries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
className='list-inline-item'),
123123
Li([
124124
A('colour-science.org',
125-
href='https://colour-science.org',
125+
href='https://www.colour-science.org',
126126
target='_blank')
127127
],
128128
className='list-inline-item'),

apps/rgb_colourspace_models_transformation_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
className='list-inline-item'),
131131
Li([
132132
A('colour-science.org',
133-
href='https://colour-science.org',
133+
href='https://www.colour-science.org',
134134
target='_blank')
135135
],
136136
className='list-inline-item'),

tasks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@ def docker_run(ctx):
152152
message_box('Running "docker" container...')
153153
ctx.run('docker run -d '
154154
'--name={1} '
155-
'-e COLOUR_DASH_SERVER=https://colour-science.org:8010/ '
155+
'-e COLOUR_DASH_SERVER=https://www.colour-science.org:8010/ '
156156
'-e COLOUR_DASH_CSS='
157-
'https://colour-science.org/assets/css/all-nocdn.css '
157+
'https://www.colour-science.org/assets/css/all-nocdn.css '
158158
'-e COLOUR_DASH_JS='
159-
'https://colour-science.org/assets/js/analytics.js,'
159+
'https://www.colour-science.org/assets/js/analytics.js,'
160160
'https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.1/'
161161
'iframeResizer.contentWindow.min.js '
162162
'-p 8010:8000 {0}/{1}'.format(ORG, CONTAINER))

0 commit comments

Comments
 (0)