Skip to content

Commit

Permalink
released version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kianschmalenbach committed Sep 27, 2020
1 parent 68c877d commit 4fb7cfa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
RDF Browser is a Firefox Add-on that requests RDF files and renders RDF files as Turtle documents with clickable links.


| Current version: | 1.1.3 |
| Current version: | 1.1.4 |
| --- | --- |
| Release date: | Sep 18, 2020 |
| Release date: | Sep 27, 2020 |

The Add-on is released and maintained by the [Chair of Technical Information Systems](https://www.ti.rw.fau.de) at [Friedrich-Alexander-University Erlangen-Nürnberg](https://www.fau.de).

Expand Down Expand Up @@ -48,6 +48,11 @@ $ npm run build
- To see the raw format of any rendered RDF file, click *Ctrl + U*.

## Changelog
### Version 1.1.4
- Support of Turtle inline blank node syntax
- Support of Turtle list syntax
- Performance improvement

### Version 1.1.3
- Restructured codebase
- Implemented CI pipeline
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Kian Schmalenbach",
"description": "Request RDF files and render RDF files as Turtle documents with clickable links",
"homepage_url": "https://github.com/kianschmalenbach/rdf-browser",
"version": "1.1.3",
"version": "1.1.4",
"icons": {
"32": "build/img/rdf-browser-32.png",
"64": "build/img/rdf-browser-64.png",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rdf-browser",
"version": "1.1.3",
"version": "1.1.4",
"description": "A Firefox Add-on that requests RDF files and renders RDF files as Turtle documents with clickable links",
"license": "MIT",
"scripts": {
Expand Down
10 changes: 7 additions & 3 deletions script/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/bash
rm build/* -r
cp src/controller build/ -r
cp src/view build/ -r
cp img build/ -r
mkdir build
mkdir build/controller
mkdir build/view
mkdir build/img
cp src/controller/* build/controller -r
cp src/view/* build/view -r
cp img/* build/img -r
npm run browserify
exit 0

0 comments on commit 4fb7cfa

Please sign in to comment.