Skip to content

Commit

Permalink
Quicknotes v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasdelellis committed Nov 13, 2019
1 parent 1b6b9cd commit 3d4f68f
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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 modified doc/quicknotes-grid-view-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/quicknotes-grid-view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/quicknotes-note-edit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/quicknotes-note-tag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/quicknotes-rich-text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion js/qn-dialogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
});
Expand Down
7 changes: 6 additions & 1 deletion l10n/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);");
7 changes: 6 additions & 1 deletion l10n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -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);"
}

0 comments on commit 3d4f68f

Please sign in to comment.