From 525bdbfa5a09ea8f4ea7d947bc88df4abf5707f2 Mon Sep 17 00:00:00 2001 From: Rosano Coutinho Date: Wed, 13 Dec 2023 05:30:39 -0300 Subject: [PATCH 1/4] Fix typos --- notepad.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notepad.md b/notepad.md index c95ad04..2c0e7d3 100644 --- a/notepad.md +++ b/notepad.md @@ -132,7 +132,7 @@ Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/ # [Encryptic](https://app.encryptic.org) -Uses [custom mobule](https://github.com/encryptic-team/encryptic/blob/master/src/scripts/components/sync/remotestorage/Module.js) writing to `/encryptic/$USERNAME/notes/`: +Uses [custom module](https://github.com/encryptic-team/encryptic/blob/master/src/scripts/components/sync/remotestorage/Module.js) writing to `/encryptic/$USERNAME/notes/`: ``` { @@ -170,7 +170,7 @@ Also writes to `/encryptic/$USERNAME/tags/`: # [Laverna](https://laverna.cc) -Uses [custom mobule](https://github.com/Laverna/laverna/blob/master/app/scripts/modules/remotestorage/module.js) writing to `/laverna/notes-db/notes/`: +Uses [custom module](https://github.com/Laverna/laverna/blob/master/app/scripts/modules/remotestorage/module.js) writing to `/laverna/notes-db/notes/`: ``` { @@ -193,7 +193,7 @@ Uses [custom mobule](https://github.com/Laverna/laverna/blob/master/app/scripts/ # [Snowfall](https://snowfall.vercel.app) -Uses [custom mobule](https://github.com/71/snowfall/blob/master/client/common/remoteStorage.ts) writing to `/snowfall/notes.yaml`: +Uses [custom module](https://github.com/71/snowfall/blob/master/client/common/remoteStorage.ts) writing to `/snowfall/notes.yaml`: ``` notes: @@ -205,7 +205,7 @@ notes: # [Hyperdraft](https://hyperdraft.rosano.ca) -Uses [custom mobule](https://github.com/rosano/hyperdraft/blob/master/os-app/_shared/KVCNote/main.js) writing to `/wikiavec/kvc_notes/$DAY/$ID/main`: +Uses [custom module](https://github.com/rosano/hyperdraft/blob/master/os-app/_shared/KVCNote/main.js) writing to `/wikiavec/kvc_notes/$DAY/$ID/main`: ``` { From 723dd0d5276b528145c9e12f5420a7d418f863ec Mon Sep 17 00:00:00 2001 From: Rosano Coutinho Date: Wed, 13 Dec 2023 05:33:46 -0300 Subject: [PATCH 2/4] Format code blocks --- bookmark.md | 6 +++--- notepad.md | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/bookmark.md b/bookmark.md index 2b553fe..a5804bb 100644 --- a/bookmark.md +++ b/bookmark.md @@ -45,7 +45,7 @@ Some apps add a unique identifier separate from the subject URI, like: Uses [@remotestorage/module-bookmarks](https://www.npmjs.com/package/@remotestorage/module-bookmarks) writing to `/bookmarks/archive/`: -``` +```json { "url": "https://www.google.com", "title": "Google", @@ -64,7 +64,7 @@ Uses [@remotestorage/module-bookmarks](https://www.npmjs.com/package/@remotestor Uses [custom module](https://github.com/rosano/joybox/blob/master/os-app/_shared/JBXDocument/main.js) writing to `/joybox/jbx_documents/`: -``` +```json { "JBXDocumentNotes": "", "JBXDocumentURL": "https://alsarahthenubatones.bandcamp.com/album/silt", @@ -85,7 +85,7 @@ Uses [custom module](https://github.com/rosano/joybox/blob/master/os-app/_shared Uses [custom module](https://gitlab.com/zookatron/bookmarkvault/-/blob/master/src/background/remotestorage.ts) writing to `/bookmarkvault/`: -``` +```json { "version": "0.1.2", "passphraseHash": "pbkdf2:Z7GnrZdSIQnuQokSQaVEAQ==:hwxlDGlGPwdc7jt1m+384dr3YK7JM8EFX1y3/lblqR4=", diff --git a/notepad.md b/notepad.md index 2c0e7d3..3a4c7be 100644 --- a/notepad.md +++ b/notepad.md @@ -86,7 +86,7 @@ Note that the first line still is the only line in the document, apart from the Uses [litewrite/remotestorage-module-documents](https://github.com/litewrite/remotestorage-module-documents) writing to `/documents/notes/`: -``` +```json { "title": "alfa", "content": "alfa\n\nbravo", @@ -102,7 +102,7 @@ Uses [litewrite/remotestorage-module-documents](https://github.com/litewrite/rem Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/RemoteNotes.js) (compatible with Litewrite) writing to `/documents/notes/`: -``` +```json { "id": "2ff847fc-a687-467d-badc-1bf97f0969f8", "content": "
  1. echo

