Quicknotes v0.2.0
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.2.0]: 2019-11-12
|
||||||
|
- Implement notes tagging support and filter with it.
|
||||||
|
- Fix calling exponentially to save notes when pressed Alt+Return.
|
||||||
|
- Update spanish translation
|
||||||
|
|
||||||
## [0.1.10]: 2019-11-02
|
## [0.1.10]: 2019-11-02
|
||||||
### Added
|
### Added
|
||||||
- Add Italian translation. Thanks to @albanobattistella
|
- Add Italian translation. Thanks to @albanobattistella
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<name>Quick notes</name>
|
<name>Quick notes</name>
|
||||||
<summary>Quick notes with a basic rich text</summary>
|
<summary>Quick notes with a basic rich text</summary>
|
||||||
<description>Quick notes with a basic rich text</description>
|
<description>Quick notes with a basic rich text</description>
|
||||||
<version>0.1.11</version>
|
<version>0.2.0</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>Matias De lellis</author>
|
<author>Matias De lellis</author>
|
||||||
<namespace>QuickNotes</namespace>
|
<namespace>QuickNotes</namespace>
|
||||||
@@ -17,7 +17,8 @@
|
|||||||
<screenshot small-thumbnail="https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-grid-view-small.png">https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-grid-view.png</screenshot>
|
<screenshot small-thumbnail="https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-grid-view-small.png">https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-grid-view.png</screenshot>
|
||||||
<screenshot>https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-note-edit.png</screenshot>
|
<screenshot>https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-note-edit.png</screenshot>
|
||||||
<screenshot>https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-rich-text.png</screenshot>
|
<screenshot>https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-rich-text.png</screenshot>
|
||||||
|
<screenshot>https://raw.githubusercontent.com/matiasdelellis/quicknotes/master/doc/quicknotes-note-tag.png</screenshot>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<nextcloud min-version="14" max-version="17"/>
|
<nextcloud min-version="16" max-version="17"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</info>
|
</info>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 69 KiB |
BIN
doc/quicknotes-note-tag.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 71 KiB |
@@ -30,7 +30,7 @@ const QnDialogs = {
|
|||||||
var dialogId = '#' + dialogName;
|
var dialogId = '#' + dialogName;
|
||||||
var $dlg = $tmpl.octemplate({
|
var $dlg = $tmpl.octemplate({
|
||||||
dialog_name: dialogName,
|
dialog_name: dialogName,
|
||||||
title: t('quicknotes', 'Tag note'),
|
title: t('quicknotes', 'Tag the note'),
|
||||||
message: t('quicknotes', 'Enter tags to organize your note'),
|
message: t('quicknotes', 'Enter tags to organize your note'),
|
||||||
type: 'none'
|
type: 'none'
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -12,6 +12,11 @@ OC.L10N.register(
|
|||||||
"All notes" : "Todas las notas",
|
"All notes" : "Todas las notas",
|
||||||
"Colors" : "Colores",
|
"Colors" : "Colores",
|
||||||
"Notes" : "Notas",
|
"Notes" : "Notas",
|
||||||
"Quick notes with a basic rich text" : "Notas rápidas con un texto enriquecido básico"
|
"Quick notes with a basic rich text" : "Notas rápidas con un texto enriquecido básico",
|
||||||
|
"Tag the note" : "Etiqueta la nota",
|
||||||
|
"Enter tags to organize your note" : "Ingrese etiquetas para organizar su nota",
|
||||||
|
"Enter tag name" : "Ingrese el nombre de la etiqueta",
|
||||||
|
"Done" : "Hecho",
|
||||||
|
"Tags" : "Etiquetas"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|||||||
@@ -10,6 +10,11 @@
|
|||||||
"All notes" : "Todas las notas",
|
"All notes" : "Todas las notas",
|
||||||
"Colors" : "Colores",
|
"Colors" : "Colores",
|
||||||
"Notes" : "Notas",
|
"Notes" : "Notas",
|
||||||
"Quick notes with a basic rich text" : "Notas rápidas con un texto enriquecido básico"
|
"Quick notes with a basic rich text" : "Notas rápidas con un texto enriquecido básico",
|
||||||
|
"Tag the note" : "Etiqueta la nota",
|
||||||
|
"Enter tags to organize your note" : "Ingrese etiquetas para organizar su nota",
|
||||||
|
"Enter tag name" : "Ingrese el nombre de la etiqueta",
|
||||||
|
"Done" : "Hecho",
|
||||||
|
"Tags" : "Etiquetas"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||