mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
Doc update and Android releas
This commit is contained in:
parent
161fc398e8
commit
4ac86f52df
@ -266,13 +266,13 @@ class AppGui {
|
||||
|
||||
shortcuts['TAB'] = {
|
||||
friendlyName: 'Tab',
|
||||
description: _('Give focus to next widget'),
|
||||
description: _('Give focus to next pane'),
|
||||
isDocOnly: true,
|
||||
}
|
||||
|
||||
shortcuts['SHIFT_TAB'] = {
|
||||
friendlyName: 'Shift+Tab',
|
||||
description: _('Give focus to previous widget'),
|
||||
description: _('Give focus to previous pane'),
|
||||
isDocOnly: true,
|
||||
}
|
||||
|
||||
|
@ -10,11 +10,11 @@ import fs from 'fs-extra';
|
||||
class Command extends BaseCommand {
|
||||
|
||||
usage() {
|
||||
return 'export <destination>';
|
||||
return 'export <directory>';
|
||||
}
|
||||
|
||||
description() {
|
||||
return _('Exports Joplin data to the given target.');
|
||||
return _('Exports Joplin data to the given directory. By default, it will export the complete database including notebooks, notes, tags and resources.');
|
||||
}
|
||||
|
||||
options() {
|
||||
@ -26,7 +26,7 @@ class Command extends BaseCommand {
|
||||
|
||||
async action(args) {
|
||||
let exportOptions = {};
|
||||
exportOptions.destDir = args.destination;
|
||||
exportOptions.destDir = args.directory;
|
||||
exportOptions.writeFile = (filePath, data) => {
|
||||
return fs.writeFile(filePath, data);
|
||||
};
|
||||
|
@ -42,7 +42,7 @@ To start it, type `demo-joplin`.
|
||||
|
||||
To start the application type `joplin`. This will open the user interface, which has three main panes: Notebooks, Notes and the text of the current note. There are also additional panels that can be toggled on and off via [shortcuts](#available-shortcuts).
|
||||
|
||||
<img src="https://github.com/laurent22/joplin/blob/master/docs/images/ScreenshotTerminalCaptions.png" height="400px">
|
||||
<img src="https://github.com/laurent22/joplin/blob/master/docs/images/ScreenshotTerminalCaptions.png" height="450px">
|
||||
|
||||
## Input modes
|
||||
|
||||
@ -163,10 +163,10 @@ This translation will apply to both the terminal and the Android application.
|
||||
|
||||
# Available shortcuts
|
||||
|
||||
There are two types of shortcuts: those that manipulate the user interface directly, such as `TAB` to move from one widget to another, and those that are simply shortcuts to actual commands. In a way similar to Vim, these commands are generally a verb followed by an object. For example, typing `mn` ([m]ake [n]ote), is used to create a new note: it will switch the interface to command line mode and pre-fill it with `mknote ""` from where the title of the note can be entered. See below for the full list of shortcuts:
|
||||
There are two types of shortcuts: those that manipulate the user interface directly, such as `TAB` to move from one pane to another, and those that are simply shortcuts to actual commands. In a way similar to Vim, these shortcuts are generally a verb followed by an object. For example, typing `mn` ([m]ake [n]ote), is used to create a new note: it will switch the interface to command line mode and pre-fill it with `mknote ""` from where the title of the note can be entered. See below for the full list of shortcuts:
|
||||
|
||||
Tab Give focus to next widget
|
||||
Shift+Tab Give focus to previous widget
|
||||
Tab Give focus to next pane
|
||||
Shift+Tab Give focus to previous pane
|
||||
: Enter command line mode
|
||||
ESC Exit command line mode
|
||||
Ctrl+C Cancel the current command.
|
||||
|
@ -90,8 +90,8 @@ android {
|
||||
applicationId "net.cozic.joplin"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 22
|
||||
versionCode 48
|
||||
versionName "0.9.35"
|
||||
versionCode 49
|
||||
versionName "0.9.36"
|
||||
ndk {
|
||||
abiFilters "armeabi-v7a", "x86"
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
Loading…
Reference in New Issue
Block a user