r/appleJournal

New SIRI won't help much

I found out that the security of Apple Journal is too tight, so the new OS 27 SIRI still can't read my entries. That pretty much makes the entire journal useless to me. I'm going to have to copy and paste out all the entries - about 4355 entries and manually put them into Apple Pages in order to get it to work. I hate this with a passion. I'm not interested in security so tight I can't breathe.

I really wish that I had just decided to keep one very long Apple Pages Journal. It was simple and never tried to defeat me at every turn. Now I have 1,230,340 words locked up so tight that it's pretty much useless to me.

reddit.com
u/grburgess — 1 day ago

iOS 27 beta 2? Is Apple Pencil fixed?

Haven’t really seen any posts.. Just wondering if the Apple Pencil bug is fixed or any better.

reddit.com
u/Gfaulk09 — 2 days ago

Experiment - Importing Into Apple Journal by Editing its Local Database (Don't do this)

First of all, this is extremely unsupported, and it could totally corrupt your Journal data, so always back everything up if you dare try it... but it works.

Also, I ended up sticking with Everlog, so I won’t be updating or supporting this. I’m posting this for educational purposes, and because I was curious whether it was possible.

The basic idea was:

  1. I used OpenAI Codex to format and consolidate all my entries from Day One, Everlog, and Obsidian into one .zip using Everlog’s export format.
  2. I treated that Everlog-style .zip as the source of truth.
  3. Then I had Codex inspect Apple Journal’s local data storage and write an importer that inserted everything directly into Apple Journal’s database.

Apple Journal stores its local data here:

~/Library/Group Containers/group.com.apple.moments/Library/moments.sqlite

And media attachments live here:

~/Library/Group Containers/group.com.apple.moments/Library/Attachments/

Under the hood, Apple Journal is basically a Core Data SQLite store. The important parts were:

ZJOURNALENTRYMO

This stores the journal entries themselves.

Z_5JOURNALS

This links entries to journals.

ZJOURNALENTRYASSETMO
ZJOURNALENTRYASSETFILEATTACHMENTMO

These store photos, Live Photos, audio clips, and their file references.

Entry text is not stored as plain Markdown or plain text. It is stored as RTF blobs. That turned out to matter a lot, because if you insert bad RTF or hard-code black text, it can display wrong in dark mode. The correct “default” text color is Apple’s semantic labelColor, not literal black.

Dates are stored as Apple/Core Data timestamps, meaning seconds since:

2001-01-01 00:00:00 UTC

UUIDs are stored as 16-byte blobs.

For journals, Apple stores name/color/icon metadata inside a private mergeable/CRDT blob, so I did not try to create Apple Journal folders directly. Instead, I manually created matching journals in Apple Journal first, then mapped Everlog journal names to those existing rows.

The conversion worked roughly like this:

  • Parse Everlog’s Entries.json.
  • Generate stable UUIDs for each imported entry and asset.
  • Convert Everlog dates to Apple/Core Data dates.
  • Convert Everlog Markdown into Apple Journal RTF.
  • Use the first # Heading as the Apple Journal title.
  • Convert body headings like ## Heading into bold text.
  • Convert basic Markdown formatting like bold, italic, quotes, bullets, and numbered lists.
  • Strip Everlog attachment placeholders like ![attachment](...), because the media gets imported separately.
  • Insert entries into ZJOURNALENTRYMO.
  • Link them to journals through Z_5JOURNALS.
  • Insert image/audio/Live Photo rows into the asset tables.
  • Copy media files into Apple Journal’s Attachments directory structure.
  • Update Core Data primary key counters.
  • Run SQLite integrity checks.
  • Reopen Journal and let it process the imported data.

Images worked as normal Apple Journal photo assets.

Everlog .pvt Live Photo files were Apple binary plists containing separate HEIC and MOV payloads, so those could be split and imported as Live Photo-style assets.

Audio .m4a files also worked. Apple Journal picked them up as audio assets and processed them after launch.

The weirdest part was comments. Everlog supports comments/replies on entries, but Apple Journal does not. Importing comments as separate entries made them look disconnected and confusing. The best compromise was to fold comments into the parent entry as a final section:

Comments

> Fri, Jun 26, 2026 at 4:29 PM
> This is an example comment from Everlog

That preserved the comment text and timestamp without pretending Apple Journal has a real comment system.

Before doing any of this, I turned off iCloud sync for Journal, quit Journal completely, and made backups of the local database. I also checked the database with:

PRAGMA integrity_check;

After importing, Apple Journal displayed the entries, journals, images, Live Photos, audio clips, Markdown formatting, and folded comments correctly.

Again, this is very much not supported. It is direct surgery on a private Apple database format. Apple could change it at any time, and iCloud sync may add extra risks. But as a local import experiment, yes, it is possible.

u/TacticalTorchTickler — 7 days ago

What is the state of Apple Journal today?

I used Apple Journal for a while, but with missing features and broken Apple Pencil experience on iPad, I stopped using it.

Unfortunately that meant that I also stopped Journaling.

The app really helped me stay consistent, so I'd like to start again but wondering if Apple has made any updates to it?

TIA!

reddit.com
u/NSA_GOV — 12 days ago

Apple Journal’s Atrocious Undo Bug Has Been Fixed (And Swiftui, Per Se, Is Not To Blame)

From Gruber:

>"I heard from Apple PR that:

>The text editing component in Journal is in fact UIKit, not SwiftUI, so I was wrong to blame SwiftUI just because Journal is largely SwiftUI-based.

>The bug had been identified and fixed for a future update.

>Well, the future is already here, because the buggy Undo behavior in Journal is fixed in developer beta 2 on both MacOS and iOS 27. Nice. I hope it gets fixed for the 26.6 releases too, but at the moment it’s still broken in the current developer beta of 26.6 (and, of course, still broken in all the v26.5 OSes). So be careful while writing in Journal."

daringfireball.net
u/tomjirinec — 11 days ago

iOS 27 beta 2 : an improvement

There’s been an improvement in Apple News battery consumption on iOS 27 beta 2.

The phone (17 pro max) heats up much less; after half an hour of use, it’s barely noticeable.

As for battery consumption, it’s better:

- Before, one minute used up 1% 😳

- Now, three minutes use up 1%.

That’s three times less. It’s not great, but it’s better... 

reddit.com
u/ConfidenceClear1016 — 13 days ago

Are the sync issues overblown?

I have seen posts online but I haven't used Apple Notes much.

Would you say it is overblown? I want to start using it as I only have basic needs and most other apps (except OneNote) are overkill. I'd love to use something that is built into 2/3 of my devices. I use windows + ipad + iphone.

reddit.com
u/GeminiArcana — 12 days ago