picview.nuspec 5.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Read this before creating packages: https://docs.chocolatey.org/en-us/create/create-packages -->
  3. <!-- It is especially important to read the above link to understand additional requirements when publishing packages to the community feed aka dot org (https://community.chocolatey.org/packages). -->
  4. <!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment -->
  5. <!--
  6. This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Reference. Chocolatey uses a special version of NuGet.Core that allows us to do more than was initially possible. As such there are certain things to be aware of:
  7. * the package xmlns schema url may cause issues with nuget.exe
  8. * Any of the following elements can ONLY be used by choco tools - projectSourceUrl, docsUrl, mailingListUrl, bugTrackerUrl, packageSourceUrl, provides, conflicts, replaces
  9. * nuget.exe can still install packages with those elements but they are ignored. Any authoring tools or commands will error on those elements
  10. -->
  11. <!-- You can embed software files directly into packages, as long as you are not bound by distribution rights. -->
  12. <!-- * If you are an organization making private packages, you probably have no issues here -->
  13. <!-- * If you are releasing to the community feed, you need to consider distribution rights. -->
  14. <!-- 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. -->
  15. <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  16. <metadata>
  17. <!-- == PACKAGE SPECIFIC SECTION == -->
  18. <!-- This section is about this package, although id and version have ties back to the software -->
  19. <!-- id is lowercase and if you want a good separator for words, use '-', not '.'. Dots are only acceptable as suffixes for certain types of packages, e.g. .install, .portable, .extension, .template -->
  20. <!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s) if possible. -->
  21. <id>picview</id>
  22. <!-- version should MATCH as closely as possible with the underlying software -->
  23. <!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
  24. <!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
  25. <version>1.5.6</version>
  26. <packageSourceUrl>https://github.com/Ruben2776/PicView</packageSourceUrl>
  27. <!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
  28. <owners>Ruben2776</owners>
  29. <!-- ============================== -->
  30. <!-- == SOFTWARE SPECIFIC SECTION == -->
  31. <!-- This section is about the software itself -->
  32. <title>PicView</title>
  33. <authors>Ruben2776</authors>
  34. <!-- projectUrl is required for the community feed -->
  35. <projectUrl>https://picview.org/</projectUrl>
  36. <!-- There are a number of CDN Services that can be used for hosting the Icon for a package. More information can be found here: https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines -->
  37. <!-- Here is an example using Githack -->
  38. <iconUrl>https://picview.org/assets/images/icon_.png</iconUrl>
  39. <copyright>© 2020 - 2021 Ruben Negendahl</copyright>
  40. <!-- If there is a license Url available, it is required for the community feed -->
  41. <!-- <licenseUrl>Software License Location __REMOVE_OR_FILL_OUT__</licenseUrl>
  42. <requireLicenseAcceptance>true</requireLicenseAcceptance>-->
  43. <projectSourceUrl>https://github.com/Ruben2776/PicView</projectSourceUrl>
  44. <!--<docsUrl>At what url are the software docs located?</docsUrl>-->
  45. <!--<mailingListUrl></mailingListUrl>-->
  46. <!--<bugTrackerUrl></bugTrackerUrl>-->
  47. <tags>picview picture-viewer, image-viewer</tags>
  48. <!-- <summary>__REPLACE__</summary> -->
  49. <description>Fast Picture Viewer with compact UI that can be hidden. Features image effects, galleries, EXIF and more. The application can automatically adjusts itself to your screen.</description>
  50. <releaseNotes>https://picview.org/changelog</releaseNotes>
  51. <!-- =============================== -->
  52. <!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
  53. <!--<dependencies>
  54. <dependency id="" version="__MINIMUM_VERSION__" />
  55. <dependency id="" version="[__EXACT_VERSION__]" />
  56. <dependency id="" version="[_MIN_VERSION_INCLUSIVE, MAX_VERSION_INCLUSIVE]" />
  57. <dependency id="" version="[_MIN_VERSION_INCLUSIVE, MAX_VERSION_EXCLUSIVE)" />
  58. <dependency id="" />
  59. <dependency id="chocolatey-core.extension" version="1.1.0" />
  60. </dependencies>-->
  61. <!-- chocolatey-core.extension - https://community.chocolatey.org/packages/chocolatey-core.extension
  62. - You want to use Get-UninstallRegistryKey on less than 0.9.10 (in chocolateyUninstall.ps1)
  63. - You want to use Get-PackageParameters and on less than 0.11.0
  64. - You want to take advantage of other functions in the core community maintainer's team extension package
  65. -->
  66. <!--<provides>NOT YET IMPLEMENTED</provides>-->
  67. <!--<conflicts>NOT YET IMPLEMENTED</conflicts>-->
  68. <!--<replaces>NOT YET IMPLEMENTED</replaces>-->
  69. </metadata>
  70. <files>
  71. <!-- this section controls what actually gets packaged into the Chocolatey package -->
  72. <file src="tools\**" target="tools" />
  73. <!--Building from Linux? You may need this instead: <file src="tools/**" target="tools" />-->
  74. </files>
  75. </package>