You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.7 KiB

  1. ###################################################################################
  2. #
  3. # Copyright (c) 2017-today MuK IT GmbH.
  4. #
  5. # This file is part of MuK Backend Theme
  6. # (see https://mukit.at).
  7. #
  8. # MuK Proprietary License v1.0
  9. #
  10. # This software and associated files (the "Software") may only be used
  11. # (executed, modified, executed after modifications) if you have
  12. # purchased a valid license from MuK IT GmbH.
  13. #
  14. # The above permissions are granted for a single database per purchased
  15. # license. Furthermore, with a valid license it is permitted to use the
  16. # software on other databases as long as the usage is limited to a testing
  17. # or development environment.
  18. #
  19. # You may develop modules based on the Software or that use the Software
  20. # as a library (typically by depending on it, importing it and using its
  21. # resources), but without copying any source code or material from the
  22. # Software. You may distribute those modules under the license of your
  23. # choice, provided that this license is compatible with the terms of the
  24. # MuK Proprietary License (For example: LGPL, MIT, or proprietary licenses
  25. # similar to this one).
  26. #
  27. # It is forbidden to publish, distribute, sublicense, or sell copies of
  28. # the Software or modified copies of the Software.
  29. #
  30. # The above copyright notice and this permission notice must be included
  31. # in all copies or substantial portions of the Software.
  32. #
  33. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  34. # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  35. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  36. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  37. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  38. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  39. # DEALINGS IN THE SOFTWARE.
  40. #
  41. ###################################################################################
  42. {
  43. 'name': 'MuK Backend Theme',
  44. 'summary': 'Odoo Community Backend Theme',
  45. 'version': '16.0.1.0.2',
  46. 'category': 'Themes/Backend',
  47. 'license': 'LGPL-3',
  48. 'author': 'MuK IT',
  49. 'website': 'http://www.mukit.at',
  50. 'live_test_url': 'https://mukit.at/r/SgN',
  51. 'contributors': [
  52. 'Mathias Markl <mathias.markl@mukit.at>',
  53. ],
  54. 'depends': [
  55. 'base_setup',
  56. 'web_editor',
  57. 'mail',
  58. ],
  59. 'excludes': [
  60. 'web_enterprise',
  61. ],
  62. 'data': [
  63. 'templates/webclient.xml',
  64. 'views/res_config_settings.xml',
  65. 'views/res_users.xml',
  66. ],
  67. 'assets': {
  68. 'web._assets_primary_variables': [
  69. (
  70. 'after',
  71. 'web/static/src/scss/primary_variables.scss',
  72. 'muk_web_theme/static/src/colors.scss'
  73. ),
  74. ],
  75. 'web._assets_backend_helpers': [
  76. 'muk_web_theme/static/src/variables.scss',
  77. 'muk_web_theme/static/src/mixins.scss',
  78. ],
  79. 'web.assets_backend': [
  80. 'muk_web_theme/static/src/core/**/*.xml',
  81. 'muk_web_theme/static/src/core/**/*.scss',
  82. 'muk_web_theme/static/src/core/**/*.js',
  83. 'muk_web_theme/static/src/webclient/**/*.xml',
  84. 'muk_web_theme/static/src/webclient/**/*.scss',
  85. 'muk_web_theme/static/src/webclient/**/*.js',
  86. 'muk_web_theme/static/src/views/**/*.scss',
  87. ],
  88. },
  89. 'images': [
  90. 'static/description/banner.png',
  91. 'static/description/theme_screenshot.png'
  92. ],
  93. 'installable': True,
  94. 'application': True,
  95. 'auto_install': False,
  96. 'uninstall_hook': '_uninstall_cleanup',
  97. }