Skip to content

Commit

Permalink
Translate and update readme for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lupoDharkael committed Aug 17, 2017
1 parent b966a10 commit 3a79ac2
Show file tree
Hide file tree
Showing 4 changed files with 224 additions and 171 deletions.
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- [Usage](#usage)
- [Shortcuts](#shortcuts)
- [Considerations](#considerations)
- [Installation](#installation)
- [Compilation](#compilation)
- [Debian](#debian)
- [Fedora](#fedora)
Expand All @@ -30,18 +31,23 @@ Example commands:
- capture with GUI:

`flameshot gui`
- open GUI with a delay of 2 seconds:

`flameshot gui -d 2000`
- capture with GUI with custom save path:

`flameshot gui -p ~/myStuff/captures`

- open GUI with a delay of 2 seconds:

`flameshot gui -d 2000`

- fullscreen capture (asking savepath):

`flameshot full`

- fullscreen capture with custom save path (no GUI) and delayed:

`flameshot full -p ~/myStuff/captures -d 5000`

- fullscreen capture with custom save path copying to clipboard:

`flameshot full -c -p ~/myStuff/captures`
Expand All @@ -52,6 +58,21 @@ A systray icon will be in your system's panel while Flameshot is running.
Do a right click on the tray icon and you'll see some menu items to open the configuration window and the information window.
Check out the information window to see all the available shortcuts in the graphical capture mode.

### CLI configuration
You can use the graphical menu to configure Flameshot, but alternatively you can use your terminal or scripts to do so.

- open the confguration menu:

`flameshot config`

- show the initial help message in the capture mode:

`flameshot config --showhelp true`

- for more information about the available options use the help flag:

`flameshot config -h`

## Shortcuts

These shortcuts are available in GUI mode:
Expand All @@ -65,6 +86,7 @@ These shortcuts are available in GUI mode:
| CTRL + S | Save selection as a file |
| CTRL + Z | Undo the last modification |
| Right Click | Show color picker |
| Mouse Wheel | Change the tool's thickness |

Shift + drag a handler of the selection area: mirror redimension in the opposite handler.

Expand All @@ -80,6 +102,15 @@ Shift + drag a handler of the selection area: mirror redimension in the opposite

- Execute the command `flameshot` without parameters or use the "Launch Flameshot" desktop entry to launch a running instance of the program without taking actions.

## Installation

There are a packages available for a few distros:
- [Arch](https://aur.archlinux.org/packages/flameshot/)
- [Open Suse](https://software.opensuse.org/package/flameshot)

If you are not using any of these distros you'll need to compile the program :(
but don't worry, it's pretty easy!

## Compilation
### Debian
Compilation Dependencies:
Expand Down
2 changes: 1 addition & 1 deletion src/infowindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ QVector<const char *> InfoWindow::m_description = {
QT_TR_NOOP("Save selection as a file"),
QT_TR_NOOP("Undo the last modification"),
QT_TR_NOOP("Show color picker"),
QT_TR_NOOP("Change draw tool thickness")
QT_TR_NOOP("Change the tool's thickness")
};

void InfoWindow::initInfoTable() {
Expand Down
Binary file modified translation/Internationalization_es.qm
Binary file not shown.
Loading

0 comments on commit 3a79ac2

Please sign in to comment.