mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-06 10:06:13 -08:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e60d1bea6 | ||
|
|
9eccfb1e05 | ||
|
|
a6a2c0e303 | ||
|
|
5a6c29795b | ||
|
|
4f529fb099 | ||
|
|
3ccdada9d7 | ||
|
|
04d45320e4 | ||
|
|
1d1f277e0f |
16
.github/workflows/codemeta_validator.yml
vendored
Normal file
16
.github/workflows/codemeta_validator.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
name: test_codemeta
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: gitlab-registry.in2p3.fr/escape2020/wp3/eossr:v1.0
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: validate codemeta
|
||||||
|
run: eossr-metadata-validator codemeta.json
|
||||||
33
.github/workflows/npm-publish.yml
vendored
Normal file
33
.github/workflows/npm-publish.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
||||||
|
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
||||||
|
|
||||||
|
name: Node.js Package
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm test
|
||||||
|
|
||||||
|
publish-npm:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
registry-url: https://registry.npmjs.org/
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm publish
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
||||||
83
codemeta.json
Normal file
83
codemeta.json
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
{
|
||||||
|
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
|
||||||
|
"@type": "SoftwareSourceCode",
|
||||||
|
"license": "https://spdx.org/licenses/GPL-3.0",
|
||||||
|
"codeRepository": "https://github.com/cds-astro/aladin-lite",
|
||||||
|
"dateCreated": "2013-05-01",
|
||||||
|
"datePublished": "2013-05-01",
|
||||||
|
"dateModified": "2023-01-31",
|
||||||
|
"issueTracker": "https://github.com/cds-astro/aladin-lite/issues",
|
||||||
|
"name": "Aladin Lite",
|
||||||
|
"version": "3.1.1",
|
||||||
|
"softwareVersion": "3.1.1",
|
||||||
|
"description": "An astronomical HiPS visualizer in the browser.",
|
||||||
|
"identifier": "10.5281/zenodo.7638833",
|
||||||
|
"applicationCategory": "Astronomy, Visualization",
|
||||||
|
"funding": "ESCAPE 824064",
|
||||||
|
"referencePublication": "http://aspbooks.org/publications/532/007.pdf",
|
||||||
|
"readme": "https://aladin.cds.unistra.fr/AladinLite/doc/",
|
||||||
|
"releaseNotes": "https://aladin.cds.unistra.fr/AladinLite/doc/#release-notes",
|
||||||
|
"funder": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "European Commission Framework Programme Horizon 2020 Research and Innovation action"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"IVOA",
|
||||||
|
"Astronomy"
|
||||||
|
],
|
||||||
|
"programmingLanguage": [
|
||||||
|
"Rust",
|
||||||
|
"Javascript"
|
||||||
|
],
|
||||||
|
"relatedLink": [
|
||||||
|
"https://aladin.cds.unistra.fr/"
|
||||||
|
],
|
||||||
|
"author": [
|
||||||
|
{
|
||||||
|
"@type": "Person",
|
||||||
|
"@id": "https://orcid.org/0000-0002-7123-773X",
|
||||||
|
"givenName": "Matthieu",
|
||||||
|
"familyName": "Baumann",
|
||||||
|
"email": "matthieu.baumann@unistra.fr",
|
||||||
|
"affiliation": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Person",
|
||||||
|
"@id": "https://orcid.org/0000-0001-5818-2781",
|
||||||
|
"givenName": "Thomas",
|
||||||
|
"familyName": "Boch",
|
||||||
|
"email": "thomas.boch@astro.unistra.fr",
|
||||||
|
"affiliation": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"maintainer": [
|
||||||
|
{
|
||||||
|
"@type": "Person",
|
||||||
|
"@id": "https://orcid.org/0000-0002-7123-773X",
|
||||||
|
"givenName": "Matthieu",
|
||||||
|
"familyName": "Baumann",
|
||||||
|
"email": "matthieu.baumann@unistra.fr",
|
||||||
|
"affiliation": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Person",
|
||||||
|
"@id": "https://orcid.org/0000-0001-5818-2781",
|
||||||
|
"givenName": "Thomas",
|
||||||
|
"familyName": "Boch",
|
||||||
|
"email": "thomas.boch@astro.unistra.fr",
|
||||||
|
"affiliation": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Université de Strasbourg, CNRS, Observatoire astronomique de Strasbourg, UMR 7550, F-67000 Strasbourg, France"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@ name = "aladin-lite"
|
|||||||
description = "Aladin Lite v3 introduces a new graphical engine written in Rust with the use of WebGL"
|
description = "Aladin Lite v3 introduces a new graphical engine written in Rust with the use of WebGL"
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
repository = "https://github.com/cds-astro/aladin-lite"
|
repository = "https://github.com/cds-astro/aladin-lite"
|
||||||
version = "3.0.0"
|
version = "3.1.1"
|
||||||
authors = ["baumannmatthieu0@gmail.com", "matthieu.baumann@astro.unistra.fr"]
|
authors = ["baumannmatthieu0@gmail.com", "matthieu.baumann@astro.unistra.fr"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user