Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push i18n resources to lib #1953

Closed
wants to merge 29 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
03972ea
Add documentation CI/CD (#1)
QubitPi Apr 20, 2023
ffb1c57
Do not release to npm as a fork (#3)
QubitPi May 22, 2023
7c075f3
Initiate internal doc (#2)
QubitPi Jun 6, 2023
aa77f18
Add more docs on neo4j-browser internals (#4)
QubitPi Jun 12, 2023
139aff2
Update documentation (#5)
QubitPi Jul 7, 2023
64e8a67
Document how to include both nodes and links in JSON export (#6)
QubitPi Sep 23, 2023
cea05ca
Support double-clicking canvas creates new node (#7)
QubitPi Oct 5, 2023
6b39d0f
Fetch both nodes and links unlimited in initial graph rendering (#14)
QubitPi Oct 25, 2023
33dfa9e
Make node label and properties editable inspector panel (#15)
QubitPi Oct 25, 2023
2cb1008
Support creating relationship on canvas by alt-clicking two nodes and…
QubitPi Oct 25, 2023
f743b33
Show isolated nodes in 'SELECT *' (#16)
QubitPi Oct 26, 2023
ea6d3bd
Publish graphing module to NPM (#17)
QubitPi Nov 19, 2023
565ee97
Publishing neo4j-arc requires manually bumping version (#18)
QubitPi Nov 19, 2023
f4334e3
Add documentation on neo4j-arc basic usage from outside & Support re-…
QubitPi Nov 20, 2023
dbd0c55
Notify user the required node version for running neo4j-browser (#20)
QubitPi Nov 21, 2023
a14d953
NodeInspectorPanel shows by default but can be turned-off by option (…
QubitPi Nov 21, 2023
68b63d6
neo4j-arc should be node/rel-ID agnostic (#22)
QubitPi Nov 22, 2023
de81616
Update NPM link for fork (#23)
QubitPi Nov 22, 2023
d97e8d0
Fix broken tests in order to keep in sync with upstream (#24)
QubitPi Nov 22, 2023
89e8dca
Add documentation explaining Suber (v.s. Redux) (#25)
QubitPi Nov 22, 2023
644fac9
On-canvas node creation is done by sending message only (#26)
QubitPi Nov 22, 2023
c3084d7
Rollback #14 but keep # returns unlimited (#27)
QubitPi Nov 23, 2023
b6e89d6
Document 'browser-password' (#28)
QubitPi Nov 23, 2023
9b61fba
Enhance documentation (#29)
QubitPi Nov 23, 2023
f79fb5a
Remove package-lock.json (#34)
QubitPi Nov 24, 2023
b946112
Bump browser TS version to 4.x by aligning browser TS version with ne…
QubitPi Nov 24, 2023
3931ba4
Initialize i18n support and apply it onto OverviewPane (#31)
QubitPi Nov 24, 2023
bd423e0
Enhance documentation (#35)
QubitPi Nov 24, 2023
1550c98
Push i18n resources down to neo4j-arc library
QubitPi Nov 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Document 'browser-password' (#28)
* Document 'browser-password'

* Add screenshot
QubitPi authored Nov 23, 2023
commit b6e89d6a1c90f1640b84e6fe49d18092fe236ed8
Binary file added .github/browser-password.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -55,7 +55,9 @@ Neo4j Browser has both unit and end to end tests running automatically on every
`yarn e2e-open` to open the Cypress test runner (requires a **fresh** installation of Neo4j to run against, expects neo4j 3.5 by default). See details below on how to configure database version.

`yarn e2e-local-open` to run against an existing server (with a password already set). We use `newpassword` as the default password here, make sure to pass your password:
`yarn e2e-local-open --env browser-password=<your-password-here>`
`yarn e2e-local-open --env browser-password=<your-password-here>`. The name `browser-password` is a bit misleading. It's actually the password for connecting to Neo4j we just mentioned via bolt portocol, i.e. the "password" input in the image below:

![browser password screenshot](./browser-password.png)

To avoid opening the Cypress test runner and just run the tests in the terminal, remove the "-open" suffix from the previous two commands (so `yarn e2e` and `yarn e2e-local` respectively).

2 changes: 1 addition & 1 deletion src/neo4j-arc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neo4j-devtools-arc",
"version": "0.0.59",
"version": "0.0.60",
"main": "dist/neo4j-arc.js",
"author": "Neo4j Inc.",
"license": "GPL-3.0",