diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-12-04 12:08:10 +0100 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-12-04 12:08:10 +0100 |
commit | ea679f0b98d3f4db1685d95c931a48644e3362d0 (patch) | |
tree | c79b62b58b7a07f9aa86632d63466dcf6a5075ec | |
parent | c1fde13a40d746086e85bf9a5fae1bf899615cbc (diff) | |
parent | 1831dd533f0e45bf7cf2415893208026d3b3d5bc (diff) |
Merge branch 'main' of https://github.com/org-roam/org-roam-ui
-rw-r--r-- | .github/workflows/cd.yml | 1 | ||||
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | pages/index.tsx | 1 |
3 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index aa7a220..a421f56 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -57,6 +57,7 @@ jobs: with: token: ${{secrets.PAT}} file: 'README.md' + minimum: 500 - name: '[commit changes]' run: | @@ -7,7 +7,7 @@ - [Changelog](#changelog) - [Installation](#installation) - - [Manually](#manually) + - [Using package.el](#package.el) - [Doom](#doom) - [straight/use-package](#straightuse-package) - [Usage](#usage) @@ -36,7 +36,7 @@ For major new features/bugfixes we will update [changelog](https://github.com/or org-roam-ui requires `org-roam`, `websocket`, `simple-httpd`, `f` and Emacs >= 27 for fast JSON parsing. -### Using package.el +### package.el ``` M-x package-install org-roam-ui @@ -369,9 +369,6 @@ If you are interested in being more closely involved with the project, go [here] We would ❤️ to have you on board! -### Hacktoberfest - -Org-roam-ui is also participating in Hacktoberfest 2021! [Enter Hacktoberfest](https://hacktoberfest.digitalocean.com/), check out the [issues labeled Hacktoberfest](https://github.com/org-roam/org-roam-ui/issues) and get a free (as in beer) t-shirt! (as well as the moral satisfaction of contributing to free software, but hey, t-shirt) ## Donate diff --git a/pages/index.tsx b/pages/index.tsx index 44bb3c7..5900b9b 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -432,6 +432,7 @@ export function GraphPage() { return updateGraphData(message.data) case 'variables': variablesRef.current = message.data + console.log(message.data) return case 'theme': return setEmacsTheme(['custom', message.data]) |