synctrayzor.nuspec 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
  3. <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  4. <metadata>
  5. <!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
  6. <id>synctrayzor</id>
  7. <title>SyncTrayzor</title>
  8. <version>0.0.0</version>
  9. <authors>Antony Male</authors>
  10. <owners>Antony Male</owners>
  11. <summary>Windows tray utility / filesystem watcher / launcher for syncthing</summary>
  12. <description>SyncTrayzor is a little tray utility for [Syncthing](http://syncthing.net/) on Windows.
  13. 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.
  14. Features include:
  15. - Has a built-in web browser, so you don't need to fire up an external browser.
  16. - Optionally starts on login, so you don't need to set up Syncthing as a service.
  17. - Has drop-box style file download / progress window
  18. - Tray icon indicates when synchronization is occurring.
  19. - Alerts you when:
  20. - You have file conflicts
  21. - One of your folders is out of sync
  22. - Folders finish syncing
  23. - Devices connect / disconnect
  24. - Can watch your folders for changes, so you don't have to poll them frequently:
  25. - Syncthing on its own has to poll your folders, in order to see if any files have changed.
  26. - SyncTrayzor will watch your folders for changes, and alert Syncthing the second anything changes.
  27. - 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.
  28. - Folder watching respects the ignores configured in Syncthing.
  29. - Has a tool to help you resolve file conflicts
  30. - Contains translations for many languages
  31. </description>
  32. <projectUrl>https://github.com/canton7/SyncTrayzor</projectUrl>
  33. <packageSourceUrl>https://github.com/canton7/SyncTrayzor/tree/develop/chocolatey</packageSourceUrl>
  34. <!--<projectSourceUrl></projectSourceUrl>
  35. <docsUrl></docsUrl>
  36. <mailingListUrl></mailingListUrl>>-->
  37. <bugTrackerUrl>https://github.com/canton7/SyncTrayzor/issues</bugTrackerUrl>
  38. <tags>synctrayzor syncthing synchronization admin</tags>
  39. <licenseUrl>https://raw.githubusercontent.com/canton7/SyncTrayzor/master/LICENSE.txt</licenseUrl>
  40. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  41. <iconUrl>https://cdn.statically.io/gh/canton7/SyncTrayzor/develop/SyncTrayzor.png</iconUrl>
  42. <dependencies>
  43. <!-- Chocolatey 0.9.9 required in order to access the chocolateyPackageName and chocolateyPackageVersion environment variables -->
  44. <dependency id="chocolatey" version="0.9.10" />
  45. <!-- Make sure that .Net 4.7.2 or better is installed -->
  46. <dependency id="dotnetfx" version="4.7.2" />
  47. </dependencies>
  48. <releaseNotes>https://github.com/canton7/SyncTrayzor/blob/master/CHANGELOG.md</releaseNotes>
  49. <!--<provides></provides>-->
  50. </metadata>
  51. <files>
  52. <file src="tools\**" target="tools" />
  53. </files>
  54. </package>