Skip to content

Commit

Permalink
Fixed shrinking
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausSchaefersAtWork committed Feb 2, 2022
1 parent 367bfcd commit 21a51b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RememberLi supports the following markups that make it easy for you to organize
5. ->: Create an arrow

## Download
Windows [Download](https://github.com/KlausSchaefers/rememberli/releases/download/v1.0.9/RememberLi-Setup-1.0.9.exe)
Windows [Download](https://github.com/KlausSchaefers/rememberli/releases/download/v1.0.10/RememberLi-Setup-1.0.10.exe)

Mac [Download](https://github.com/KlausSchaefers/rememberli/releases/download/v1.0.9/RememberLi-1.0.9.dmg)
Mac [Download](https://github.com/KlausSchaefers/rememberli/releases/download/v1.0.10/RememberLi-1.0.10.dmg)

## Mac Install

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "RememberLi",
"version": "1.0.9",
"version": "1.0.10",
"private": true,
"repository": {
"type": "git",
Expand Down
9 changes: 6 additions & 3 deletions src/components/Note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,13 @@ export default {
*/
let lines = value.toLowerCase().split('\n')
let hits = new Set()
let terms = RememberLi.parseQuery(this.query).terms
lines.forEach((line, i) => {
if (line.indexOf(this.query) > -1) {
hits.add(i)
}
terms.forEach(term => {
if (line.indexOf(term) > -1) {
hits.add(i)
}
})
})
/**
Expand Down
2 changes: 1 addition & 1 deletion src/views/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default {
props:['value'],
data: function () {
return {
version: '1.0.9',
version: '1.0.10',
settings: {
theme: 'default',
fontSize: 's',
Expand Down

0 comments on commit 21a51b2

Please sign in to comment.