tryton 3.8.9__tar.gz → 7.0.28__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (468) hide show
  1. tryton-7.0.28/CHANGELOG +673 -0
  2. {tryton-3.8.9 → tryton-7.0.28}/COPYRIGHT +9 -6
  3. tryton-7.0.28/MANIFEST.in +15 -0
  4. tryton-7.0.28/PKG-INFO +82 -0
  5. tryton-7.0.28/README.rst +7 -0
  6. tryton-7.0.28/bin/tryton +58 -0
  7. tryton-7.0.28/catalan.nsh +17 -0
  8. tryton-7.0.28/doc/conf.py +74 -0
  9. {tryton-3.8.9 → tryton-7.0.28}/doc/glossary.rst +1 -1
  10. tryton-7.0.28/doc/index.rst +19 -0
  11. tryton-7.0.28/doc/installation.rst +26 -0
  12. tryton-7.0.28/doc/releases.rst +7 -0
  13. tryton-7.0.28/doc/requirements-doc.txt +2 -0
  14. tryton-7.0.28/doc/usage.rst +633 -0
  15. {tryton-3.8.9 → tryton-7.0.28}/english.nsh +1 -1
  16. tryton-7.0.28/farsi.nsh +0 -0
  17. tryton-7.0.28/french.nsh +17 -0
  18. tryton-7.0.28/german.nsh +17 -0
  19. tryton-7.0.28/make-darwin-installer.sh +25 -0
  20. tryton-7.0.28/make-win32-installer.sh +13 -0
  21. {tryton-3.8.9 → tryton-7.0.28}/portuguese.nsh +1 -1
  22. tryton-7.0.28/setup-freeze.py +147 -0
  23. {tryton-3.8.9 → tryton-7.0.28}/setup.cfg +0 -1
  24. {tryton-3.8.9 → tryton-7.0.28}/setup.nsi +41 -23
  25. tryton-7.0.28/setup.py +148 -0
  26. {tryton-3.8.9 → tryton-7.0.28}/slovenian.nsh +4 -4
  27. tryton-7.0.28/spanish.nsh +17 -0
  28. tryton-7.0.28/tox.ini +14 -0
  29. tryton-7.0.28/tryton/__init__.py +63 -0
  30. {tryton-3.8.9/tryton/gui → tryton-7.0.28/tryton/action}/__init__.py +3 -1
  31. tryton-7.0.28/tryton/action/main.py +180 -0
  32. tryton-7.0.28/tryton/bus.py +99 -0
  33. tryton-7.0.28/tryton/client.py +99 -0
  34. tryton-7.0.28/tryton/common/__init__.py +91 -0
  35. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/button.py +26 -14
  36. tryton-7.0.28/tryton/common/cellrendererbinary.py +183 -0
  37. tryton-7.0.28/tryton/common/cellrendererbutton.py +90 -0
  38. tryton-7.0.28/tryton/common/cellrendererclickablepixbuf.py +21 -0
  39. tryton-7.0.28/tryton/common/cellrenderercombo.py +15 -0
  40. tryton-7.0.28/tryton/common/cellrendererfloat.py +64 -0
  41. tryton-7.0.28/tryton/common/cellrendererinteger.py +33 -0
  42. tryton-7.0.28/tryton/common/cellrenderertext.py +28 -0
  43. tryton-7.0.28/tryton/common/cellrenderertoggle.py +10 -0
  44. tryton-7.0.28/tryton/common/common.py +1509 -0
  45. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/completion.py +33 -17
  46. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/datetime_.py +225 -147
  47. tryton-7.0.28/tryton/common/domain_inversion.py +558 -0
  48. tryton-7.0.28/tryton/common/domain_parser.py +895 -0
  49. tryton-3.8.9/tryton/gui/window/__init__.py → tryton-7.0.28/tryton/common/entry_position.py +7 -3
  50. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/environment.py +7 -1
  51. tryton-7.0.28/tryton/common/focus.py +83 -0
  52. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/htmltextbuffer.py +104 -66
  53. tryton-7.0.28/tryton/common/number_entry.py +105 -0
  54. tryton-7.0.28/tryton/common/popup_menu.py +169 -0
  55. tryton-7.0.28/tryton/common/richtext.py +345 -0
  56. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/selection.py +72 -48
  57. {tryton-3.8.9 → tryton-7.0.28}/tryton/common/timedelta.py +27 -59
  58. tryton-7.0.28/tryton/common/underline.py +22 -0
  59. tryton-7.0.28/tryton/common/widget_style.py +10 -0
  60. tryton-7.0.28/tryton/config.py +248 -0
  61. tryton-7.0.28/tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  62. tryton-7.0.28/tryton/data/locale/bg/LC_MESSAGES/tryton.po +1293 -0
  63. tryton-7.0.28/tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  64. tryton-7.0.28/tryton/data/locale/ca/LC_MESSAGES/tryton.po +1210 -0
  65. tryton-7.0.28/tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  66. tryton-7.0.28/tryton/data/locale/cs/LC_MESSAGES/tryton.po +1311 -0
  67. tryton-7.0.28/tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  68. tryton-7.0.28/tryton/data/locale/de/LC_MESSAGES/tryton.po +1219 -0
  69. tryton-7.0.28/tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  70. tryton-7.0.28/tryton/data/locale/es/LC_MESSAGES/tryton.po +1214 -0
  71. tryton-7.0.28/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  72. tryton-7.0.28/tryton/data/locale/es_419/LC_MESSAGES/tryton.po +1212 -0
  73. tryton-7.0.28/tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  74. tryton-7.0.28/tryton/data/locale/et/LC_MESSAGES/tryton.po +1242 -0
  75. tryton-7.0.28/tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  76. tryton-7.0.28/tryton/data/locale/fa/LC_MESSAGES/tryton.po +1250 -0
  77. tryton-7.0.28/tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  78. tryton-7.0.28/tryton/data/locale/fi/LC_MESSAGES/tryton.po +1209 -0
  79. tryton-7.0.28/tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  80. tryton-7.0.28/tryton/data/locale/fr/LC_MESSAGES/tryton.po +1214 -0
  81. tryton-7.0.28/tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  82. tryton-7.0.28/tryton/data/locale/hu/LC_MESSAGES/tryton.po +1227 -0
  83. tryton-7.0.28/tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  84. tryton-7.0.28/tryton/data/locale/id/LC_MESSAGES/tryton.po +1207 -0
  85. tryton-7.0.28/tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  86. tryton-7.0.28/tryton/data/locale/it/LC_MESSAGES/tryton.po +1238 -0
  87. tryton-7.0.28/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  88. tryton-7.0.28/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po +1605 -0
  89. tryton-7.0.28/tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  90. tryton-7.0.28/tryton/data/locale/lo/LC_MESSAGES/tryton.po +1265 -0
  91. tryton-7.0.28/tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  92. tryton-7.0.28/tryton/data/locale/lt/LC_MESSAGES/tryton.po +1242 -0
  93. tryton-7.0.28/tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  94. tryton-7.0.28/tryton/data/locale/nl/LC_MESSAGES/tryton.po +1210 -0
  95. tryton-7.0.28/tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  96. tryton-7.0.28/tryton/data/locale/pl/LC_MESSAGES/tryton.po +1224 -0
  97. tryton-7.0.28/tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  98. tryton-7.0.28/tryton/data/locale/pt/LC_MESSAGES/tryton.po +1249 -0
  99. tryton-7.0.28/tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  100. tryton-7.0.28/tryton/data/locale/ro/LC_MESSAGES/tryton.po +1207 -0
  101. tryton-7.0.28/tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  102. tryton-7.0.28/tryton/data/locale/ru/LC_MESSAGES/tryton.po +1293 -0
  103. tryton-7.0.28/tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  104. tryton-7.0.28/tryton/data/locale/sl/LC_MESSAGES/tryton.po +1211 -0
  105. tryton-7.0.28/tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  106. tryton-7.0.28/tryton/data/locale/tr/LC_MESSAGES/tryton.po +1210 -0
  107. tryton-7.0.28/tryton/data/locale/tryton.pot +1199 -0
  108. tryton-7.0.28/tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
  109. tryton-7.0.28/tryton/data/locale/uk/LC_MESSAGES/tryton.po +1217 -0
  110. tryton-7.0.28/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  111. tryton-7.0.28/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po +1209 -0
  112. tryton-7.0.28/tryton/data/pixmaps/tryton/LICENSE +202 -0
  113. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-add.svg +4 -0
  114. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-archive.svg +4 -0
  115. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-arrow-down.svg +7 -0
  116. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-arrow-left.svg +7 -0
  117. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-arrow-right.svg +7 -0
  118. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-arrow-up.svg +4 -0
  119. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-attach.svg +4 -0
  120. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-back.svg +4 -0
  121. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-barcode-scanner.svg +1 -0
  122. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-bookmark-border.svg +4 -0
  123. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-bookmark.svg +4 -0
  124. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-bookmarks.svg +4 -0
  125. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-cancel.svg +4 -0
  126. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-clear.svg +4 -0
  127. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-close.svg +4 -0
  128. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-copy.svg +4 -0
  129. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-create.svg +4 -0
  130. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-date.svg +4 -0
  131. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-delete.svg +4 -0
  132. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-download.svg +1 -0
  133. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-drag.svg +1 -0
  134. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-email.svg +4 -0
  135. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-error.svg +4 -0
  136. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-exit.svg +4 -0
  137. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-export.svg +4 -0
  138. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-filter.svg +4 -0
  139. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-align-center.svg +4 -0
  140. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-align-justify.svg +4 -0
  141. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-align-left.svg +4 -0
  142. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-align-right.svg +4 -0
  143. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-bold.svg +4 -0
  144. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-color-text.svg +5 -0
  145. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-italic.svg +4 -0
  146. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-format-underline.svg +4 -0
  147. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-forward.svg +4 -0
  148. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-history.svg +4 -0
  149. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-icon.svg +1 -0
  150. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-import.svg +4 -0
  151. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-info.svg +4 -0
  152. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-launch.svg +4 -0
  153. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-link.svg +4 -0
  154. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-log.svg +5 -0
  155. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-menu.svg +4 -0
  156. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-note.svg +4 -0
  157. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-ok.svg +4 -0
  158. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-open.svg +4 -0
  159. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-print.svg +4 -0
  160. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-public.svg +4 -0
  161. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-question.svg +1 -0
  162. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-refresh.svg +4 -0
  163. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-remove.svg +4 -0
  164. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-save.svg +1 -0
  165. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-search.svg +4 -0
  166. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-send.svg +1 -0
  167. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-sound-off.svg +1 -0
  168. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-sound-on.svg +1 -0
  169. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-star-border.svg +4 -0
  170. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-star.svg +5 -0
  171. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-switch.svg +4 -0
  172. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-translate.svg +4 -0
  173. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-unarchive.svg +9 -0
  174. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-undo.svg +4 -0
  175. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton-warning.svg +4 -0
  176. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton.icns +0 -0
  177. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton.ico +0 -0
  178. tryton-7.0.28/tryton/data/pixmaps/tryton/tryton.svg +4 -0
  179. tryton-7.0.28/tryton/data/sounds/LICENSE +395 -0
  180. tryton-7.0.28/tryton/data/sounds/danger.wav +0 -0
  181. tryton-7.0.28/tryton/data/sounds/success.wav +0 -0
  182. tryton-7.0.28/tryton/device_cookie.py +76 -0
  183. {tryton-3.8.9 → tryton-7.0.28}/tryton/exceptions.py +1 -1
  184. tryton-7.0.28/tryton/fingerprints.py +54 -0
  185. {tryton-3.8.9/tryton/action → tryton-7.0.28/tryton/gui}/__init__.py +3 -1
  186. tryton-7.0.28/tryton/gui/main.py +1086 -0
  187. {tryton-3.8.9/tryton → tryton-7.0.28/tryton/gui/window}/__init__.py +3 -1
  188. tryton-7.0.28/tryton/gui/window/about.py +50 -0
  189. tryton-7.0.28/tryton/gui/window/attachment.py +101 -0
  190. tryton-7.0.28/tryton/gui/window/board.py +70 -0
  191. tryton-7.0.28/tryton/gui/window/code_scanner.py +102 -0
  192. tryton-7.0.28/tryton/gui/window/dblogin.py +719 -0
  193. tryton-7.0.28/tryton/gui/window/email_.py +363 -0
  194. tryton-7.0.28/tryton/gui/window/form.py +883 -0
  195. tryton-7.0.28/tryton/gui/window/infobar.py +46 -0
  196. tryton-7.0.28/tryton/gui/window/limit.py +68 -0
  197. tryton-7.0.28/tryton/gui/window/log.py +95 -0
  198. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/nomodal.py +21 -7
  199. tryton-7.0.28/tryton/gui/window/note.py +38 -0
  200. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/preference.py +38 -32
  201. tryton-7.0.28/tryton/gui/window/revision.py +120 -0
  202. tryton-7.0.28/tryton/gui/window/tabcontent.py +320 -0
  203. tryton-7.0.28/tryton/gui/window/view_board/__init__.py +5 -0
  204. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_board/action.py +75 -61
  205. tryton-7.0.28/tryton/gui/window/view_board/view_board.py +58 -0
  206. {tryton-3.8.9/tryton/gui/window/view_board → tryton-7.0.28/tryton/gui/window/view_form}/__init__.py +3 -1
  207. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/model/field.py +508 -209
  208. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/model/group.py +184 -98
  209. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/model/record.py +294 -173
  210. tryton-7.0.28/tryton/gui/window/view_form/screen/__init__.py +5 -0
  211. tryton-7.0.28/tryton/gui/window/view_form/screen/screen.py +1370 -0
  212. tryton-7.0.28/tryton/gui/window/view_form/view/__init__.py +132 -0
  213. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/calendar_.py +74 -45
  214. tryton-7.0.28/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py +151 -0
  215. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/calendar_gtk/dates_period.py +1 -1
  216. tryton-7.0.28/tryton/gui/window/view_form/view/calendar_gtk/toolbar.py +247 -0
  217. tryton-7.0.28/tryton/gui/window/view_form/view/form.py +630 -0
  218. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/binary.py +236 -0
  219. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/calendar_.py +179 -0
  220. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/char.py +72 -61
  221. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/checkbox.py +15 -9
  222. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/dictionary.py +649 -0
  223. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/document.py +94 -0
  224. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/float.py +28 -0
  225. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/image.py +39 -32
  226. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/integer.py +87 -0
  227. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/many2many.py +156 -99
  228. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/many2one.py +121 -87
  229. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/multiselection.py +37 -34
  230. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/one2many.py +599 -0
  231. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/progressbar.py +41 -0
  232. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/pyson.py +54 -0
  233. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/reference.py +28 -26
  234. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/richtextbox.py +79 -0
  235. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/selection.py +27 -35
  236. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/state_widget.py +220 -0
  237. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/textbox.py +163 -0
  238. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/timedelta.py +13 -15
  239. tryton-7.0.28/tryton/gui/window/view_form/view/form_gtk/url.py +163 -0
  240. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/widget.py +128 -88
  241. tryton-7.0.28/tryton/gui/window/view_form/view/graph.py +193 -0
  242. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/graph_gtk/bar.py +15 -23
  243. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/graph_gtk/graph.py +51 -52
  244. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/graph_gtk/line.py +37 -28
  245. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/graph_gtk/pie.py +15 -13
  246. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/list.py +619 -483
  247. tryton-7.0.28/tryton/gui/window/view_form/view/list_form.py +214 -0
  248. tryton-7.0.28/tryton/gui/window/view_form/view/list_gtk/__init__.py +2 -0
  249. tryton-7.0.28/tryton/gui/window/view_form/view/list_gtk/editabletree.py +340 -0
  250. tryton-7.0.28/tryton/gui/window/view_form/view/list_gtk/generictreemodel.py +426 -0
  251. tryton-7.0.28/tryton/gui/window/view_form/view/list_gtk/widget.py +1440 -0
  252. tryton-7.0.28/tryton/gui/window/view_form/view/screen_container.py +679 -0
  253. tryton-7.0.28/tryton/gui/window/win_csv.py +326 -0
  254. tryton-7.0.28/tryton/gui/window/win_export.py +539 -0
  255. tryton-7.0.28/tryton/gui/window/win_form.py +483 -0
  256. tryton-7.0.28/tryton/gui/window/win_import.py +238 -0
  257. tryton-7.0.28/tryton/gui/window/win_search.py +155 -0
  258. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/window.py +17 -19
  259. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/wizard.py +178 -123
  260. tryton-7.0.28/tryton/jsonrpc.py +427 -0
  261. {tryton-3.8.9 → tryton-7.0.28}/tryton/plugins/__init__.py +18 -8
  262. {tryton-3.8.9 → tryton-7.0.28}/tryton/plugins/translation/__init__.py +6 -4
  263. {tryton-3.8.9 → tryton-7.0.28}/tryton/pyson.py +185 -106
  264. tryton-7.0.28/tryton/rpc.py +166 -0
  265. tryton-7.0.28/tryton/tests/__init__.py +2 -0
  266. tryton-7.0.28/tryton/tests/test_common.py +46 -0
  267. tryton-7.0.28/tryton/tests/test_common_domain_parser.py +1175 -0
  268. tryton-7.0.28/tryton/tests/test_common_selection.py +17 -0
  269. tryton-7.0.28/tryton/tests/test_common_timedelta.py +88 -0
  270. {tryton-3.8.9 → tryton-7.0.28}/tryton/translate.py +19 -14
  271. {tryton-3.8.9 → tryton-7.0.28}/tryton.desktop +1 -1
  272. tryton-7.0.28/tryton.egg-info/PKG-INFO +82 -0
  273. tryton-7.0.28/tryton.egg-info/SOURCES.txt +283 -0
  274. tryton-7.0.28/tryton.egg-info/requires.txt +9 -0
  275. tryton-3.8.9/CHANGELOG +0 -282
  276. tryton-3.8.9/INSTALL +0 -4
  277. tryton-3.8.9/MANIFEST.in +0 -15
  278. tryton-3.8.9/Microsoft.VC90.CRT.manifest +0 -43
  279. tryton-3.8.9/PKG-INFO +0 -88
  280. tryton-3.8.9/README +0 -54
  281. tryton-3.8.9/bin/tryton +0 -66
  282. tryton-3.8.9/catalan.nsh +0 -17
  283. tryton-3.8.9/doc/Makefile +0 -89
  284. tryton-3.8.9/doc/build.py +0 -26
  285. tryton-3.8.9/doc/conf.py +0 -196
  286. tryton-3.8.9/doc/index.rst +0 -18
  287. tryton-3.8.9/doc/installation.rst +0 -37
  288. tryton-3.8.9/doc/introduction.rst +0 -9
  289. tryton-3.8.9/doc/make.bat +0 -113
  290. tryton-3.8.9/doc/usage.rst +0 -880
  291. tryton-3.8.9/french.nsh +0 -17
  292. tryton-3.8.9/german.nsh +0 -17
  293. tryton-3.8.9/russian.nsh +0 -17
  294. tryton-3.8.9/setup-single.nsi +0 -37
  295. tryton-3.8.9/setup.py +0 -389
  296. tryton-3.8.9/spanish.nsh +0 -17
  297. tryton-3.8.9/tryton/action/main.py +0 -199
  298. tryton-3.8.9/tryton/client.py +0 -123
  299. tryton-3.8.9/tryton/common/__init__.py +0 -8
  300. tryton-3.8.9/tryton/common/cellrendererbinary.py +0 -160
  301. tryton-3.8.9/tryton/common/cellrendererbutton.py +0 -104
  302. tryton-3.8.9/tryton/common/cellrendererclickablepixbuf.py +0 -24
  303. tryton-3.8.9/tryton/common/cellrenderercombo.py +0 -31
  304. tryton-3.8.9/tryton/common/cellrendererfloat.py +0 -54
  305. tryton-3.8.9/tryton/common/cellrendererinteger.py +0 -29
  306. tryton-3.8.9/tryton/common/cellrenderertext.py +0 -44
  307. tryton-3.8.9/tryton/common/cellrenderertoggle.py +0 -28
  308. tryton-3.8.9/tryton/common/common.py +0 -1439
  309. tryton-3.8.9/tryton/common/datetime_strftime.py +0 -51
  310. tryton-3.8.9/tryton/common/domain_inversion.py +0 -628
  311. tryton-3.8.9/tryton/common/domain_parser.py +0 -1474
  312. tryton-3.8.9/tryton/common/entry_position.py +0 -58
  313. tryton-3.8.9/tryton/common/focus.py +0 -94
  314. tryton-3.8.9/tryton/common/placeholder_entry.py +0 -67
  315. tryton-3.8.9/tryton/common/popup_menu.py +0 -119
  316. tryton-3.8.9/tryton/common/treeviewcontrol.py +0 -32
  317. tryton-3.8.9/tryton/config.py +0 -186
  318. tryton-3.8.9/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.mo +0 -0
  319. tryton-3.8.9/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.po +0 -1943
  320. tryton-3.8.9/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.mo +0 -0
  321. tryton-3.8.9/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.po +0 -1922
  322. tryton-3.8.9/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.mo +0 -0
  323. tryton-3.8.9/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.po +0 -1970
  324. tryton-3.8.9/tryton/data/locale/de_DE/LC_MESSAGES/tryton.mo +0 -0
  325. tryton-3.8.9/tryton/data/locale/de_DE/LC_MESSAGES/tryton.po +0 -1931
  326. tryton-3.8.9/tryton/data/locale/es_AR/LC_MESSAGES/tryton.mo +0 -0
  327. tryton-3.8.9/tryton/data/locale/es_AR/LC_MESSAGES/tryton.po +0 -1921
  328. tryton-3.8.9/tryton/data/locale/es_CO/LC_MESSAGES/tryton.mo +0 -0
  329. tryton-3.8.9/tryton/data/locale/es_CO/LC_MESSAGES/tryton.po +0 -1922
  330. tryton-3.8.9/tryton/data/locale/es_EC/LC_MESSAGES/tryton.mo +0 -0
  331. tryton-3.8.9/tryton/data/locale/es_EC/LC_MESSAGES/tryton.po +0 -1923
  332. tryton-3.8.9/tryton/data/locale/es_ES/LC_MESSAGES/tryton.mo +0 -0
  333. tryton-3.8.9/tryton/data/locale/es_ES/LC_MESSAGES/tryton.po +0 -1926
  334. tryton-3.8.9/tryton/data/locale/es_MX/LC_MESSAGES/tryton.mo +0 -0
  335. tryton-3.8.9/tryton/data/locale/es_MX/LC_MESSAGES/tryton.po +0 -1920
  336. tryton-3.8.9/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.mo +0 -0
  337. tryton-3.8.9/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.po +0 -1923
  338. tryton-3.8.9/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo +0 -0
  339. tryton-3.8.9/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.po +0 -1913
  340. tryton-3.8.9/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo +0 -0
  341. tryton-3.8.9/tryton/data/locale/it_IT/LC_MESSAGES/tryton.po +0 -1901
  342. tryton-3.8.9/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  343. tryton-3.8.9/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po +0 -1961
  344. tryton-3.8.9/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.mo +0 -0
  345. tryton-3.8.9/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.po +0 -1934
  346. tryton-3.8.9/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.mo +0 -0
  347. tryton-3.8.9/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.po +0 -1977
  348. tryton-3.8.9/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo +0 -0
  349. tryton-3.8.9/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.po +0 -1913
  350. tryton-3.8.9/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.mo +0 -0
  351. tryton-3.8.9/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.po +0 -1937
  352. tryton-3.8.9/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.mo +0 -0
  353. tryton-3.8.9/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.po +0 -1916
  354. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-attachment-hi.svg +0 -244
  355. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-attachment.svg +0 -186
  356. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-bookmark.svg +0 -426
  357. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-clear.svg +0 -416
  358. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-close.svg +0 -359
  359. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-connect.svg +0 -1043
  360. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-copy.svg +0 -328
  361. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-delete.svg +0 -896
  362. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-dialog-error.svg +0 -330
  363. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-dialog-information.svg +0 -1159
  364. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-dialog-warning.svg +0 -373
  365. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-disconnect.svg +0 -1414
  366. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-executable.svg +0 -178
  367. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-find-replace.svg +0 -974
  368. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-find.svg +0 -750
  369. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-folder-new.svg +0 -452
  370. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-fullscreen.svg +0 -522
  371. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-go-home.svg +0 -445
  372. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-go-jump.svg +0 -204
  373. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-go-next.svg +0 -192
  374. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-go-previous.svg +0 -854
  375. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-help.svg +0 -224
  376. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-icon.svg +0 -95
  377. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-list-add.svg +0 -436
  378. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-list-remove.svg +0 -424
  379. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-locale.svg +0 -878
  380. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-lock.svg +0 -286
  381. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-log-out.svg +0 -457
  382. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-mail-message-new.svg +0 -464
  383. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-mail-message.svg +0 -501
  384. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-new.svg +0 -448
  385. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-noimage.png +0 -0
  386. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-open.svg +0 -535
  387. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-preferences-system-session.svg +0 -510
  388. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-preferences-system.svg +0 -398
  389. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-preferences.svg +0 -777
  390. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-print-email.svg +0 -882
  391. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-print-open.svg +0 -868
  392. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-print.svg +0 -502
  393. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-refresh.svg +0 -393
  394. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-save-as.svg +0 -663
  395. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-save.svg +0 -619
  396. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-star.svg +0 -142
  397. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-start-here.svg +0 -492
  398. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-system-file-manager.svg +0 -317
  399. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-system.svg +0 -740
  400. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-text-background.svg +0 -547
  401. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-text-foreground.svg +0 -568
  402. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-text-markup.svg +0 -576
  403. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-undo.svg +0 -230
  404. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-unstar.svg +0 -138
  405. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton-web-browser.svg +0 -982
  406. tryton-3.8.9/tryton/data/pixmaps/tryton/tryton.png +0 -0
  407. tryton-3.8.9/tryton/fingerprints.py +0 -39
  408. tryton-3.8.9/tryton/gui/main.py +0 -1520
  409. tryton-3.8.9/tryton/gui/window/about.py +0 -734
  410. tryton-3.8.9/tryton/gui/window/attachment.py +0 -52
  411. tryton-3.8.9/tryton/gui/window/board.py +0 -93
  412. tryton-3.8.9/tryton/gui/window/dbcreate.py +0 -392
  413. tryton-3.8.9/tryton/gui/window/dbdumpdrop.py +0 -240
  414. tryton-3.8.9/tryton/gui/window/dblogin.py +0 -621
  415. tryton-3.8.9/tryton/gui/window/dbrestore.py +0 -207
  416. tryton-3.8.9/tryton/gui/window/email.py +0 -98
  417. tryton-3.8.9/tryton/gui/window/form.py +0 -638
  418. tryton-3.8.9/tryton/gui/window/infobar.py +0 -24
  419. tryton-3.8.9/tryton/gui/window/limit.py +0 -50
  420. tryton-3.8.9/tryton/gui/window/revision.py +0 -104
  421. tryton-3.8.9/tryton/gui/window/shortcuts.py +0 -116
  422. tryton-3.8.9/tryton/gui/window/tabcontent.py +0 -155
  423. tryton-3.8.9/tryton/gui/window/tips.py +0 -119
  424. tryton-3.8.9/tryton/gui/window/view_board/view_board.py +0 -172
  425. tryton-3.8.9/tryton/gui/window/view_form/__init__.py +0 -3
  426. tryton-3.8.9/tryton/gui/window/view_form/screen/__init__.py +0 -3
  427. tryton-3.8.9/tryton/gui/window/view_form/screen/screen.py +0 -1058
  428. tryton-3.8.9/tryton/gui/window/view_form/view/__init__.py +0 -53
  429. tryton-3.8.9/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py +0 -102
  430. tryton-3.8.9/tryton/gui/window/view_form/view/calendar_gtk/toolbar.py +0 -174
  431. tryton-3.8.9/tryton/gui/window/view_form/view/form.py +0 -501
  432. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/binary.py +0 -213
  433. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/calendar.py +0 -145
  434. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/dictionary.py +0 -554
  435. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/float.py +0 -59
  436. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/integer.py +0 -51
  437. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/one2many.py +0 -554
  438. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/progressbar.py +0 -38
  439. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/richtextbox.py +0 -289
  440. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/state_widget.py +0 -106
  441. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/textbox.py +0 -191
  442. tryton-3.8.9/tryton/gui/window/view_form/view/form_gtk/url.py +0 -119
  443. tryton-3.8.9/tryton/gui/window/view_form/view/graph.py +0 -179
  444. tryton-3.8.9/tryton/gui/window/view_form/view/graph_gtk/__init__.py +0 -3
  445. tryton-3.8.9/tryton/gui/window/view_form/view/list_gtk/editabletree.py +0 -280
  446. tryton-3.8.9/tryton/gui/window/view_form/view/list_gtk/widget.py +0 -915
  447. tryton-3.8.9/tryton/gui/window/view_form/view/screen_container.py +0 -598
  448. tryton-3.8.9/tryton/gui/window/win_export.py +0 -569
  449. tryton-3.8.9/tryton/gui/window/win_form.py +0 -448
  450. tryton-3.8.9/tryton/gui/window/win_import.py +0 -369
  451. tryton-3.8.9/tryton/gui/window/win_search.py +0 -129
  452. tryton-3.8.9/tryton/ipc.py +0 -183
  453. tryton-3.8.9/tryton/jsonrpc.py +0 -342
  454. tryton-3.8.9/tryton/rpc.py +0 -177
  455. tryton-3.8.9/tryton/signal_event.py +0 -41
  456. tryton-3.8.9/tryton.egg-info/PKG-INFO +0 -88
  457. tryton-3.8.9/tryton.egg-info/SOURCES.txt +0 -243
  458. tryton-3.8.9/tryton.egg-info/requires.txt +0 -11
  459. {tryton-3.8.9 → tryton-7.0.28}/LICENSE +0 -0
  460. {tryton-3.8.9 → tryton-7.0.28}/tryton/data/pixmaps/tryton/tryton-icon.png +0 -0
  461. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/model/__init__.py +0 -0
  462. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/calendar_gtk/__init__.py +0 -0
  463. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/__init__.py +0 -0
  464. {tryton-3.8.9 → tryton-7.0.28}/tryton/gui/window/view_form/view/form_gtk/one2one.py +0 -0
  465. {tryton-3.8.9/tryton/gui/window/view_form/view/list_gtk → tryton-7.0.28/tryton/gui/window/view_form/view/graph_gtk}/__init__.py +0 -0
  466. {tryton-3.8.9 → tryton-7.0.28}/tryton.egg-info/dependency_links.txt +0 -0
  467. {tryton-3.8.9 → tryton-7.0.28}/tryton.egg-info/not-zip-safe +0 -0
  468. {tryton-3.8.9 → tryton-7.0.28}/tryton.egg-info/top_level.txt +0 -0
