diff --git a/README.md b/README.md index ef5f4287..ede91701 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 87f56d26..73ba785c 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 7c2de5c8..8b114c12 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 afccb856..069d5833 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 00000000..e69de29b