Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Prankoys

5
Posts
1
Followers
A member registered Mar 18, 2022

Recent community posts

Oh, did it work?

(1 edit)

Strange. That should've disabled spellchecking unless I made a mistake with the code I gave you. Did you close JRNL before editing the Preferences file, or restart it afterwards?

For what it's worth, the original version of my file looked identical to yours. I deleted en-US from the dictionaries list, and JRNL added a few other spellcheck-disabling entries on its own when I next started it. You could try one last thing and replace the contents of "Preferences" with the following (make sure you've quit JRNL first):

{"spellcheck":{"dictionaries":[""],"dictionary":""}}

If that still doesn't work, there's a spellCheck attribute in JRNL\resources\app\summernote.js you could try setting to false. I'm hesitant to test it on my end for fear of possibly breaking something, but hey, might work for you.

Hopefully the author will come along and add a spellchecker toggle to the configuration menu, as well as fix that other entry-wiping bug I mentioned in another comment below.

Unfortunately, I don't really know of any alternative journal software, as I only started journaling again after discovering this app through the Ukraine bundle.

(2 edits)

I think Windows' folder structure is mostly the same between 7, 8, and 10. Try pasting %appdata%\jrnl into Windows Explorer's address bar. That should get you into the right directory with the Preferences file. Opening the Run dialog (Windows key + R) and pasting the same thing in there should also work.

Try overwriting the contents of your Preferences file (should be in %appdata%\jrnl) with the following:

{"browser":{"enable_spellchecking":false},"spellcheck":{"dictionaries":["en-US"],"dictionary":"","use_spelling_service":false}}

Of course, make a backup of the original file, just in case.

This is a great app that has reignited my habit of writing daily, but there seems to be a nasty bug that wipes the last-open entry when JRNL is closed. I don't know what exactly is behind it (possibly Summernote unloading early and causing the program to overwrite the journal file with empty data?), but until the author releases a fix, to prevent this on my end I've disabled save-on-close by commenting out the saveFile() line under the windowClose event trigger in JRNL\resources\app\body.js, like so:

ipcRenderer.on('windowClose',(event, arg) => {
    if(autoSaveInterval != null) {
        clearInterval(autoSaveInterval);
    }
    saveConfig();
    //saveFile(currentDateString);
});

Downside is you need to be sure to hit Ctrl+S or load another day to save the current entry before closing JRNL, but it beats randomly losing an entire entry on shutdown.