d2650713e7
README: Add Twitter and Reddit
2020-04-26 11:28:39 +02:00
29b002b0f0
MarkdownEditor: New notes should always be in edit mode
...
Fixes #119
2020-04-25 21:34:22 +02:00
bc32e5bbb3
Editors: Rename autofocus to isNewNote
...
It's more descriptive, and lets each edit decide how it wants to handle
new notes vs existing.
2020-04-25 21:33:42 +02:00
a0247e7c9e
Ignore a few more git exceptions
2020-04-23 10:08:22 +02:00
ddc7ef1d85
Bump version
2020-04-22 23:35:16 +02:00
f67300cce7
PurchaseScreen: Only show monthly offerings
2020-04-22 23:31:19 +02:00
45a57da88a
Only check if subscription is valid if it has expired
...
This way we avoid extra network access.
2020-04-22 23:30:50 +02:00
74df0f2bbc
PurchaseScreen: Allow the user to select the price
...
We show a range of available prices. I'm hoping people will pay
according to how much they can afford.
2020-04-22 23:12:24 +02:00
d3aa78c39b
Ananlytics: Initialize firebase properly
2020-04-22 22:39:06 +02:00
152a95d4e9
Record when an action is performed on a Note/Folder
...
This way I'll have statistics about how the app is used and more
importantly, figuring out crash reports will be easier as there will be
a rough trail of actions.
2020-04-22 01:31:48 +02:00
c0623d1c3c
Sentry: Add error breadcrumbs
...
This way we will have some context as to why an error happened.
2020-04-22 01:31:32 +02:00
d511dab346
Abstract out the analytics class
2020-04-22 00:51:25 +02:00
1f78dc2dfe
Update dart git dependency
...
Removes a dependency on ini
2020-04-22 00:44:57 +02:00
e5cd9ddec2
Email Regexp: Allow dashes
2020-04-21 20:49:26 +02:00
77e67fca11
Rename Folders properly
...
1. Actually rename the folder instead of calling rename with the oldPath
2. Inform the parentFolder that a sub-folder has been renamed so it can
accordingly update its mapping.
Fixes #108
2020-04-20 02:11:42 +02:00
5784399ac6
Remove NotesFolderFS::insert
...
The position of the note in the folder doesn't matter as Virtual folders
on top of this sort it according to how to how the user wants them to be
sorted.
2020-04-20 01:56:32 +02:00
3c3c49e099
Search: Check if filename matches
...
Fixes #95
We really need search highlighting to showcase why an item matched while
searching. Additionally, soon we may need to give the user control over
what all should be searched.
2020-04-20 00:37:48 +02:00
f84642207d
Always check if not in pro mode
...
A person can install the app and be already in pro mode - for example if
they have cleared their cache. Ideally, we shouldn't be checking each
time on boot and instead just be checking when it expires.
Fixes #110
2020-04-20 00:28:24 +02:00
ff2ac647c5
Remove unused imports
2020-04-17 10:33:31 +02:00
25e5d3b8b7
Bump version
2020-04-17 10:32:53 +02:00
d81041802a
MarkdownView: Use CachedNetworkImage
...
This is the simplest way I could find of showing a placeholder and
loading screen while the image was downloading. I'm not sure if I want
to cache the images locally.
Also, this adds lots of dependencies, which I'm not too comfortable
with.
2020-04-17 10:27:21 +02:00
6c47016c8b
logException: Also log to Sentry
2020-04-17 09:42:19 +02:00
98b8e92437
PurchaseScreen: Show error as snackbar
...
We seem to be getting a PlatformException while listing the offerings.
2020-04-17 09:37:22 +02:00
b66d9e1a66
README: Add another screenshot
2020-04-16 17:59:39 +02:00
463bf7b4e6
README: Update screenshots
2020-04-16 17:55:01 +02:00
36aaabf582
TestDriver: Take some more screenshots
...
* Add some existing notes
* Screenshot the checklist edit
* Screenshot the folders view
2020-04-16 17:34:38 +02:00
db677f876b
Fix settings crash
2020-04-16 17:20:19 +02:00
2d01e1d825
CI: Try to fix it
...
Not sure why this is suddenly happening
2020-04-16 13:48:37 +02:00
1d4fd16cc7
PurchaseScreen: Add another advantage
2020-04-16 13:32:04 +02:00
0be484f9b3
PurchaseScreen: Log purchases
2020-04-16 13:31:43 +02:00
afe94da638
MarkdownEditor: Allow the default view to be configurable
...
Fixes #98
2020-04-16 13:16:40 +02:00
d03213178c
Settings: Move Editor Settings to their own screen
...
It just has the default settings right now, but we need to expose some
settings in the Markdown Editor.
2020-04-16 13:06:11 +02:00
84a7812f0b
Log Settings and AppState
...
Not as debug messages. This is very important when receiving a bug
report.
2020-04-16 11:50:18 +02:00
fd7ad7d92b
Generate a random uuid for each user for Sentry
...
This way, we know if one particular user has lots of errors. Firebase
Crashlytics used to do this automatically, I think.
2020-04-16 11:49:20 +02:00
21a7798dc9
Note.load: lastModified can throw an exception
...
Fixes APP-V
2020-04-16 10:12:33 +02:00
bbaf5b4452
Wait for previous completion of loadNotes
...
Fixes APP-R
2020-04-16 09:35:18 +02:00
c14ffda409
App: Store the gitBasePath in the settings
...
This is the folder where the git repo should be stored.
By storing it, we can easily change it later. Also it allows us to
reduce of our custom platform code.
2020-04-15 14:25:40 +02:00
9a77afcbfd
Do not allow / in the filename
...
Fixes #102
2020-04-15 14:02:36 +02:00
7b03e88847
Add another advantage to the purchase section
2020-04-15 09:05:06 +02:00
5bc6ed9d9e
Bump version
2020-04-14 18:31:01 +02:00
dbeb1cdbe5
Remove hero from note_viewer
...
We now show the NoteEditor directly, so this hero doesn't really do
much.
2020-04-14 18:27:16 +02:00
0162d1e11a
Only do a git push if one has commits to push
...
This is the first use of my pure Dart implementation of Git. Hurray!
Now hopefully, I can slowly get rid of git_bindings entirely.
2020-04-14 18:15:32 +02:00
2eda892285
Remember to dispose text controllers
2020-04-14 17:53:17 +02:00
90dcb72ccf
NoteEditor: Fix debug variable
2020-04-14 17:53:02 +02:00
f53aa53683
Checklist: Maintain the case of 'x'
2020-04-14 17:46:24 +02:00
40d613b60c
Revert "Remove unused variable"
...
This reverts commit e0e0d6d42f1fadaf47f55c880ade4d1ab393cbaa.
This is clearly used.
2020-04-14 17:09:19 +02:00
a0ea7397ee
Remove unused variable
2020-04-14 16:47:47 +02:00
f79fc52a89
PurchaseScreen: Allow it to be scrolled
...
Maybe for really small screens?
2020-04-14 16:31:17 +02:00
e117c19add
PurchaseScreen: Change status bar color
...
It looks strange when it's just white.
2020-04-14 16:20:00 +02:00
e426f5523c
Do not report Flutter errors to Crashlytics
...
It's just extra noise. We're still initializing it as I want the
iOS/Android level errors.
2020-04-14 16:19:44 +02:00