Skip to content

Commit

Permalink
Merge pull request #194 from Automattic/develop
Browse files Browse the repository at this point in the history
Simplenote Mark 1.3.2
  • Loading branch information
jleandroperez authored Mar 13, 2018
2 parents 3153779 + 54e5adb commit 6c2f75b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Simplenote/NoteEditorViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,13 @@ - (void)displayNotes:(NSArray *)notes
- (void)checkTextInDocument
{
dispatch_async(dispatch_get_main_queue(), ^() {
// Temporarily remove the editor delegate because `checkTextInDocument`
// fires `textDidChange` which will erroneously modify the note's modification
// date and unintentionally change the sort order of the note in the list as a result
[self.noteEditor setDelegate:nil];
[self.noteEditor checkTextInDocument:nil];
[self.noteEditor setNeedsDisplay:YES];
[self.noteEditor setDelegate:self];
});
}

Expand Down
4 changes: 2 additions & 2 deletions Simplenote/Simplenote-Info-Hockey.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3.1</string>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1310</string>
<string>1320</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.productivity</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Simplenote/Simplenote-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3.1</string>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1310</string>
<string>1320</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down

0 comments on commit 6c2f75b

Please sign in to comment.