1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Merge branch 'dev' of github.com:laurent22/joplin into dev

This commit is contained in:
Laurent Cozic 2021-01-07 16:30:13 +00:00
commit 1700b29f7d
6 changed files with 114 additions and 46 deletions

View File

@ -235,6 +235,7 @@ WebDAV-compatible services that are known to work with Joplin:
- [OwnCloud](https://owncloud.org/) - [OwnCloud](https://owncloud.org/)
- [Seafile](https://www.seafile.com/) - [Seafile](https://www.seafile.com/)
- [Stack](https://www.transip.nl/stack/) - [Stack](https://www.transip.nl/stack/)
- [Synology WebDAV Server](https://www.synology.com/en-us/dsm/packages/WebDAVServer)
- [WebDAV Nav](https://www.schimera.com/products/webdav-nav-server/), a macOS server. - [WebDAV Nav](https://www.schimera.com/products/webdav-nav-server/), a macOS server.
- [Zimbra](https://www.zimbra.com/) - [Zimbra](https://www.zimbra.com/)

View File

@ -271,4 +271,48 @@ describe('models_Note', function() {
expect(result).toBe(`[](:/${note1.id})`); expect(result).toBe(`[](:/${note1.id})`);
})); }));
it('should perform natural sorting', (async () => {
const folder1 = await Folder.save({});
const sortedNotes = await Note.previews(folder1.id, {
fields: ['id', 'title'],
order: [{ by: 'title', dir: 'ASC' }],
});
expect(sortedNotes.length).toBe(0);
const note0 = await Note.save({ title: 'A3', parent_id: folder1.id, is_todo: false });
const note1 = await Note.save({ title: 'A20', parent_id: folder1.id, is_todo: false });
const note2 = await Note.save({ title: 'A100', parent_id: folder1.id, is_todo: false });
const note3 = await Note.save({ title: 'égalité', parent_id: folder1.id, is_todo: false });
const note4 = await Note.save({ title: 'z', parent_id: folder1.id, is_todo: false });
const sortedNotes2 = await Note.previews(folder1.id, {
fields: ['id', 'title'],
order: [{ by: 'title', dir: 'ASC' }],
});
expect(sortedNotes2.length).toBe(5);
expect(sortedNotes2[0].id).toBe(note0.id);
expect(sortedNotes2[1].id).toBe(note1.id);
expect(sortedNotes2[2].id).toBe(note2.id);
expect(sortedNotes2[3].id).toBe(note3.id);
expect(sortedNotes2[4].id).toBe(note4.id);
const todo3 = Note.changeNoteType(note3, 'todo');
const todo4 = Note.changeNoteType(note4, 'todo');
await Note.save(todo3);
await Note.save(todo4);
const sortedNotes3 = await Note.previews(folder1.id, {
fields: ['id', 'title'],
order: [{ by: 'title', dir: 'ASC' }],
uncompletedTodosOnTop: true,
});
expect(sortedNotes3.length).toBe(5);
expect(sortedNotes3[0].id).toBe(note3.id);
expect(sortedNotes3[1].id).toBe(note4.id);
expect(sortedNotes3[2].id).toBe(note0.id);
expect(sortedNotes3[3].id).toBe(note1.id);
expect(sortedNotes3[4].id).toBe(note2.id);
}));
}); });

View File