@@ -0,0 +1,673 @@
1
+
2
+ Version 7.0.28 - 2025-11-02
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
7
+ Version 7.0.27 - 2025-06-04
8
+ ---------------------------
9
+ * Bug fixes (see mercurial logs for details)
10
+
11
+
12
+ Version 7.0.26 - 2025-05-15
13
+ ---------------------------
14
+ * Bug fixes (see mercurial logs for details)
15
+
16
+
17
+ Version 7.0.25 - 2025-05-02
18
+ ---------------------------
19
+ * Bug fixes (see mercurial logs for details)
20
+
21
+
22
+ Version 7.0.24 - 2025-04-26
23
+ ---------------------------
24
+ * Bug fixes (see mercurial logs for details)
25
+
26
+
27
+ Version 7.0.23 - 2025-04-02
28
+ ---------------------------
29
+ * Bug fixes (see mercurial logs for details)
30
+
31
+
32
+ Version 7.0.22 - 2025-03-04
33
+ ---------------------------
34
+ * Bug fixes (see mercurial logs for details)
35
+
36
+
37
+ Version 7.0.21 - 2025-02-16
38
+ ---------------------------
39
+ * Bug fixes (see mercurial logs for details)
40
+
41
+
42
+ Version 7.0.20 - 2025-01-01
43
+ ---------------------------
44
+ * Bug fixes (see mercurial logs for details)
45
+
46
+
47
+ Version 7.0.19 - 2024-12-16
48
+ ---------------------------
49
+ * Bug fixes (see mercurial logs for details)
50
+
51
+
52
+ Version 7.0.18 - 2024-12-01
53
+ ---------------------------
54
+ * Bug fixes (see mercurial logs for details)
55
+
56
+
57
+ Version 7.0.17 - 2024-11-06
58
+ ---------------------------
59
+ * Bug fixes (see mercurial logs for details)
60
+
61
+
62
+ Version 7.0.16 - 2024-10-18
63
+ ---------------------------
64
+ * Bug fixes (see mercurial logs for details)
65
+
66
+
67
+ Version 7.0.15 - 2024-10-05
68
+ ---------------------------
69
+ * Bug fixes (see mercurial logs for details)
70
+
71
+
72
+ Version 7.0.14 - 2024-09-16
73
+ ---------------------------
74
+ * Bug fixes (see mercurial logs for details)
75
+
76
+
77
+ Version 7.0.13 - 2024-09-01
78
+ ---------------------------
79
+ * Bug fixes (see mercurial logs for details)
80
+
81
+
82
+ Version 7.0.12 - 2024-08-01
83
+ ---------------------------
84
+ * Bug fixes (see mercurial logs for details)
85
+
86
+
87
+ Version 7.0.11 - 2024-07-01
88
+ ---------------------------
89
+ * Bug fixes (see mercurial logs for details)
90
+
91
+
92
+ Version 7.0.10 - 2024-05-01
93
+ ---------------------------
94
+ * Bug fixes (see mercurial logs for details)
95
+
96
+
97
+ Version 7.0.9 - 2024-04-17
98
+ --------------------------
99
+ * Bug fixes (see mercurial logs for details)
100
+
101
+
102
+ Version 7.0.8 - 2024-04-04
103
+ --------------------------
104
+ * Bug fixes (see mercurial logs for details)
105
+
106
+
107
+ Version 7.0.7 - 2024-03-03
108
+ --------------------------
109
+ * Bug fixes (see mercurial logs for details)
110
+
111
+
112
+ Version 7.0.6 - 2024-02-15
113
+ --------------------------
114
+ * Bug fixes (see mercurial logs for details)
115
+
116
+
117
+ Version 7.0.5 - 2024-01-15
118
+ --------------------------
119
+ * Bug fixes (see mercurial logs for details)
120
+
121
+
122
+ Version 7.0.4 - 2024-01-01
123
+ --------------------------
124
+ * Bug fixes (see mercurial logs for details)
125
+
126
+
127
+ Version 7.0.3 - 2023-12-16
128
+ --------------------------
129
+ * Bug fixes (see mercurial logs for details)
130
+
131
+
132
+ Version 7.0.2 - 2023-11-17
133
+ --------------------------
134
+ * Bug fixes (see mercurial logs for details)
135
+
136
+
137
+ Version 7.0.1 - 2023-11-03
138
+ --------------------------
139
+ * Bug fixes (see mercurial logs for details)
140
+
141
+
142
+ Version 7.0.0 - 2023-10-30
143
+ --------------------------
144
+ * Bug fixes (see mercurial logs for details)
145
+ * Add support for Python 3.12
146
+ * Support create record from autocomplete
147
+ * Support scanning code
148
+ * Reset search offset when domain has changed
149
+ * Add a canonicalize function for domains
150
+ * Support PYSON comparison of timedelta
151
+ * Support encoding timedelta into PYSON TimeDelta
152
+ * Transfer configuration, profiles and plugins from previous version
153
+ * Eagerly read string value of multiselection fields
154
+ * Use locale timezone for CSV in locale format
155
+ * Display sum on column header
156
+
157
+ Version 6.8.0 - 2023-05-01
158
+ --------------------------
159
+ * Bug fixes (see mercurial logs for details)
160
+ * Include events to logs
161
+ * Add option to disable thread
162
+ * Remove support for Python 3.7
163
+ * Add support for Python 3.11
164
+ * Save and Restore tree state on List Form
165
+ * Do record (pre)validation and saving on selection change for list-form views
166
+ * Eagerly read string value of selection fields
167
+ * Do not select first record by default
168
+ * Use ``&`` and ``|`` as boolean operator in search widget
169
+ * Use toggle button and label on translate dialog
170
+ * Manage domain on id in single value list as unique
171
+ * Do not validate domain nor enforce uniqueness for empty fields unless they're required or invisible
172
+ * Display the number of selected records on xxx2Many
173
+
174
+ Version 6.6.0 - 2022-10-31
175
+ --------------------------
176
+ * Bug fixes (see mercurial logs for details)
177
+ * Support authentication services
178
+
179
+ Version 6.4.0 - 2022-05-02
180
+ --------------------------
181
+ * Bug fixes (see mercurial logs for details)
182
+ * Use unittest discover
183
+ * Support notification message
184
+ * Add option to define logging output location
185
+ * Remove TreeViewControl
186
+ * Manage optional column
187
+ * Default CSV encoding to UTF8 with BOM
188
+ * Display the number of selected records
189
+ * Humanize the count result
190
+ * Add limit to search_count
191
+ * Call view_get for board view
192
+ * Limit board action domain to active id and ids
193
+ * Add support for Python 3.10
194
+ * Remove support for Python 3.6
195
+ * Manage creatable attribute of view
196
+
197
+ Version 6.2.0 - 2021-11-01
198
+ --------------------------
199
+ * Bug fixes (see mercurial logs for details)
200
+ * Support grouping attribute
201
+ * Support monetary and symbol field attributes
202
+ * Support digits from relation field
203
+ * Allow PYSON Expression as key for PYSON In with dict object
204
+ * Support Binary field in CSV import/export
205
+
206
+ Version 6.0.0 - 2021-05-03
207
+ --------------------------
208
+ * Bug fixes (see mercurial logs for details)
209
+ * Support printing zip archive
210
+ * Add direct print to UNIX
211
+ * Add attachment preview
212
+ * Support document widget
213
+ * Support icon of type URL
214
+ * Allow sending email with existing attachments
215
+ * Add paths and model context to action data
216
+ * Add indentation in CSV export of tree
217
+ * Manage which records to use for actions
218
+ * Handle device cookie
219
+ * Add breadcrumb as title of window form
220
+ * Display revision on dialog
221
+ * Execute report asynchronously
222
+ * Add support for Python 3.9
223
+ * Support empty value for timedelta converter
224
+ * Add interactive search on tree view
225
+ * Unify PYSON string format
226
+
227
+ Version 5.8.0 - 2020-11-02
228
+ --------------------------
229
+ * Bug fixes (see mercurial logs for details)
230
+ * Remove support for Python 3.5
231
+ * Format timedelta in CSV export
232
+ * Manage symbol widget
233
+ * Fallback to model name as title
234
+ * Manage deletable and writable state
235
+ * Support e-mail template
236
+ * Send e-mail via the server
237
+ * Support PYSON comparison of date and datetime
238
+ * Position copied records based on order
239
+ * Allow configuration of default colors for graph and calendar
240
+ * Use existing context for get_preferences
241
+ * Add context to export URL
242
+
243
+ Version 5.6.0 - 2020-05-04
244
+ --------------------------
245
+ * Bug fixes (see mercurial logs for details)
246
+ * Support link button on form
247
+ * Add URL for the current export
248
+ * Add option to export listed records
249
+ * Retire App Menu
250
+ * Add support for Python 3.8
251
+ * Manage readonly dates in calendar view
252
+ * Manage editable on calendar view
253
+ * Manage model access on calendar view
254
+ * Set client title at the end of header bar
255
+ * Manage named separator as label
256
+ * Add MultiSelection entry to Dict field
257
+ * Position new record based on order
258
+ * Allow relation field to be selected in CSV export
259
+ * Support validate attribute of wizard's Button
260
+
261
+ Version 5.4.0 - 2019-11-04
262
+ --------------------------
263
+ * Bug fixes (see mercurial logs for details)
264
+ * Support visual context on tree view
265
+ * Support multiselection field
266
+ * Support dot notation on PYSON Eval
267
+ * Order Dict keys by sequence
268
+ * Support relation fields in domain parser
269
+ * Add Dict widget for tree view
270
+ * Add handle to reordable line of tree views
271
+
272
+ Version 5.2.0 - 2019-05-06
273
+ --------------------------
274
+ * Bug fixes (see mercurial logs for details)
275
+ * Add domain inversion for reference fields
276
+ * Add list-form view
277
+ * Remove support for Python 3.4
278
+ * Replace ColorSelectionDialog by ColorChooserDialog
279
+ * Support HTML widget
280
+ * Use locale format for data import and export
281
+ * Add day view on calendar
282
+ * Add CSV exports into print toolbar
283
+ * Display unread and total of notes
284
+ * Support badge on icon
285
+ * Use resources method
286
+ * Replace Arrow by Image
287
+ * Remove Fast Tabbing option
288
+ * Remove usage of focus_chain
289
+ * Add shortcuts for switch and remove on One2Many
290
+ * Rename roundup.url configuration to bug.url
291
+ * Remove send error to bug tracker
292
+ * Replace Table by Grid
293
+ * Use separate XML parser in Views
294
+ * Use between numbers in filter box
295
+ * Rename email and calendar file
296
+ * Use markup for styling
297
+ * Replace ImageMenuItem by MenuItem
298
+ * Replace ComboBoxEntry by ComboBox or ComboBoxText
299
+ * Replace GObject.idle_add by GLibe.idle_add
300
+ * Remove positional arguments for PyGObject
301
+ * Remove pygtkcompat
302
+ * Implement Reference cell with Selection and Many2One cells
303
+ * Replace CellRendererBinary with clickable pixbuf cells
304
+ * Allow cell to have multiple renderers
305
+ * Fill 'to' with 'from' value on filter box
306
+ * Add tab domain in URL
307
+ * Use Popover for search filter
308
+ * Display version on login dialog
309
+ * Use tab key for tab navigation
310
+ * Use ShortcutsWindow
311
+ * Improve default size of widgets and dialog
312
+ * Use record and field properties of widget instead of method arguments
313
+ * Reduce offset when no search result
314
+ * Ensure URL scheme of bus (issue7792)
315
+ * Add drag & drop support on binary widget
316
+
317
+ Version 5.0.0 - 2018-10-01
318
+ --------------------------
319
+ * Bug fixes (see mercurial logs for details)
320
+ * Use dropdown for attachment
321
+ * Apply factor on domain parser
322
+ * Use tab name in CSV Export/Import
323
+ * Add bus management
324
+ * Use CSS to style label
325
+ * New icons
326
+ * Support timestamp field
327
+ * Add support for Python 3.7
328
+ * Use GtkApplication
329
+ * Validate dictionary items
330
+ * Add (i)like support to domain inversion
331
+ * Use Python 3
332
+ * Improve loading strategy by using views
333
+ * Use non conflicting keyboard shortcuts in sync with sao
334
+ * Use the context to get the suffix of window name
335
+ * Call on_change methods after setting default dtstart on calendar view
336
+
337
+ Version 4.8.0 - 2018-04-23
338
+ --------------------------
339
+ * Bug fixes (see mercurial logs for details)
340
+ * Manage active field on search widget
341
+ * Reset record to its original state when discarding the popup window
342
+ * Add support of expand attribute on group tag
343
+ * Add the context model name in the screen context
344
+ * Use limit to expand tree
345
+ * Add keyword attribute to button tag
346
+ * Support field name on image tag
347
+ * Add option to check new version
348
+ * Show related record names for all windows
349
+ * Remove support of GTK+ 2.0
350
+ * Add icons on Many2One in editable tree
351
+ * Use translated values when exporting Reference and Selection fields
352
+
353
+ Version 4.6.0 - 2017-10-30
354
+ --------------------------
355
+ * Bug fixes (see mercurial logs for details)
356
+ * Allow to export model and record name of Reference fields
357
+ * Re-position buttons on Binary/Image widget
358
+ * Improve treeview headers
359
+ * Update states of both toolbar and menu
360
+ * Improve toolbar order
361
+ * Make readonly, required and invalid widget themable
362
+ * Load user CSS theme
363
+ * Use profile name or login details in title
364
+
365
+ Version 4.4.0 - 2017-05-01
366
+ --------------------------
367
+ * Bug fixes (see mercurial logs for details)
368
+ * Verify certificate with default CA
369
+ * Replace URL entry by a toolbar button
370
+
371
+ Version 4.2.0 - 2016-11-28
372
+ --------------------------
373
+ * Bug fixes (see mercurial logs for details)
374
+ * Add support for GTK+ 3.0
375
+ * Add PYSON Widget
376
+ * Show records names in wizard title
377
+ * Add support for datetime_field to Reference
378
+ * Show non editable widget as insensitive
379
+ * Move info-bar at the bottom
380
+ * Manage readonly on fields translation dialog
381
+ * Restore tab default order when no manual change
382
+ * Call autocompletion when setting record value
383
+ * Remove database management
384
+ * Limit readonly state for xxx2Many
385
+ * Show records names in relate window title
386
+ * Add support for count on Action Window Domains
387
+ * Manage custom login process
388
+ * Add clear icon on Many2One
389
+ * Re-position icons on Many2One widget
390
+
391
+ Version 4.0.0 - 2016-05-02
392
+ --------------------------
393
+ * Bug fixes (see mercurial logs for details)
394
+ * Improvement of charts design
395
+ * Timedelta uses 30 days for month
396
+ * Add all available encoding for import/export
397
+ * Add CSV parameters to export window
398
+ * Add DnD on import window
399
+ * Manage context model of ir.action.act_window
400
+ * Add Note
401
+ * Manage view_ids on tree view
402
+ * Use Apple key for copy/past of list
403
+
404
+ Version 3.8.0 - 2015-11-02
405
+ --------------------------
406
+ * Bug fixes (see mercurial logs for details)
407
+ * Use italic labels for editable fields
408
+ * Escape '_' in button string and page string
409
+ * Export selected records only
410
+ * Use HTML for RichText widget
411
+ * Change Progressbar to work with float between 0 and 1
412
+ * Add Fast Tabbing option
413
+ * Remove colors on widgets
414
+ * Bold label of required fields
415
+ * Explicit error message for invalid record
416
+ * Add reversed operators to PYSON expressions
417
+
418
+ Version 3.6.0 - 2015-04-20
419
+ --------------------------
420
+ * Bug fixes (see mercurial logs for details)
421
+ * Hide columns containing always the same value
422
+ * Remove Tabs Position option
423
+ * Manage product attribute
424
+ * Remove float_time widget
425
+ * Add TimeDelta field
426
+ * Improve date/time widgets
427
+ * Remove datetime widget on list/tree view
428
+ * Allow to put many times the same field on tree view
429
+ * Add search completion on dictionary widget
430
+ * Merge host and port field in profile editor
431
+ * New color scheme for graph
432
+ * Replace img_{width,height} by width and height attributes
433
+
434
+ Version 3.4.0 - 2014-10-20
435
+ --------------------------
436
+ * Bug fixes (see mercurial logs for details)
437
+ * Add DnD on export window
438
+ * Allow to overide predefined export
439
+ * Prefill export window with current view fields
440
+ * Manage field context on Group value
441
+ * Add export of selection string
442
+ * Load plugins from local user directory
443
+ * Manage tree_state attribute
444
+ * Add simple tree_state support on form view
445
+ * Change range operator of search widget to be included
446
+ * Explicitly set value of parent field
447
+
448
+ Version 3.2.0 - 2014-04-21
449
+ --------------------------
450
+ * Bug fixes (see mercurial logs for details)
451
+ * Add option to show revisions
452
+ * Add a multi selection widget for many2many
453
+ * Remove auto-refresh
454
+ * Add support of domain for non-relation field
455
+ * Allow drag & drop on the attachment button
456
+ * Replace sha widget by password
457
+ * Add Len to PYSON
458
+ * Use a pool of connection
459
+ * Manage client actions from button and wizard
460
+ * Add tree_invisible attribute to button in tree view
461
+ * Add buttons of the view in actions menu
462
+ * Don't evaluate anymore relate action with the record
463
+ * Paste on editable list create new records if needed
464
+ * Drop support of Python 2.6
465
+ * Allow to search on rec_name of Reference fields
466
+ * Use local timezone
467
+ * Sanitize report file extension
468
+
469
+ Version 3.0.0 - 2013-10-21
470
+ --------------------------
471
+ * Bug fixes (see mercurial logs for details)
472
+ * Add factor on number widgets
473
+ * Add calendar view
474
+ * Add URL entry
475
+ * Remove request
476
+
477
+ Version 2.8.0 - 2013-04-22
478
+ --------------------------
479
+ * Bug fixes (see mercurial logs for details)
480
+ * Manage dynamic label
481
+ * Manage prefix, suffix on tree view
482
+ * Manage selection_change_with on Selection and Reference fields
483
+ * Add Dict fields on form
484
+ * Remove Goto
485
+ * Add global search
486
+ * Add toggle button for menu
487
+ * Replace shortcuts by menu favorites
488
+ * Move Plugins into toolbar Actions
489
+ * Add url to list view
490
+ * Add dynamic icon for url
491
+ * Add completion on Many2One, Many2Many and One2Many
492
+ * Add bookmark on search widget
493
+ * Manage domains on Action Window
494
+ * Use range for Date/Time fields in filter box
495
+ * Allow multi-selection for Selection field in filter box
496
+
497
+ Version 2.6.0 - 2012-10-22
498
+ --------------------------
499
+ * Bug fixes (see mercurial logs for details)
500
+ * Allow to paste in editable list view
501
+ * Manage readonly state on group
502
+ * Remove "Please wait" box
503
+ * Refactorize date widgets
504
+ * Manage tuple on Reference
505
+ * Add constant interpolation on line graph
506
+ * Make Import/Export Data no-modal
507
+ * Deactivate switch view button when there is only 1 view
508
+ * Manage create/delete field access
509
+ * Add dynamic size limit on the One2Many, Many2Many and Char
510
+ * Search only on fields in XML view
511
+ * Cache action keyword
512
+ * Always use cached views
513
+ * Manage model access
514
+ * Manage time format
515
+ * Deactivate attachment button when record is not created
516
+
517
+ Version 2.4.0 - 2012-04-23
518
+ --------------------------
519
+ * Bug fixes (see mercurial logs for details)
520
+ * Remove workflow
521
+ * Improve contextual menu:
522
+ - Actions for all relation fields on list view
523
+ - Use icons
524
+ - Add attachments entry
525
+ * Use RPCProgress almost everywhere
526
+ * Add a simple search box
527
+ * New domain parser using shlex
528
+ * Better translation dialog box
529
+ * Add the richtext widget for WYSIWYG Editor on text fields
530
+ * Add a record pool to prefetch more records
531
+ * Add Time widget
532
+ * Add support for fuzzy_translation
533
+ * Activate save button on editing
534
+ * Refactor set/get and set/get_client of fields
535
+ * Display binary size alongside the buttons in treeview
536
+ * Set correctly the focus on tab switching
537
+ * Add shortcut to focus search entry
538
+ * Add binary field to tree views
539
+ * Improve board view:
540
+ - use the same search widget as form
541
+ - link double click to open popup
542
+
543
+ Version 2.2.0 - 2011-10-24
544
+ --------------------------
545
+ * Bug fixes (see mercurial logs for details)
546
+ * New search widget
547
+ * Improve memory management of Binary fields
548
+ * Support buffer for Binary fields
549
+ * Remove delete on Escape in editable tree
550
+ * Use JSON-RPC
551
+ * Limit size of field when possible
552
+ * Add xalign and yalign as fields attributes
553
+ * Convert many popup to be no-modal
554
+ * Add window manager for:
555
+ - replace current window
556
+ - prevent simmilar window
557
+ * Merge and review toolbars in form and board
558
+ * Drop support of Python 2.5
559
+ * Use the same design for Many2Many than One2Many
560
+ * Allow resize columns smaller than the header
561
+
562
+ Version 2.0.0 - 2011-04-26
563
+ --------------------------
564
+ * Bug fixes (see mercurial logs for details)
565
+ * Popup form dialog has 3 buttons (close, ok, new)
566
+ * New UI layout
567
+ * Add DnD on tree view
568
+ * Merge tree and list views
569
+ * Remove generic default value on right-click
570
+ * Made numpad locale aware
571
+ * Selection widget used for many2one dynamically change their content following
572
+ the domain specification
573
+ * Add open button on binary and image widgets
574
+ * Hide buttons on image widget if readonly
575
+ * Added a connection manager à la gajim
576
+ * Fix warning in wizards
577
+ * Added possibility to use server-side icons
578
+ * Added additional gtk.Entry for filename on BinaryField
579
+ * Display deleted lines in One2Many and Many2Many
580
+ * Handle URL
581
+ * Add communication between boards
582
+ * Added domain inversion feature
583
+ * Handle loading attribute on fields
584
+ * Use default format for value in wizard form
585
+ * Add One2One field
586
+
587
+ Version 1.8.0 - 2010-11-01
588
+ --------------------------
589
+ * Bug fixes (see mercurial logs for details)
590
+ * More fully integrate GTK menubar for Mac OS
591
+ * Allow to configure search limit
592
+ * Add Previous/Next on list view
593
+ * Set non-applicable form controls in one2many view to be insensitive
594
+
595
+ Version 1.6.0 - 2010-05-08
596
+ --------------------------
597
+ * Bug fixes (see mercurial logs for details)
598
+ * Don't stop wizard execution when exception occurs
599
+ * Use ir.attachment view instead of a custom one
600
+ * Add fingerprint and CA check for SSL connection
601
+ * Use lazy load in Import/Export windows
602
+ * Validate record before switching view
603
+ * Refactoring:
604
+ * Better naming in model
605
+ * Group extends list
606
+ * Add an index to Group
607
+ * New common windows for dialog of many2one, one2many and many2many
608
+ * one2many and many2many dialog use the same screen than the widget
609
+ * Reduce the number of option in Screen
610
+ * Remove RPCProxy to handle logout exception on every server call
611
+ * Better naming of event signals
612
+ * Fix on_change detection for many2many for issue1400
613
+ * Add PySON to replace python string evaluation
614
+ * Don't show "Spell Checking" option if gtkspell is not present
615
+ * Use the same internal model for many2many and one2many fields
616
+ * Remove egenix-mx-base and replace it by python-dateutil
617
+ * Add cache to safe_eval
618
+ * Use versioned configuration directory
619
+ * Next and Previous scroll per page on list and don't loop
620
+ * Add AccelGroup on search windows (CTRL+Return)
621
+ * Use same keyboard shortcut for xxx2many than for other fields
622
+
623
+ Version 1.4.0 - 2009-10-19
624
+ --------------------------
625
+ * Bug fixes (see mercurial logs for details)
626
+ * Handle datetime_field in xxx2Many
627
+ * Add new safe_eval
628
+ * Ask previous password for set_preferences on password change
629
+ * Add "Statusbar" option
630
+ * Add default filename for database backup
631
+ * Add checkbox on restore to update database
632
+ * Add 'login.host' options to hide server connection
633
+ * Handle required attribute with local domains
634
+ * Allow to run wizard in tabs
635
+ * Remove statusbar on form for more space
636
+ * Add "Change Accelerators" option
637
+ * Use gzip in pysocket
638
+ * Use the report name to create the temporary file to open it
639
+ * Allow to store wizard size
640
+ * Add reset default on fields
641
+ * Store in config default width and height of main window
642
+ * Added arrow navigation if supported by gtk
643
+ * Add 'starts with' and 'ends with' on char search
644
+ * Handle domain with '=' or '!=' as operator on selection
645
+ * Extend fields domain with local domains
646
+ * Improve float time widget to handle year, month, week and day
647
+ and handle float_time attribute for contextual time convertion
648
+
649
+ Version 1.2.0 - 2009-04-20
650
+ --------------------------
651
+ * Bug fixes (see mercurial logs for details)
652
+ * Make graph works also with datetime
653
+ * Add edition on Many2Many
654
+ * Fix open in csv export to use file actions
655
+ * Update client labels at language change
656
+ * Handle datetime_field in Many2One
657
+ * Set readonly on records with _datetime in the context
658
+ * Display values of reference fields even if there is no model
659
+ * Allow to directly print or create email with reports
660
+ * Handle invisible states on list view
661
+ * Add user warnings
662
+ * Add Model in logs
663
+ * Allow to duplicate many records at once
664
+ * Improve netrpc communication speed
665
+ * Improve date widget to display mask only when having focus
666
+ * Fix for host with IPv6 enable but without default IPv6 route
667
+ * Add desktop entry
668
+ * Add win32 single executable
669
+ * Allow egg installation
670
+
671
+ Version 1.0.0 - 2008-11-17
672
+ --------------------------
673
+ * Initial release
@@ -1,13 +1,16 @@
1
- Copyright (C) 2012-2013 Antoine Smolders.
2
- Copyright (C) 2010-2016 Nicolas Évrard.
3
- Copyright (C) 2007-2016 Cédric Krier.
1
+ Copyright (C) 2004-2008 Tiny SPRL.
2
+ Copyright (C) 2007-2009 Lorenzo Gil Sanchez.
4
3
  Copyright (C) 2007-2013 Bertrand Chenal.
