Açıklama Yok

Antony Male ccdc7fcbac Update releases cert with a signature from Syncthing's release key 10 yıl önce
.tx a91ed63ae3 Update translations 10 yıl önce
installer 3d507fd44c Exclude 'logs' folder from builds 10 yıl önce
readme dbc98c7bf6 Update README w/ FileTransferTrayViewModel 10 yıl önce
security ccdc7fcbac Update releases cert with a signature from Syncthing's release key 10 yıl önce
server cc603b6c81 Update version_check.php 10 yıl önce
src 2b40463208 In theory, modify the update downloader to handle new sha1sum scheme 10 yıl önce
.gitattributes fdfc41ce0d Add option to run Syncthing as a low-priority process 10 yıl önce
.gitignore 42edf06942 Fiddle build process to 1) put everything in a 'deploy' dir, and 2) checksum all artefacts 10 yıl önce
CHANGELOG.txt b6a6831c93 Update changelog 10 yıl önce
CONTRIBUTING.md 0ac5fa44c2 Add CONTRIBUTING.md 10 yıl önce
Contributers.md 9b4d00860e Add Adrial Rudnik to contributers 10 yıl önce
LICENSE.txt 5bf48ef60b Update date in license 10 yıl önce
README.md 087620f3fd Remove reference to Syncthing 0.11 from README 10 yıl önce
Rakefile ca1a5773e1 Fix Rakefile issues 10 yıl önce

README.md

SyncTrayzor

Introduction

SyncTrayzor is a little tray utility for Syncthing on Windows. It hosts and wraps Syncthing, making it behave more like a native Windows application and less like a command-line utility with a web browser interface.

Features include:

  • Has a built-in web browser, so you don't need to fire up an external browser.
  • Optionally starts on login, so you don't need to set up Syncthing as a service.
  • Has drop-box style file download. progress window
  • Can watch your folders for changes, so you don't have to poll them frequently:
    • Syncthing on its own has to poll your folders, in order to see if any files have changed.
    • SyncTrayzor will watch your folders for changes, and alert Syncthing the second anything changes.
    • This means you can increase the polling interval in Syncthing, avoiding the resource usage of high-frequency polling, but still have any changes propagated straight away.
    • Folder watching respects the ignores configured in Syncthing.
  • Tray icon indicates when synchronization is occurring.
  • Optional tray messages when folders have finished syncing.

Screenshot

Installation

SyncTrayzor is packaged as both an installer and a standalone zip. It will run on Windows Vista, 7, and 8.

Installer

Grab and run the latest installer from the releases tab. If you already have SyncTrayzor installed, this will update it.

Standalone

First, you'll need .net 4.5. Download the offline or web installer if you don't have it installed already.

Grab the latest standalone .zip from the releases tab. Unzip, and run SyncTrayzor.exe. If you're updating, you'll need to copy the data folder across from your previous standalone installation.

Something went wrong!

First, what went wrong? Remember that SyncTrayzor is a wrapper around Syncthing. Syncthing is the file synchronization program, which has a web interface. SyncTrayzor is the tray utility, looks like a normal Windows program, and has menus and suchlike, and a big area where Syncthing's web interface is displayed.

Contributing

Multi-lingual? SyncTrayzor needs you! Please read Localization.

Want to make a contribution? Fantastic, and thank you! Please read Contributing first.

Will SyncTrayzor phone home / give away my secrets / etc?

SyncTrayzor's auto-update mechanism will periodically call a script (found in server/version_check.php, hosted on a server of mine) to find out if there's an upgrade available. It will disclose your current SyncTrayzor version, and the package you downloaded (installer/portable and x64/x86). It will also reveal your IP address, which is unavoidable.

You can turn off auto-updates in the Settings, but in that case you are responsible for manually checking for updates.

Usage information, details of your computer / network / syncthing setup / etc are not reported.

What will SyncTrayzor do to Syncthing?

It's worth noting that SyncTrayzor will override the 'GUI Listen Address' and 'API Key' in Syncthing's configuration. This is because it needs to fully control these values, in order to ensure that it can communicate with Syncthing.

However, you can set these values in File -> Settings, if you want to customise them.

What will SyncTrayzor do to my system?

Good question. The answer depends on whether you installed SyncTrayzor using the installer, or are running it standalone.

Installer

SyncTrayzor will install itself into C:\Program Files\SyncTrayzor.

By default, SyncTrayzor will put its own configuration in C:\Users\<You>\AppData\Roaming\SyncTrayor, and let Syncthing use its default folder for its database, which is C:\Users\<You>\AppData\Local\Syncthing. It will also create a registry key at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\SyncTrayzor the first time that it is run, which will let it start when you log in.

You can delete this registry key by unchecking "Automatically start on login" in the settings.

If you check "Use custom home directory or Syncthing" in the settings, then SyncTrayzor will tell Syncthing to use C:\Users\<You>\AppData\Local\SyncTrayzor\syncthing for its database. This is useful if you want to keep the copy of Syncthing managed by SyncTrayzor separate from another copy running on your machine.

The auto-update mechanism may download updates to %TEMP%\SyncTrayzor. This location is periodically cleared out (once every few days).

Standalone

SyncTrayzor will put its own configuration in SyncTrayzorPortable\data, and tell Syncthing to use SyncTrayzorPortable\data\syncthing for its database. This means that, when upgrading, you can simply move the 'data' folder over to move all your settings, and database. If you uncheck "Use custom home directory or Syncthing" in the settings, then Syncthing will use its default folder for its database, which is C:\Users\<You>\AppData\Local\Syncthing.

The portable version won't start on login by default. If you check "Automatically start on login" in the settings, then a registry key will be created at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\SyncTrayzor.

Building from Source

You'll need Visual Studio 2013. Clone/download the repository, open src\SyncTrayzor.sln, and compile. You'll also need to download syncthing.exe and place it in the bin\x86\Debug, bin\x64\Debug, bin\x86\Release, or bin\x64\Release folder as appropriate.