@ -109,7 +109,10 @@ def enableProguardInReleaseBuilds = false
* give correct results when using with locales other than en-US. Note that * give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default. * this variant is about 6MiB larger per architecture than default.
*/ */
def jscFlavor = 'org.webkit:android-jsc:+'
// We need the intl variant to support natural sorting of notes.
// https://github.com/laurent22/joplin/pull/4272
def jscFlavor = 'org.webkit:android-jsc-intl:+'
/** /**
* Whether to enable the Hermes VM. * Whether to enable the Hermes VM.

View File

@ -260,6 +260,8 @@ class Note extends BaseItem {
return noteFieldComp(a.id, b.id); return noteFieldComp(a.id, b.id);
}; };
const collator = this.getNaturalSortingCollator();
return notes.sort((a, b) => { return notes.sort((a, b) => {
if (noteOnTop(a) && !noteOnTop(b)) return -1; if (noteOnTop(a) && !noteOnTop(b)) return -1;
if (!noteOnTop(a) && noteOnTop(b)) return +1; if (!noteOnTop(a) && noteOnTop(b)) return +1;
@ -272,8 +274,13 @@ class Note extends BaseItem {
let bProp = b[order.by]; let bProp = b[order.by];
if (typeof aProp === 'string') aProp = aProp.toLowerCase(); if (typeof aProp === 'string') aProp = aProp.toLowerCase();
if (typeof bProp === 'string') bProp = bProp.toLowerCase(); if (typeof bProp === 'string') bProp = bProp.toLowerCase();
if (aProp < bProp) r = +1;
if (aProp > bProp) r = -1; if (order.by === 'title') {
r = -1 * collator.compare(aProp, bProp);
} else {
if (aProp < bProp) r = +1;
if (aProp > bProp) r = -1;
}
if (order.dir == 'ASC') r = -r; if (order.dir == 'ASC') r = -r;
if (r !== 0) return r; if (r !== 0) return r;
} }
@ -377,6 +384,7 @@ class Note extends BaseItem {
tempOptions.conditions = cond; tempOptions.conditions = cond;
const uncompletedTodos = await this.search(tempOptions); const uncompletedTodos = await this.search(tempOptions);
this.handleTitleNaturalSorting(uncompletedTodos, tempOptions);
cond = options.conditions.slice(); cond = options.conditions.slice();
if (hasNotes && hasTodos) { if (hasNotes && hasTodos) {
@ -389,6 +397,7 @@ class Note extends BaseItem {
tempOptions.conditions = cond; tempOptions.conditions = cond;
if ('limit' in tempOptions) tempOptions.limit -= uncompletedTodos.length; if ('limit' in tempOptions) tempOptions.limit -= uncompletedTodos.length;
const theRest = await this.search(tempOptions); const theRest = await this.search(tempOptions);
this.handleTitleNaturalSorting(theRest, tempOptions);
return uncompletedTodos.concat(theRest); return uncompletedTodos.concat(theRest);
} }
@ -401,7 +410,10 @@ class Note extends BaseItem {
options.conditions.push('is_todo = 1'); options.conditions.push('is_todo = 1');
} }
return this.search(options); const results = await this.search(options);
this.handleTitleNaturalSorting(results, options);
return results;
} }
static preview(noteId, options = null) { static preview(noteId, options = null) {
@ -862,6 +874,17 @@ class Note extends BaseItem {
} }
} }
static handleTitleNaturalSorting(items, options) {
if (options.order.length > 0 && options.order[0].by === 'title') {
const collator = this.getNaturalSortingCollator();
items.sort((a, b) => ((options.order[0].dir === 'ASC') ? 1 : -1) * collator.compare(a.title, b.title));
}
}
static getNaturalSortingCollator() {
return new Intl.Collator(undefined, { numeric: true, sensitivity: 'base' });
}
} }
Note.updateGeolocationEnabled_ = true; Note.updateGeolocationEnabled_ = true;

View File

@ -13,8 +13,10 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.3\n" "X-Generator: Poedit 2.4.2\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
#: packages/app-desktop/bridge.js:106 packages/app-desktop/bridge.js:110 #: packages/app-desktop/bridge.js:106 packages/app-desktop/bridge.js:110
#: packages/app-desktop/bridge.js:126 packages/app-desktop/bridge.js:134 #: packages/app-desktop/bridge.js:126 packages/app-desktop/bridge.js:134
@ -416,18 +418,20 @@ msgid ""
"This Rich Text editor has a number of limitations and it is recommended to " "This Rich Text editor has a number of limitations and it is recommended to "
"be aware of them before using it." "be aware of them before using it."
msgstr "" msgstr ""
"リッチテキストエディターには多くの制限がありますので、それらをご承知の上でご"
"使用ください。"
#: packages/app-desktop/gui/NoteEditor/NoteEditor.js:340 #: packages/app-desktop/gui/NoteEditor/NoteEditor.js:340
msgid "Read more about it" msgid "Read more about it"
msgstr "" msgstr "もっと知りたい"
#: packages/app-desktop/gui/NoteEditor/NoteEditor.js:345 #: packages/app-desktop/gui/NoteEditor/NoteEditor.js:345
msgid "Dismiss" msgid "Dismiss"
msgstr "" msgstr "閉じる"
#: packages/app-desktop/gui/NoteEditor/NoteEditor.js:381 #: packages/app-desktop/gui/NoteEditor/NoteEditor.js:381
msgid "The following attachments are being watched for changes:" msgid "The following attachments are being watched for changes:"
msgstr "下記の添付ファイルが変更されたかどうかを監視中です" msgstr "下記の添付ファイルが変更されたかどうかを監視中です:"
#: packages/app-desktop/gui/NoteEditor/NoteEditor.js:384 #: packages/app-desktop/gui/NoteEditor/NoteEditor.js:384
msgid "" msgid ""
@ -481,43 +485,40 @@ msgid "Horizontal Rule"
msgstr "横線" msgstr "横線"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:88 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:88
#, fuzzy
msgid "Delete line" msgid "Delete line"
msgstr "ノートを削除しますか?" msgstr "行を削除"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:92 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:92
msgid "Undo" msgid "Undo"
msgstr "" msgstr "元に戻す"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:96 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:96
msgid "Redo" msgid "Redo"
msgstr "" msgstr "やり直す"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:100 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:100
msgid "Indent less" msgid "Indent less"
msgstr "" msgstr "インデントを減らす"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:104 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:104
msgid "Indent more" msgid "Indent more"
msgstr "" msgstr "インデントを増やす"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:108 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:108
#, fuzzy
msgid "Toggle comment" msgid "Toggle comment"
msgstr "ノート一覧の表示切り替え" msgstr "コメントの切り替え"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:112 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:112
#, fuzzy
msgid "Sort selected lines" msgid "Sort selected lines"
msgstr "選択したノートを編集" msgstr "選択行の並び替え"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:116 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:116
msgid "Swap line up" msgid "Swap line up"
msgstr "" msgstr "前の行と入れ替え"
#: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:120 #: packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.js:120
msgid "Swap line down" msgid "Swap line down"
msgstr "" msgstr "次の行と入れ替え"
#: packages/app-desktop/gui/NoteEditor/commands/focusElementNoteTitle.js:16 #: packages/app-desktop/gui/NoteEditor/commands/focusElementNoteTitle.js:16
msgid "Note title" msgid "Note title"
@ -696,7 +697,7 @@ msgstr "いくつかの項目は復号されませんでした。"
#: packages/app-desktop/gui/MainScreen/MainScreen.js:421 #: packages/app-desktop/gui/MainScreen/MainScreen.js:421
msgid "One or more master keys need a password." msgid "One or more master keys need a password."
msgstr "パスワードに1つ以上のマスターキーが必要です" msgstr "パスワード入力の必要なマスターキーがあります。"
#: packages/app-desktop/gui/MainScreen/MainScreen.js:423 #: packages/app-desktop/gui/MainScreen/MainScreen.js:423
msgid "Set the password" msgid "Set the password"
@ -984,7 +985,7 @@ msgstr "Joplinについて"
#: packages/app-desktop/gui/MenuBar.js:341 #: packages/app-desktop/gui/MenuBar.js:341
msgid "Preferences..." msgid "Preferences..."
msgstr "環境設定" msgstr "環境設定..."
#: packages/app-desktop/gui/MenuBar.js:351 #: packages/app-desktop/gui/MenuBar.js:351
#: packages/app-desktop/gui/MenuBar.js:590 #: packages/app-desktop/gui/MenuBar.js:590
@ -1698,7 +1699,7 @@ msgstr "ノートブックがありません。"
#: packages/app-mobile/components/note-list.js:101 #: packages/app-mobile/components/note-list.js:101
msgid "Create a notebook" msgid "Create a notebook"
msgstr "ノートブックを作成します" msgstr "ノートブックを作成します"
#: packages/app-mobile/components/note-list.js:105 #: packages/app-mobile/components/note-list.js:105
msgid "There are currently no notes. Create one by clicking on the (+) button." msgid "There are currently no notes. Create one by clicking on the (+) button."
@ -2025,6 +2026,8 @@ msgid ""
"The default admin password is insecure and has not been changed! [Change it " "The default admin password is insecure and has not been changed! [Change it "
"now](%s)" "now](%s)"
msgstr "" msgstr ""
"デフォルトの管理者パスワードが変更されておらず危険な状態です! [今すぐ変更]"
"(%s)"
#: packages/lib/onedrive-api-node-utils.js:46 #: packages/lib/onedrive-api-node-utils.js:46
#, javascript-format #, javascript-format
@ -2062,9 +2065,8 @@ msgid "Dropbox"
msgstr "Dropbox" msgstr "Dropbox"
#: packages/lib/SyncTargetJoplinServer.js:30 #: packages/lib/SyncTargetJoplinServer.js:30
#, fuzzy
msgid "Joplin Server" msgid "Joplin Server"
msgstr "JoplinのWebサイト" msgstr "Joplinサーバー"
#: packages/lib/shim-init-node.js:201 #: packages/lib/shim-init-node.js:201
#, javascript-format #, javascript-format
@ -2208,21 +2210,19 @@ msgstr "AWS シークレットアクセスキー"
#: packages/lib/models/Setting.js:259 #: packages/lib/models/Setting.js:259
msgid "Joplin Server URL" msgid "Joplin Server URL"
msgstr "" msgstr "JoplinサーバーURL"
#: packages/lib/models/Setting.js:273 #: packages/lib/models/Setting.js:273
#, fuzzy
msgid "Joplin Server Directory" msgid "Joplin Server Directory"
msgstr "Joplin エクスポートディレクトリ" msgstr "Joplinサーバーディレクトリ"
#: packages/lib/models/Setting.js:283 #: packages/lib/models/Setting.js:283
msgid "Joplin Server username" msgid "Joplin Server username"
msgstr "" msgstr "Joplinサーバーユーザー名"
#: packages/lib/models/Setting.js:293 #: packages/lib/models/Setting.js:293
#, fuzzy
msgid "Joplin Server password" msgid "Joplin Server password"
msgstr "マスターパスワードを入力してください:" msgstr "Joplinサーバーパスワード"
#: packages/lib/models/Setting.js:305 #: packages/lib/models/Setting.js:305
msgid "Attachment download behaviour" msgid "Attachment download behaviour"
@ -2312,7 +2312,7 @@ msgstr "完了したToDoを表示"
#: packages/lib/models/Setting.js:471 #: packages/lib/models/Setting.js:471
msgid "Auto-pair braces, parenthesis, quotations, etc." msgid "Auto-pair braces, parenthesis, quotations, etc."
msgstr "始めの括弧や引用符入力時に終わりの括弧や引用符を自動入力する" msgstr "始めの括弧や引用符入力時に終わりの括弧や引用符を自動入力する"
#: packages/lib/models/Setting.js:473 packages/lib/models/Setting.js:491 #: packages/lib/models/Setting.js:473 packages/lib/models/Setting.js:491
msgid "Reverse sort order" msgid "Reverse sort order"
@ -2355,9 +2355,8 @@ msgid "Enable typographer support"
msgstr "Typographer(記号文字)を有効にする" msgstr "Typographer(記号文字)を有効にする"
#: packages/lib/models/Setting.js:562 #: packages/lib/models/Setting.js:562
#, fuzzy
msgid "Enable Linkify" msgid "Enable Linkify"
msgstr "ノートの履歴を有効にする" msgstr "Linkifyを有効にする"
#: packages/lib/models/Setting.js:563 #: packages/lib/models/Setting.js:563
msgid "Enable math expressions" msgid "Enable math expressions"
@ -2372,17 +2371,16 @@ msgid "Enable Mermaid diagrams support"
msgstr "Mermaid(作図機能)を有効にする" msgstr "Mermaid(作図機能)を有効にする"
#: packages/lib/models/Setting.js:566 #: packages/lib/models/Setting.js:566
#, fuzzy
msgid "Enable audio player" msgid "Enable audio player"
msgstr "マークダウン絵文字を有効にする" msgstr "オーディオプレーヤーを有効にする"
#: packages/lib/models/Setting.js:567 #: packages/lib/models/Setting.js:567
msgid "Enable video player" msgid "Enable video player"
msgstr "" msgstr "動画プレーヤーを有効にする"
#: packages/lib/models/Setting.js:568 #: packages/lib/models/Setting.js:568
msgid "Enable PDF viewer" msgid "Enable PDF viewer"
msgstr "" msgstr "PDFビューアーを有効にする"
#: packages/lib/models/Setting.js:569 #: packages/lib/models/Setting.js:569
msgid "Enable ==mark== syntax" msgid "Enable ==mark== syntax"
@ -3109,7 +3107,7 @@ msgstr "ショートカットキー"
#: packages/lib/services/KeymapService.js:285 #: packages/lib/services/KeymapService.js:285
#, javascript-format #, javascript-format
msgid "Invalid %s: %s." msgid "Invalid %s: %s."
msgstr "無効な %s: %s" msgstr "無効な %s: %s"
#: packages/lib/services/KeymapService.js:303 #: packages/lib/services/KeymapService.js:303
#, javascript-format #, javascript-format
@ -3187,9 +3185,8 @@ msgid "Downloaded and encrypted"
msgstr "ダウンロード済み(未復号)" msgstr "ダウンロード済み(未復号)"
#: packages/lib/services/report.js:193 #: packages/lib/services/report.js:193
#, fuzzy
msgid "Created locally" msgid "Created locally"
msgstr "ローカルアイテムの作成: %d." msgstr "ローカルに作成"
#: packages/lib/services/report.js:206 #: packages/lib/services/report.js:206
msgid "Attachments that could not be downloaded" msgid "Attachments that could not be downloaded"
@ -3369,12 +3366,12 @@ msgstr ""
#: packages/app-cli/app/command-server.js:38 #: packages/app-cli/app/command-server.js:38
#, javascript-format #, javascript-format
msgid "Server is already running on port %d" msgid "Server is already running on port %d"
msgstr "サーバーはすでにポート %d で実行中です" msgstr "サーバーはすでにポート %d で実行中です"
#: packages/app-cli/app/command-server.js:44 #: packages/app-cli/app/command-server.js:44
#, javascript-format #, javascript-format
msgid "Server is running on port %d" msgid "Server is running on port %d"
msgstr "サーバーはポート %d で実行中です" msgstr "サーバーはポート %d で実行中です"
#: packages/app-cli/app/command-server.js:44 #: packages/app-cli/app/command-server.js:44
#: packages/app-cli/app/command-server.js:47 #: packages/app-cli/app/command-server.js:47
@ -3862,7 +3859,7 @@ msgid ""
"To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`" "To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`"
msgstr "" msgstr ""
"これらのアイテムの復号化を再試行するには、`e2ee decrypt --retry-failed-items`" "これらのアイテムの復号化を再試行するには、`e2ee decrypt --retry-failed-items`"
"を実行してください" "を実行してください"
#: packages/app-cli/app/command-tag.js:14 #: packages/app-cli/app/command-tag.js:14
msgid "" msgid ""

View File

@ -8,7 +8,7 @@ The Web Clipper is a browser extension that allows you to save web pages and scr
The web clipper extension and the Joplin application communicates via a service, which is started by the Joplin desktop app. The web clipper extension and the Joplin application communicates via a service, which is started by the Joplin desktop app.
However certain things can interfer with this service and prevent it from being accessible or from starting. If something does not work, check the following: However certain things can interfere with this service and prevent it from being accessible or from starting. If something does not work, check the following:
- Check that the service is started. You can check this in the Web clipper options in the desktop app. - Check that the service is started. You can check this in the Web clipper options in the desktop app.
- Check that the port used by the service is not blocked by a firewall. You can find the port number in the Web clipper options in the desktop Joplin application. - Check that the port used by the service is not blocked by a firewall. You can find the port number in the Web clipper options in the desktop Joplin application.
@ -43,4 +43,4 @@ Copy and paste the content of both the debugging window and the Firefox console,
# Using the Web Clipper service # Using the Web Clipper service
The Web Clipper service can be used to create, modify or delete notes, notebooks, tags, etc. from any other application. It exposes an API with a number of methods to manage Joplin's data. For more information about this API and how to use it, please check the [Joplin API documentation](https://joplinapp.org/api/references/rest_api/). The Web Clipper service can be used to create, modify or delete notes, notebooks, tags, etc. from any other application. It exposes an API with a number of methods to manage Joplin's data. For more information about this API and how to use it, please check the [Joplin API documentation](https://joplinapp.org/api/references/rest_api/).