5
- Copyright (C) 2008-2016 B2CK SPRL.
4
+ Copyright (C) 2007-2025 Cédric Krier.
6
5
  Copyright (C) 2008-2011 Udo Spallek.
7
6
  Copyright (C) 2008-2011 virtual things - Preisler & Spallek GbR.
7
+ Copyright (C) 2008-2025 B2CK SPRL.
8
+ Copyright (C) 2010-2025 Nicolas Évrard.
8
9
  Copyright (C) 2011-2012 Rodrigo Hübner.
9
- Copyright (C) 2007-2009 Lorenzo Gil Sanchez.
10
- Copyright (C) 2004-2008 Tiny SPRL.
10
+ Copyright (C) 2012-2013 Antoine Smolders.
11
+ Copyright (C) 2020-2021 Maxime Richez
12
+ Copyright (C) 2020-2021 SALUC SA
13
+
11
14
 
12
15
  This program is free software: you can redistribute it and/or modify
13
16
  it under the terms of the GNU General Public License as published by
@@ -0,0 +1,15 @@
1
+ include LICENSE
2
+ include COPYRIGHT
3
+ include README.rst
4
+ include CHANGELOG
5
+ include setup.nsi
6
+ include setup-single.nsi
7
+ include setup-bundle.sh
8
+ include tryton.desktop
9
+ include *.nsh
10
+ include setup-freeze.py
11
+ include make-*-installer.sh
12
+ include */gtk-3.0/*
13
+ include tryton/data/pixmaps/tryton/LICENSE
14
+ include tryton/data/sounds/LICENSE
15
+ graft doc