version_info 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # -*- mode: sh; tab-width: 4; coding: utf-8 -*-
  2. # vim: ts=4 noet ai ft=sh
  3. # An example version_info file.
  4. # This file is part of JPM.sh.
  5. # Copyright (C) 2016 the Desktopd developers
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. # Basic information
  20. addon_id='foobar-addon'
  21. addon_version='0.1.0~a2'
  22. addon_release_phase='beta' # default: 'stable', suppresses git sha1 if 'stable'
  23. addon_name='FooBar Add-on'
  24. addon_license_id='AGPL-3.0+' # default: 'GPL-3.0+'
  25. # Additional information
  26. addon_author='FooBar Add-on Foundation, Inc' # default: (none)
  27. addon_description='This is an example add-on.' # default: (none)
  28. addon_website_uri='https://optional.example/' # default: (none)
  29. # Source code structure
  30. addon_src_dir=src # default: 'src'
  31. addon_main_path=main.js # default: 'main.js'
  32. # JPM.sh does not check JSON syntax.
  33. # Ignored if no such files exist.
  34. #addon_preferences_json_path=preferences.json # default: 'preferences.json'
  35. #addon_translators_json_path=translators.json # default: 'translators.json'
  36. # Compatibility options
  37. #addon_firefox_version='>=44.0a1' # default: '>=38.0a1'
  38. #addon_fennec_version='' # default: (none)
  39. #addon_thunderbird_version='' # default: (none)
  40. #addon_seamonkey_version='' # default: (none)
  41. #addon_unpack=1 # default: (none)
  42. #addon_support_private_browsing=1 # default: (none)
  43. # Build options
  44. addon_minify_html=1 # default: (none)
  45. addon_minify_css=1 # default: (none)
  46. addon_minify_js=1 # default: (none)