Skip to content

Commit

Permalink
Merge branch 'fixstate'
Browse files Browse the repository at this point in the history
  • Loading branch information
MaillPierre committed Feb 7, 2023
2 parents 0a59b36 + a323689 commit f68c4e0
Show file tree
Hide file tree
Showing 14 changed files with 1,003 additions and 954 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VoIDMatic
# Metadatamatic

[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"name": "VoIDMatic",
"name": "metadatamatic",
"source": "src/index.html",
"scripts": {
"build": "npx tsc",
"predeploy": "rm dist/* ./*.js ./*.js.map ./*.css.map ./*.css || true",
"deploy": "npx parcel build",
"postdeploy": "sed 's/\\/index\\./\\.\\/index\\./g' dist/index.html > index.html && rm dist/index.html || true && mv dist/* .",
"dev": "npx parcel serve --https",
"predev": "rm dist/* || true"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@types/rdflib": "^1.2.0",
"d3": "latest",
"dayjs": "^1.11.5",
"echarts": "latest",
Expand All @@ -21,6 +24,10 @@
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@types/bootstrap": "^5.2.6",
"@types/jquery": "^3.5.16",
"@types/node": "^18.11.9",
"@types/uuid": "^9.0.0",
"bootstrap": "^5.2.0",
"bootstrap-icons": "^1.9.1",
"bootstrap5-autocomplete": "^1.1.1",
Expand All @@ -30,6 +37,7 @@
"prismjs": "^1.29.0",
"process": "^0.11.10",
"rdflib": "^2.2.19",
"typescript": "^4.9.5",
"url": "^0.11.0",
"uuid": "^9.0.0",
"xmlhttprequest": "^1.8.0"
Expand Down
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/9000.0.1/plugins/autolinker/prism-autolinker.min.js"
integrity="sha512-WhmQTpC//UpSoV1wz2GkMauQFAH4FN0Bma61ybaMQAve4ZhdDLKuu3z7lCBFzj2QlrfmGKNh63Twe/un/bIRSw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="module" src="./js/index.js"></script>
<script type="module" src="./js/index.ts"></script>


<title vocab="https://schema.org/" about="https://wimmics.github.io/voidmatic/" property="title">Metadatamatic
Expand Down Expand Up @@ -94,10 +94,10 @@ <h1 class='text-center my-3 display-1' id="headerTitle">Metadatamatic</h1>
<div class='col-12 my-3' id='displayCol'>
<div class="row">
<div class="col-6">
<a class="btn btn-light" id="downloadButton">Download</a>
<a class="btn btn-dark" id="downloadButton">Download</a>
</div>
<div class="col-6">
<a class="btn btn-light" id="saturationButton"
<a class="btn btn-dark" id="saturationButton"
title="This will add equivalent classes and properties to the one already given">Apply
equivalences</a>
</div>
Expand Down
Loading

0 comments on commit f68c4e0

Please sign in to comment.