Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 15.0.0 #438

Merged
merged 6 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ __pycache__/
*.pyc
*.swp
*.lock
!yarn.lock
# due to using tox and pytest
.tox
.cache
Expand All @@ -28,8 +29,6 @@ node_modules/
*.log
/.awcache
/.cache-loader
package-lock.json
/yarn.lock
# yarn
.pnp.*
.yarn/*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/OrdinoFooter.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/components/OrdinoFooter.js.map

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

19 changes: 9 additions & 10 deletions dist/index.template.ejs

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

3 changes: 1 addition & 2 deletions dist/internal/OrdinoApp.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/internal/OrdinoApp.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/internal/ViewWrapper.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/internal/ViewWrapper.js.map

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions dist/locales/en/tdp.json

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

1 change: 0 additions & 1 deletion dist/phovea_registry.d.ts

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

2 changes: 1 addition & 1 deletion dist/phovea_registry.d.ts.map

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

1 change: 0 additions & 1 deletion dist/phovea_registry.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/phovea_registry.js.map

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

31 changes: 9 additions & 22 deletions dist/templates/index.html

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ordino",
"description": "Target discovery platform for exploring rankings of genes, disease models, and other entities.",
"version": "14.0.0",
"version": "15.0.0",
"author": {
"name": "The Caleydo Team",
"email": "contact@caleydo.org",
Expand Down Expand Up @@ -57,16 +57,16 @@
"@types/react-select": "^4.0.13"
},
"dependencies": {
"html-react-parser": "^4.2.0",
"react-dropzone": "^11.3.1",
"react-highlight-words": "^0.17.0",
"react-intersection-observer": "^8.31.1",
"react-router-dom": "^5.2.0",
"react-select": "^4.1.0",
"react-select-async-paginate": "^0.5.3",
"react-virtualized": "^9.22.3",
"html-react-parser": "^4.2.0",
"tdp_core": "^20.1.0",
"visyn_scripts": "^4.1.0"
"tdp_core": "^23.0.2",
"visyn_scripts": "^7.0.1"
},
"resolutions": {
"@types/react": "~18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrdinoFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function FooterLink(props: IFooterLinkProps) {
}

export function OrdinoFooter(props) {
const testId = props.testId;
const { testId } = props;
const openInNewWindow = !!props.openInNewWindow; // undefined and null = false (default)

const lists: IOrdinoFooterMenuLink[][] = PluginRegistry.getInstance()
Expand Down
19 changes: 9 additions & 10 deletions src/index.template.ejs
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Ordino</title>
<meta name="description" content="">
<link rel="icon" href="<%=require('tdp_core/dist/assets/favicon.png')%>"><%=require('tdp_core/dist/template/_head.html')%>
</head>
<body>

<%=require('tdp_core/dist/template/_body.html')%>

</body>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="description" content="" />
<link rel="icon" href="<%=require('tdp_core/dist/assets/favicon.png')%>" />
</head>
<body>
</body>
</html>
1 change: 0 additions & 1 deletion src/phovea_registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import reg from './phovea';
* build a registry by registering all phovea modules
*/
// other modules
import 'visyn_core/phovea_registry';
import 'tdp_core/dist/phovea_registry';
// self
PluginRegistry.getInstance().register('ordino', reg);
31 changes: 9 additions & 22 deletions src/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Ordino</title>
<meta name="description" content="">
<link rel="icon" href="${require('tdp_core/dist/assets/favicon.png')}">
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width">
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script>
</head>
<body>

<script>
(function () {
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
var isFirefox = /Firefox/.test(navigator.userAgent);
if (!isChrome && !isFirefox) {
alert('This application was designed to be used in Google Chrome and Mozilla Firefox and does not work in Internet Explorer. Running the application in other browsers might result in performance issues or other misbehavior.');
}
})();
</script>


</body>
<meta name="description" content="" />
<link rel="icon" href="${require('tdp_core/dist/assets/favicon.png')}" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
</head>
<body>
</body>
</html>
Loading
Loading