", @@ -118,7 +118,7 @@ Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/ > [!NOTE] > When editing data saved from Litewrite in the previous section, some of the non-content fields have been lost or changed. -``` +```json { "id": "2d8ce0cb-b640-461b-844c-c8663cc42537", "content": "delta\n\nbravo", @@ -134,7 +134,7 @@ Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/ Uses [custom module](https://github.com/encryptic-team/encryptic/blob/master/src/scripts/components/sync/remotestorage/Module.js) writing to `/encryptic/$USERNAME/notes/`: -``` +```json { "type": "notes", "id": "094304e0-904e-11ee-9444-89ac1ca7ec37", @@ -155,7 +155,7 @@ Uses [custom module](https://github.com/encryptic-team/encryptic/blob/master/src Also writes to `/encryptic/$USERNAME/tags/`: -``` +```json { "type": "tags", "id": "-1791806854596657849-774024691093389715-160062204918003686491529221860-287399026", @@ -172,7 +172,7 @@ Also writes to `/encryptic/$USERNAME/tags/`: Uses [custom module](https://github.com/Laverna/laverna/blob/master/app/scripts/modules/remotestorage/module.js) writing to `/laverna/notes-db/notes/`: -``` +```json { "type": "notes", "id": "6029d6ad-4b94-0bc4-682e-951c42f3acba", @@ -195,7 +195,7 @@ Uses [custom module](https://github.com/Laverna/laverna/blob/master/app/scripts/ Uses [custom module](https://github.com/71/snowfall/blob/master/client/common/remoteStorage.ts) writing to `/snowfall/notes.yaml`: -``` +```json notes: - text: alfa children: @@ -207,7 +207,7 @@ notes: Uses [custom module](https://github.com/rosano/hyperdraft/blob/master/os-app/_shared/KVCNote/main.js) writing to `/wikiavec/kvc_notes/$DAY/$ID/main`: -``` +```json { "KVCNoteBody": "alfa\n\nbravo", "KVCNoteID": "01HGJV6VZAPPAZ7VBMJ7FCGY3P", From 65b08d64d79c310b81de8d6d5467914d24d9f8f8 Mon Sep 17 00:00:00 2001 From: Rosano Coutinho Date: Wed, 13 Dec 2023 05:35:33 -0300 Subject: [PATCH 3/4] Add joybox tags --- bookmark.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bookmark.md b/bookmark.md index a5804bb..98fcec5 100644 --- a/bookmark.md +++ b/bookmark.md @@ -69,6 +69,9 @@ Uses [custom module](https://github.com/rosano/joybox/blob/master/os-app/_shared "JBXDocumentNotes": "", "JBXDocumentURL": "https://alsarahthenubatones.bandcamp.com/album/silt", "JBXDocumentName": "Alsarah & the Nubatones: Silt", + "JBXDocumentTags": [ + "#listen" + ], "JBXDocumentEmbedURL": "https://bandcamp.com/EmbeddedPlayer/v=2/album=704487352/size=large/tracklist=false/artwork=small/", "JBXDocumentImageURL": "https://f4.bcbits.com/img/a3732065656_5.jpg", "JBXDocumentDidFetch": true, From 58f9765203edb96903d26318025ecfd48e46e539 Mon Sep 17 00:00:00 2001 From: Rosano Coutinho Date: Wed, 13 Dec 2023 05:38:46 -0300 Subject: [PATCH 4/4] Cleanup syntax --- bookmark.md | 10 +++++----- notepad.md | 42 +++++++++++++++++++++--------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/bookmark.md b/bookmark.md index 98fcec5..a10422f 100644 --- a/bookmark.md +++ b/bookmark.md @@ -66,18 +66,18 @@ Uses [custom module](https://github.com/rosano/joybox/blob/master/os-app/_shared ```json { - "JBXDocumentNotes": "", "JBXDocumentURL": "https://alsarahthenubatones.bandcamp.com/album/silt", "JBXDocumentName": "Alsarah & the Nubatones: Silt", + "JBXDocumentNotes": "", "JBXDocumentTags": [ "#listen" ], + "JBXDocumentCreationDate": "2023-11-30T15:26:46.811Z", + "JBXDocumentModificationDate": "2023-11-30T15:26:46.811Z", + "JBXDocumentID": "01HGGDDWGV1A9KFYMNWKFY63ZP", "JBXDocumentEmbedURL": "https://bandcamp.com/EmbeddedPlayer/v=2/album=704487352/size=large/tracklist=false/artwork=small/", "JBXDocumentImageURL": "https://f4.bcbits.com/img/a3732065656_5.jpg", - "JBXDocumentDidFetch": true, - "JBXDocumentID": "01HGGDDWGV1A9KFYMNWKFY63ZP", - "JBXDocumentCreationDate": "2023-11-30T15:26:46.811Z", - "JBXDocumentModificationDate": "2023-11-30T15:26:46.811Z" + "JBXDocumentDidFetch": true } ``` diff --git a/notepad.md b/notepad.md index 3a4c7be..6fe4aff 100644 --- a/notepad.md +++ b/notepad.md @@ -104,13 +104,13 @@ Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/ ```json { - "id": "2ff847fc-a687-467d-badc-1bf97f0969f8", - "content": "
  1. echo

