seafile-client/seafile-applet.rc.in
Shuai Lin eb8f79ce96 Show sync errors in a dialog (#855)
* Show sync errors in a dialog.

* Fixed a compile warning.

* Improve windows bintray description.

* Improve sync errors dialog ui.

* Commented out debug code.

* Add dialog header to sync errors dialog.

TODO: There are lots of common logic used in FileBrowserDialog and
SyncErrorsDialog. We should refactor out a base dialog class.

* Load last 50 errors by default.

* Fixed the styles of sync errors dialog.

* Updated sync error messages.

* Double click to open the problematic repo.

And improved dialog header style.

* Ignore close event since we always use one instance of the dialog.

* Only update the model when errors are changed.
2017-01-17 03:37:28 +00:00

40 lines
1.2 KiB
Text

#include <winver.h>
#define RC_VERSION ${SEAFILE_CLIENT_VERSION_MAJOR}, ${SEAFILE_CLIENT_VERSION_MINOR}, ${SEAFILE_CLIENT_VERSION_PATCH}, 0
#define RC_VERSION_STR "${SEAFILE_CLIENT_VERSION_MAJOR}.${SEAFILE_CLIENT_VERSION_MINOR}.${SEAFILE_CLIENT_VERSION_PATCH}.0\0"
LANGUAGE 0x09,0x01
1 24 DISCARDABLE Application.manifest
2 ICON DISCARDABLE "seafile.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION RC_VERSION
PRODUCTVERSION RC_VERSION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Seafile Ltd.\0"
VALUE "FileDescription", "Seafile Client"
VALUE "FileVersion", RC_VERSION_STR
VALUE "InternalName", "seafile-applet\0"
VALUE "OriginalFilename", "seafile-applet.exe\0"
VALUE "LegalCopyright", "2015 Seafile Ltd.\0"
VALUE "ProductName", "Seafile Client\0"
VALUE "ProductVersion", RC_VERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END