Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Release 8.0.0 #83

Merged
35 commits merged into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
53b8c68
Apply Bootstrap 4 navbar styles
thinkh Jan 7, 2021
5dcf4f3
update codeowner
dvvanessastoiber Feb 4, 2021
0e5f402
Merge pull request #80 from phovea/vstoiber/update_codeowner
Feb 4, 2021
c837236
Merge branch 'develop' into bootstrap-v4
thinkh Feb 8, 2021
2559469
Merge branch 'master' into develop
Feb 12, 2021
4799561
changes for release 7.0.0
Feb 12, 2021
d91c730
changes for develop
Feb 12, 2021
fc9218f
Update config.yml
Feb 12, 2021
06b4860
update .circleci config
dvvanessastoiber Feb 15, 2021
80b2b3a
Adapt login menu to bootstrap 4
oltionchampari Feb 16, 2021
86702c1
Merge branch 'bootstrap-v4' of github.com:phovea/phovea_security_flas…
oltionchampari Feb 16, 2021
2c2b545
Update dropdowns to BS4
thinkh Feb 26, 2021
0ab4911
update control labels and buttons
dvvanessastoiber Mar 30, 2021
43bb85e
update checkbox
dvvanessastoiber Apr 9, 2021
64ef1ac
update handling of warning and errors
dvvanessastoiber Apr 21, 2021
1959138
Switch dialog button color
thinkh Apr 25, 2021
ca4d79a
Fix checkbox spacing
thinkh Apr 25, 2021
c899a73
Merge pull request #81 from phovea/vstoiber/bootstrap_v4
thinkh Apr 25, 2021
5cb60ea
switch branches
dvvanessastoiber May 5, 2021
3966981
switch branches
dvvanessastoiber May 19, 2021
b07d00f
update data attribute
dvvanessastoiber May 20, 2021
4885658
update layout
dvvanessastoiber May 27, 2021
2539d2b
update login menu
dvvanessastoiber May 31, 2021
0c14999
update data attribute
dvvanessastoiber Jun 7, 2021
521fd1b
prepare release 7.0.0-alpha.0
dvvanessastoiber Jul 7, 2021
bd12900
use correct version
dvvanessastoiber Jul 7, 2021
623f857
reset repo to use bootstrap branches
dvvanessastoiber Jul 8, 2021
a3e7ba4
Merge remote-tracking branch 'origin/bootstrap-v5' into vstoiber/boot…
dvvanessastoiber Jul 8, 2021
5100833
fix dropdown menu alignment
dvvanessastoiber Jul 29, 2021
e01ccd6
Merge pull request #82 from phovea/vstoiber/bootstrap_v5
dvdanielrehberger Aug 3, 2021
1a2f37b
use develop branch for phovea_core
dvvanessastoiber Aug 4, 2021
325a999
fix data attribute
dvvanessastoiber Aug 5, 2021
2d31664
Merge branch 'bootstrap-v5' into develop
Aug 11, 2021
ce3ff1e
Update CODEOWNERS
dvvanessastoiber Sep 8, 2021
7e8c6d8
prepare release_8.0.0
dvvanessastoiber Sep 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ version: 2.1

executors:
python-executor:
working_directory: ~/phovea
working_directory: ~/phovea-python
docker:
- image: circleci/python:3.7-buster-node-browsers # for node version see Dockerfile on https://hub.docker.com/r/circleci/python
node-executor:
working_directory: ~/phovea
working_directory: ~/phovea-web
docker:
- image: circleci/node:12.13-buster-browsers

Expand Down Expand Up @@ -50,6 +50,10 @@ jobs:
- run:
name: Show installed pip packages
command: pip list || true
- run:
name: Remove all from dist folder
command: |
rm -rf dist && mkdir dist
- run:
name: Build
command: |
Expand All @@ -59,13 +63,14 @@ jobs:
path: dist
destination: dist-python
- persist_to_workspace:
root: ~/phovea
paths: .
root: ~/.
paths: phovea-python
python-publish:
executor: python-executor
steps:
- attach_workspace:
at: ~/phovea
at: ~/.
- run: ls -a
- run:
name: Install twine
command: |
Expand Down Expand Up @@ -118,13 +123,14 @@ jobs:
path: dist
destination: dist-web
- persist_to_workspace:
root: ~/phovea
paths: .
root: ~/.
paths: phovea-web
web-publish:
executor: node-executor
steps:
- attach_workspace:
at: ~/phovea
at: ~/.
- run: ls -a
- run:
name: Authentication
command: |
Expand Down Expand Up @@ -190,4 +196,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v.*/
only: /^v.*/
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @thinkh
* @phovea/core @phovea/datavisyn-core
37 changes: 19 additions & 18 deletions dist/base/LoginMenu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/base/LoginMenu.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions dist/base/LoginUtils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading