Skip to content

Commit

Permalink
Update version, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Jul 23, 2023
1 parent d9009ab commit e21c15f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ android {
applicationId "org.billthefarmer.diary"
minSdkVersion 14
targetSdkVersion 28
versionName "1.99"
versionCode 199
versionName "1.100"
versionCode 1100

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/billthefarmer/diary/Diary.java
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ public void onTextChanged(CharSequence s,
// Match checkbox pattern
Matcher matcher = CHECK_PATTERN.matcher(textView.getText());
if (matcher.region(start, end).find() &&
matcher.end() > selection)
matcher.end() >= selection)
{
Editable editable = textView.getEditableText();
switch (editable.charAt(matcher.start(1)))
Expand Down

0 comments on commit e21c15f

Please sign in to comment.