Hey Effie, it looks like the delete account function is failing on the web app. I went to account > Delete my account > entered my password > then nothing. I tried clicking Delete my account a couple more times, it looks like the API call is 401ing:
I can still reload the app (web or desktop) and see all my notes.
Hey @effieeee, thanks for getting back to me! I might go with deleting my account and creating a new one with the same email address. I do have a subscription, so I will look for the email! Thanks again.
Describe the issue I have ~2,300 notes in my account. I want to select all of them and delete all but one. I can't figure out how to select all notes, and it will take too long for me to delete them page by page.
To Reproduce Steps to reproduce the behavior:
Expected behavior Expected to see an empty list because you've deleted all the notes. Instead, another older set of notes moves to the top. I think Ctrl+A is only selecting as many notes as are currently loaded based on scroll position. I would like a way to select all notes in my account, not just the current paginated set of notes.
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context The context is that I have a large number of notes, and I want to delete them all without deleting and recreating my account. But if I have to delete them in batches, based on the speed that was going, it would take me prohibitively long.
Have you read the Longevity Statement? Yes
Is your feature request related to a problem? Please describe. Tags I've added to a Simplenote note aren't preserved when I import the note into Standard Notes.
Describe the solution you'd like It would be amazing if you could improve the import experience for Simplenote. I have a huge number of notes, and to manually add back tags to them would be prohibitive.
Additional context
Simplenote export does include tags in a mapping file (source/notes.json
), so while it would be some work to match that up with the plaintext note files, you could certainly create an import tool to do it. Here's an example excerpt from that file:
{
"activeNotes": [
{
"id": "f5829b6d4bdf4170a9b754c4f5ba1234",
"content": "My Note Title\r\n\r\nContent here blah blah",
"creationDate": "2021-01-11T19:10:25.000Z",
"lastModified": "2023-01-05T14:51:08.000Z",
"pinned": true,
"tags": [
"cooking",
" hobbies"
]
},
...
]
}
And then the corresponding note file My Note Title.txt
would look like this:
My Note Title
Content here blah blah