Quicknotes v0.2.0

This commit is contained in:
Matias De lellis
2019-11-12 22:37:59 -03:00
parent 1b6b9cd706
commit 3d4f68f707
10 changed files with 22 additions and 6 deletions

View File

@@ -1,4 +1,9 @@
#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
### Added

View File

@@ -5,7 +5,7 @@
<name>Quick notes</name>
<summary>Quick notes with a basic rich text</summary>
<description>Quick notes with a basic rich text</description>
<version>0.1.11</version>
<version>0.2.0</version>
<licence>agpl</licence>
<author>Matias De lellis</author>
<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>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-note-tag.png</screenshot>
<dependencies>
<nextcloud min-version="14" max-version="17"/>
<nextcloud min-version="16" max-version="17"/>
</dependencies>
</info>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 69 KiB

BIN
doc/quicknotes-note-tag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@@ -30,7 +30,7 @@ const QnDialogs = {
var dialogId = '#' + dialogName;
var $dlg = $tmpl.octemplate({
dialog_name: dialogName,
title: t('quicknotes', 'Tag note'),
title: t('quicknotes', 'Tag the note'),
message: t('quicknotes', 'Enter tags to organize your note'),
type: 'none'
});

View File

@@ -12,6 +12,11 @@ OC.L10N.register(
"All notes" : "Todas las notas",
"Colors" : "Colores",
"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);");

View File

@@ -10,6 +10,11 @@
"All notes" : "Todas las notas",
"Colors" : "Colores",
"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);"
}