Help Miscellaneous
- Installer command line parameters
- Program command line parameters
- Portable mode
- Linux support
- Windows XP support
Integration
Installer command line parameters
NSIS is used for installer creation so all its command line parameters are available (like silent install or specifying output directory). For list of possible parameters read NSIS documentation: section Installer Usage.
Additionally are available next parameters:
- /NODESKTOPICON - do not create Desktop icon
- /PORTABLE - install portable version
Program command line parameters
Argument | Description |
--autostart | Start minimized (or closed to System Tray depending on the program settings) and delay the start of downloading for 10 seconds. This option also used at starting program on the system startup |
--no-langs | Ignore translation libraries |
Portable mode
Program can be used in portable and non-portable mode. The difference is where the program stores its settings and intermediate data (e.g. the search results or content of the feeds). In non-portable mode the settings are stored in registry and data is stored in application data folders of current user. In portable mode everything is stored in the program directory.
32-bit and 64-bit versions can be placed in the same directory, intermediate data and program settings in this case will remain be separate.
Linux support
There is no native version for Linux, but it should work ok under Wine.
Better to set Windows version for the program to Windows XP
, otherwise some UI parts may be displayed incorrectly.
If you see the error containing SSL connect error (35)
, go to menu Tools Options Network libcurl
and select a variant containing OpenSSL
.
This actually might be caused by missing libgnutls
package, which is used to provide schannel functionality. This package is an optional dependency for Wine (at least on some distributions), so its installation should resolve this issue. Package name differs across Linux distributions and Wine versions, so no exact name here.
Windows XP support
The minimum supported Windows version for 32-bit program version is Windows XP SP3 with SSE-capable CPU. In case of 64-bit program version, the minimum supported Windows version is Windows 8.
Native SSL backend on Windows XP might be outdated. If you are getting errors mentioning SSL connect error (35)
, go to Tools Options Network libcurl
and select a variant containing OpenSSL
.
If 32-bit version stopped working, you can notify about this, as such issues are not always noticeable from the development point of view.
Help Miscellaneous Integration