", "title": "• echo", + "content": "
  1. echo

", + "lastEdited": 1701436763996, "date": "2023-12-01T13:19:16.734Z", - "mimeType": "text/html;hint=SEMANTIC", "isLocked": false, - "lastEdited": 1701436763996, + "mimeType": "text/html;hint=SEMANTIC", + "id": "2ff847fc-a687-467d-badc-1bf97f0969f8", "@context": "http://remotestorage.io/spec/modules/documents/note" } ``` @@ -120,12 +120,12 @@ Uses [custom module](https://github.com/DougReeder/notes-together/blob/main/src/ ```json { - "id": "2d8ce0cb-b640-461b-844c-c8663cc42537", - "content": "delta\n\nbravo", "title": "delta\nbravo", + "content": "delta\n\nbravo", + "lastEdited": 1701436457428, "date": "2023-12-01T13:14:05.792Z", "isLocked": false, - "lastEdited": 1701436457428, + "id": "2d8ce0cb-b640-461b-844c-c8663cc42537", "@context": "http://remotestorage.io/spec/modules/documents/note" } ``` @@ -136,19 +136,19 @@ Uses [custom module](https://github.com/encryptic-team/encryptic/blob/master/src ```json { - "type": "notes", - "id": "094304e0-904e-11ee-9444-89ac1ca7ec37", "encryptedData": "-----BEGIN PGP MESSAGE-----\r\nVersion: OpenPGP.js v4.4.7\r\nComment: https://openpgpjs.org\r\n\r\nwcBMA2zxuA9e0BM+AQf+NTE02XpYWuU8TOpTRn+wg5Qn7eHfoA/Pl6TqAiSf\r\n//glR84H5wiQv/JJuG2PXZ8wsy1M2S3Fnaqh8G74/iUdi73uOxb5kS38Qk5g\r\nzjzSKZHSWO28Sxj+Aqb7uPpCLMwv7HAu57zPsxhjnYoHUolqGAIduNWYP4eC\r\nycnV1MRXlZWzhsPlHOsHKw5AnUg7Dbvz4yrmbPteSxJWqWiFIXKTK8btjQmx\r\nhlDz3e9AZpOTZTEKkueJ5p+ykKkgal1PwIxBo4MxqJr4cIzTYAgSOAyX6kdS\r\nkTFLcq2G3jzO0sdgeyJPL5q7TMQ88JsGKQ9qeDJo9HY15R5mpYWZ4LBSzlpK\r\nYNLA0gGzFpfQ8sZ0m42hHARQADGyzl8k6wr/ZO6+Yfscwwrt44tP5HleM4kM\r\n+5+aLY5KX462Oa0iGG01PJCW3iilgInqQf8/wbbIwx99fWzZRJhpGEE1CTJH\r\naq7BTTBtwUAPhcJWb7seHD752CdS5m0IKl/aAMTHScN3SljBGnvczJhs3WUV\r\n60uRE/xxQz4uPdDNChP2DlCvD1Ith0fSTqtMmM/x1DiAoO3Fj6ehoqXxvLv6\r\nGYLdhDEBwl7YH2GhuK9OtIOmgSqdeQkI/b/Fvx4Oj+8nRyK5Zys5f5s3P3FB\r\n69wY8Z9sMUuCJa5jNqXr6Gazq8H8z3Rm2dPIxRZxJ+kzTr3Z+1uQQhGy7FNg\r\nf9EP33hNCQ4Tfo4VCq8og8bie7hsz730prIX01lrb/poK8JztyiHtYMb2jmh\r\nQiZb+4brIkQf2tSeR246iICKZwuoTE/9rx93vWbFoyGpThnPFTcKGE8hvKUE\r\nBX96elhY0tzg3bXUsuOHAZbDdIqE6Bb19L3wLs5qtUQqJGS6XxPEaDXONC9K\r\nSQ==\r\n=dyiO\r\n-----END PGP MESSAGE-----\r\n", + "updated": 1701437563118, + "created": 1701437532877, "taskAll": 0, "taskCompleted": 0, - "created": 1701437532877, - "updated": 1701437563118, "notebookId": "0", "isFavorite": 0, "trash": 0, "files": [], "sharedWith": [], "sharedBy": "alfa", + "type": "notes", + "id": "094304e0-904e-11ee-9444-89ac1ca7ec37", "@context": "http://remotestorage.io/spec/modules/encryptic/notes" } ``` @@ -157,13 +157,13 @@ Also writes to `/encryptic/$USERNAME/tags/`: ```json { - "type": "tags", - "id": "-1791806854596657849-774024691093389715-160062204918003686491529221860-287399026", "encryptedData": "-----BEGIN PGP MESSAGE-----\r\nVersion: OpenPGP.js v4.4.7\r\nComment: https://openpgpjs.org\r\n\r\nwcBMA2zxuA9e0BM+AQf/Tu4Jox+vQxV2fAygzIdRQZXEvUNuBLvAY/jwhKld\r\nqua9P9kPkVm5a+OqNjFal46Ccgfw5aNbt3w4n8yPP5aPoBBHxPQd88Du9fxe\r\nTn/GkP8kG1SxtN9+rNAT1J/Gp9Mc+PtU5Ku7JB7FYRucWtvBh1pmUIvHRT3M\r\nhrFJQN3td3VYWEI1kjJ9pui2vAd03APEtWlp39X4PSQ038IWmnhnydX6ckLQ\r\nfYxY+JTQ9c+u4ukvIellTAaUH19GKSChevNydtfXd/3KJsf9cb1I8OEvoxPf\r\naSeU8gvRWjZIQvzgatgdMYEpVe87UDx671P/ZC1dAvuiv1nCiz6bayw158lj\r\ny9LAuAHp7b+3mIIe65YhUKhHdrHIHixda9/ZfwQwQGGWqWMtQ+9w4vOIvNiA\r\nS560M692Qc7bHdoifq/dUqDAjx6tHrh0Mz8LAj/obyRdBvqXMtGv6uxkbBkA\r\ns+zIPxTgi5Ak8iBTfZhUVlGAxNVDjiuYWyGPNNIeK7cVfiBVHTdaiH6+EBXc\r\n5t1jdwRZCtI2maa5MQTC8pQ0OFCclQkfFdvbDhywKLiWoDAdf+y1a0C5MdLA\r\naxTzoasQwPUvf4OvejtLnjVp2oxZFh4YF3TaZ+fjT+O8846c3kAcumVqDguN\r\nL5qJg5cD2OIykpTuYOie/3JB3FQQaJylDYYjPoiZkP5dlMj9mt1cxxhYG0aM\r\nLg6ciGzcht8JhTjqS7DqBe0vkX24jlRQdtGc8opgN3ksOpFIt+e9EBkanzdO\r\nx2hCQttpybznsPDpxDW3LT7zRzs7WN6Ch+H55skD7TjEIsn+zrYKfNV6ObUM\r\n594Bs6ADCfAdb2QKe1fgSViugFM=\r\n=AtF2\r\n-----END PGP MESSAGE-----\r\n", + "updated": 1701438016360, + "created": 1701438016360, "count": 0, "trash": 0, - "created": 1701438016360, - "updated": 1701438016360, + "type": "tags", + "id": "-1791806854596657849-774024691093389715-160062204918003686491529221860-287399026", "@context": "http://remotestorage.io/spec/modules/encryptic/tags" } ``` @@ -174,19 +174,19 @@ Uses [custom module](https://github.com/Laverna/laverna/blob/master/app/scripts/ ```json { - "type": "notes", - "id": "6029d6ad-4b94-0bc4-682e-951c42f3acba", "title": "alfa", "content": "bravo", + "updated": 1701438445120, + "created": 1701438444239, "taskAll": 0, "taskCompleted": 0, - "created": 1701438444239, - "updated": 1701438445120, "notebookId": "0", "tags": [], "isFavorite": 0, "trash": 0, "files": [], + "type": "notes", + "id": "6029d6ad-4b94-0bc4-682e-951c42f3acba", "@context": "http://remotestorage.io/spec/modules/laverna/notes" } ``` @@ -210,8 +210,8 @@ Uses [custom module](https://github.com/rosano/hyperdraft/blob/master/os-app/_sh ```json { "KVCNoteBody": "alfa\n\nbravo", - "KVCNoteID": "01HGJV6VZAPPAZ7VBMJ7FCGY3P", + "KVCNoteModificationDate": "2023-12-01T14:06:08.182Z", "KVCNoteCreationDate": "2023-12-01T14:06:05.802Z", - "KVCNoteModificationDate": "2023-12-01T14:06:08.182Z" + "KVCNoteID": "01HGJV6VZAPPAZ7VBMJ7FCGY3P" } ```