Skip to content

Commit 5df0a0a

Browse files
authored
Merge pull request #38 from nielsdejong/develop
Cleanup of repository structure
2 parents 615ece7 + 431ecee commit 5df0a0a

File tree

4 files changed

+40
-21
lines changed

4 files changed

+40
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ target
1010
/node_modules
1111
/.pnp
1212
.pnp.js
13+
.vscode
1314

1415
# testing
1516
/coverage

release-notes.md

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,45 @@
1-
## NeoDash 2.0 (Stable)
1+
## NeoDash 2.0 (stable)
22

3+
**New & Improved Dashboard Editor**
34
- Added new Cypher editor with syntax highlighting / live syntax validation.
45
- Redesigned Cypher query runner to be 2x more performant.
56
- Easy custom styling of reports with the "advanced report settings" window.
6-
- New table view with post-query sorting and filtering, and highlighting of native Neo4j types.
7-
- Updated graph visualization library to a canvas-based renderer, handling 4x larger graphs.
8-
- Added custom node/relationship styling with custom colors, width, and font-size.
9-
- New bar/line chart visualizations based on @adam.cowley Charts.
10-
- Added support for multi-line charts, stacked/grouped bar charts.
11-
- Added custom styling options to map visualizations.
12-
- Added single value report.
13-
- Improved property selection report.
147
- Added in-built documentation with example queries and visualizations.
158
- Updated dashboard layout to better use screen real estate.
16-
- Added setting to turn entire dashboard into 'Presentation mode'.
9+
10+
**Visualizations**
11+
- Table View
12+
- New table view with post-query sorting and filtering, and highlighting of native Neo4j types.
13+
- Fixed array property display in table reports.
14+
- Added automatic link generation from URL properties in the table report.
15+
- Graph View
16+
- Updated graph visualization library to a canvas-based renderer, handling 4x larger graphs.
17+
- Added custom node/relationship styling with custom colors, width, and font-size.
18+
- Better property display on graph visualization hover.
19+
- Bar/Line Chart
20+
- New bar/line chart visualizations based on the Charts graph app.
21+
- Added support for multi-line charts, stacked/grouped bar charts.
22+
- Added log scale + explicit limit setting to bar/line charts.
23+
- Line chart hover values are no longer rounded and incorrectly stacked.
24+
- Map View
25+
- Added custom styling options to map visualizations.
26+
- Added dictionary-based point property rendering on maps.
27+
- Stability improvement of map views for offline deployments.
28+
- Single Value Report
29+
- Improved single value report.
30+
- Custom styling (text alignment) of single value reports.
31+
- Property Selection:
32+
- Improved property selection documentation.
33+
- Added optional "clear parameter" setting to parameter selection report.
34+
- property selector now uses the filter to gather more results.
35+
36+
**Saving, loading and sharing**
37+
- Added setting to turn entire dashboard into 'Standalone mode' from a share link.
1738
- Added option to save/load dashboards from both files and text.
1839
- New "Try a demo" button on the welcome screen.
19-
- Added "Share as standalone dashboard" feature to share window.
20-
- Added more examples to the documentation modal.
2140
- added save/load to Neo4j database feature.
22-
- Added log scale + explicit limit setting to bar/line charts.
23-
- Added optional "clear parameter" setting to parameter selection report.
2441
- Auto-convert older versions of NeoDash on load.
25-
- Added dictionary-based point property rendering on maps.
26-
- Added Dashboard sharing feature.
27-
- Custom styling (text alignment) of single value reports.
28-
- property selector now uses the filter to gather more results.
29-
- Fixed array display in table reports.
30-
- Better property display on graph visualization hover.
42+
43+
44+
45+

src/modal/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Badge from '@material-ui/core/Badge';
1212
export const NeoAboutModal = ({ open, handleClose }) => {
1313
const app = "NeoDash - Neo4j Dashboard Builder";
1414
const email = "[email protected]";
15-
const version = "2.0.1";
15+
const version = "2.0.2";
1616

1717
return (
1818
<div>

tools/upload.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
npm run build
2+
aws s3 rm s3://neodash.graphapp.io/ --recursive
3+
aws s3 sync build s3://neodash.graphapp.io/ --acl public-read

0 commit comments

Comments
 (0)