diff --git a/README.md b/README.md index ef5f428..ede9170 100644 --- a/README.md +++ b/README.md @@ -77,4 +77,7 @@ Here, just to show how it works, are how some RDF Classes map onto panes. Anythi contacts (A VCARD Address Book, Group, Individual, Organization) can be handled by the one contact pane. Any other pane which wants to deal with contacts can just use the pane within its own user interface. +If you have trouble seeing syntax highlighting for SPARQL, Turtle, TriG, N-Triples, N-Quads, etc... +Try installing an extension! For VSCode, there are many, but a great one is RDFox Syntax Highlighting. + ![Mapping many classes on the L to panes on the R](https://solidos.github.io/solid-panes/doc/images/panes-for-classes.svg) diff --git a/package.json b/package.json index 87f56d2..73ba785 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build-lib": "npm run build-form && babel src -d lib --source-maps --extensions '.ts,.js'", "build-dev": "webpack --progress --mode=development", "build-types": "tsc --emitDeclarationOnly", - "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", + "build-version": "eslint --fix", "watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch", "clean": "rm -rf dist lib", "lint": "eslint 'src/**/*.js' 'src/**/*.ts'", diff --git a/src/profile/editProfile.view.ts b/src/profile/editProfile.view.ts index 7c2de5c..8b114c1 100644 --- a/src/profile/editProfile.view.ts +++ b/src/profile/editProfile.view.ts @@ -161,4 +161,4 @@ const editProfileView: PaneDefinition = { } } -export default editProfileView +export default editProfileView \ No newline at end of file diff --git a/src/profile/profileFormText.ttl b/src/profile/profileFormText.ttl index afccb85..069d583 100644 --- a/src/profile/profileFormText.ttl +++ b/src/profile/profileFormText.ttl @@ -7,7 +7,6 @@ @prefix ui: . @prefix schema: . @prefix vcard: . - @prefix org: . @prefix esco: . @prefix wd: . @@ -28,12 +27,18 @@ :SkillsPrompt :SkillsForm ). -:styleGroup a ui:Group; ui:weight 0; ui:parts ( :styleHeading :backgroundColor :highlightColor ). +:styleGroup a ui:Group; ui:weight 0; ui:parts ( :styleHeading :backgroundColor :highlightColor :cornerSquareColor :cornerDotColor ). :styleHeading a ui:Heading; ui:contents "The style of your public profile.". :backgroundColor a ui:ColorField; ui:property solid:profileBackgroundColor; ui:label "Background color"; ui:default "#ffffff". :highlightColor a ui:ColorField; ui:property solid:profileHighlightColor; ui:label "Highlight color"; ui:default "#000000". + :cornerSquareColor a ui:ColorField; ui:property solid:cornerSquareColor; + ui:label "Corner Square Color"; ui:default "#000000". + :cornerDotColor a ui:ColorField; ui:property solid:cornerDotColor; + ui:label "Corner dot color"; ui:default "#000000". + + # Nickname @@ -383,4 +388,4 @@ WHERE # Omitted: SERVICE wikibase:label { bd:serviceParam wikibase:language "$(languages)". } -# ENDS +# ENDS \ No newline at end of file diff --git a/src/versionInfo.ts b/src/versionInfo.ts new file mode 100644 index 0000000..e69de29