Welcome to the offical GitHub-Repo of SimpleJournal. SimpleJournal is a simple tool similar to OneNote or Windows Journal. The idea came from my best friend (Daniel S.) a few years ago (see more details) and since then SimpleJournal has evolved to a useful App which is also available in the Micorosft Store!
There are two versions of SimpleJournal due to compability issues, e.g. like supporting older versions of Windows. So we have the normal version
which is running also on Windows 7 and the store version
. If you want to download the non-store version click here.
Due to store-restrictions both versions are different: The normal version supports more features than the other, so therefore there are different builds: UWP
and Normal
. As you might have noticed that SimpleJournal is written in WPF
(.NET 6
), the Store-Version is not a real UWP-App. It is converted with the Desktop Brdige
(MSIX Packaging Tool
)
Feature | Normal Version | Store Version |
---|---|---|
Paper Format | A4 | A4 |
Automatic Updates | ❌ | ✔️ |
Disable Touch | ✔️ | ❌ |
Backup & Auto Save | ✔️ | ✔️ |
Checkered, lined and blank pages | ✔️ | ✔️ |
Text & Form Recognition | ✔️ | ✔️ |
Custom drawing tools | ✔️ | ✔️ |
This is a small solution making SimpleJournal more usable on devices which support touch input (not only pen input). A page in SimpleJournal is based on the WPF InkCanvas
which doesn't makes a difference according to the input source, so if you'll write via mouse, touch or pen this control cannot distinguish which input you have used respectively I wasn't able to differentiate it in the control (the newer InkCanvas
from UWP Framework can do this). The problem is if you are writing with a pen while you put down your hand on your touch screen, both inputs are recognized and drawn and that leads to annoying results.
To prevent this I came up with a soultion which completely disables your touch screen based on devcon
. This works the same way as your device manager do, as if you click on Disable Device
. This is implemented as an option in the settings and it's not activated in the default settings. To enhance the usability your touch screen will be deactivated on the startup of SimpleJournal and will be reactivated if you close the last instance of SimpleJournal.
For the non-store version I created a simple tool which you can use for en/disabling your touch screen. The reason why this feature is only integrated in the non-store version is, that this feature requires administrator privileges and currently I don't know how to aquire administrator privileges in the Store app!
In order to work with form or text-recognition you need to compile Analyzer
and then all files should be copied automatically while publishing!
- Daniel S. for the great ideas and testing!
- Stefan E. for the great ideas and testing!
- Elmo for the dutch translation!