tryton-sao 6.6.8 → 6.8.1

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 (72) hide show
  1. package/CHANGELOG +14 -27
  2. package/Gruntfile.js +2 -1
  3. package/dist/tryton-sao.css +5 -0
  4. package/dist/tryton-sao.js +625 -307
  5. package/dist/tryton-sao.min.css +5 -0
  6. package/dist/tryton-sao.min.js +2 -2
  7. package/locale/bg.json +1 -1
  8. package/locale/bg.po +26 -20
  9. package/locale/ca.json +1 -1
  10. package/locale/ca.po +28 -22
  11. package/locale/cs.json +1 -1
  12. package/locale/cs.po +26 -20
  13. package/locale/de.json +1 -1
  14. package/locale/de.po +28 -22
  15. package/locale/es.json +1 -1
  16. package/locale/es.po +28 -22
  17. package/locale/es_419.json +1 -1
  18. package/locale/es_419.po +257 -255
  19. package/locale/et.json +1 -1
  20. package/locale/et.po +33 -25
  21. package/locale/fa.json +1 -1
  22. package/locale/fa.po +33 -25
  23. package/locale/fi.json +1 -1
  24. package/locale/fi.po +26 -20
  25. package/locale/fr.json +1 -1
  26. package/locale/fr.po +28 -22
  27. package/locale/hu.json +1 -1
  28. package/locale/hu.po +31 -21
  29. package/locale/id.json +1 -1
  30. package/locale/id.po +26 -20
  31. package/locale/it.json +1 -1
  32. package/locale/it.po +31 -21
  33. package/locale/lo.json +1 -1
  34. package/locale/lo.po +33 -25
  35. package/locale/lt.json +1 -1
  36. package/locale/lt.po +32 -23
  37. package/locale/messages.pot +26 -20
  38. package/locale/nl.json +1 -1
  39. package/locale/nl.po +28 -22
  40. package/locale/pl.json +1 -1
  41. package/locale/pl.po +31 -21
  42. package/locale/pt.json +1 -1
  43. package/locale/pt.po +33 -25
  44. package/locale/ro.json +1 -1
  45. package/locale/ro.po +46 -48
  46. package/locale/ru.json +1 -1
  47. package/locale/ru.po +26 -20
  48. package/locale/sl.json +1 -1
  49. package/locale/sl.po +33 -25
  50. package/locale/tr.json +1 -1
  51. package/locale/tr.po +26 -20
  52. package/locale/uk.json +1 -1
  53. package/locale/uk.po +31 -21
  54. package/locale/zh_CN.json +1 -1
  55. package/locale/zh_CN.po +31 -21
  56. package/package.json +5 -4
  57. package/src/action.js +4 -7
  58. package/src/board.js +0 -2
  59. package/src/common.js +49 -31
  60. package/src/model.js +62 -23
  61. package/src/rpc.js +5 -2
  62. package/src/sao.js +2 -2
  63. package/src/sao.less +8 -0
  64. package/src/screen.js +35 -45
  65. package/src/session.js +1 -2
  66. package/src/tab.js +20 -59
  67. package/src/view/calendar.js +46 -2
  68. package/src/view/form.js +89 -45
  69. package/src/view/list_form.js +58 -20
  70. package/src/view/tree.js +104 -49
  71. package/src/window.js +149 -17
  72. package/tests/sao.js +75 -23
package/CHANGELOG CHANGED
@@ -1,37 +1,24 @@
1
1
 
2
- Version 6.6.8 - 2023-05-17
2
+ Version 6.8.1 - 2023-05-17
3
3
  --------------------------
4
4
  * Bug fixes (see mercurial logs for details)
5
5
 
6
6
 
7
- Version 6.6.7 - 2023-05-03
8
- --------------------------
9
- * Bug fixes (see mercurial logs for details)
10
-
11
-
12
- Version 6.6.6 - 2023-04-01
13
- --------------------------
14
- * Bug fixes (see mercurial logs for details)
15
-
16
- Version 6.6.5 - 2023-02-17
17
- --------------------------
18
- * Bug fixes (see mercurial logs for details)
19
-
20
- Version 6.6.4 - 2023-02-05
21
- --------------------------
22
- * Bug fixes (see mercurial logs for details)
23
-
24
- Version 6.6.3 - 2023-01-15
25
- --------------------------
26
- * Bug fixes (see mercurial logs for details)
27
-
28
- Version 6.6.2 - 2023-01-02
29
- --------------------------
30
- * Bug fixes (see mercurial logs for details)
31
-
32
- Version 6.6.1 - 2022-12-06
7
+ Version 6.8.0 - 2023-05-01
33
8
  --------------------------
34
9
  * Bug fixes (see mercurial logs for details)
10
+ * Include events to logs
11
+ * Support scroll time on calendar view
12
+ * Save and Restore tree state on List Form
13
+ * Do record (pre)validation and saving on selection change for list-form views
14
+ * Eagerly read string value of selection fields
15
+ * Do not select first record by default
16
+ * Use ``&`` and ``|`` as boolean operator in search widget
17
+ * Use toggle button and label on translate dialog
18
+ * Support border type of images
19
+ * Manage domain on id in single value list as unique
20
+ * Do not validate domain nor enforce uniqueness for empty fields unless they're required or invisible
21
+ * Display the number of selected records on xxx2Many
35
22
 
36
23
  Version 6.6.0 - 2022-10-31
37
24
  --------------------------
package/Gruntfile.js CHANGED
@@ -156,6 +156,7 @@ module.exports = function(grunt) {
156
156
  grunt.loadNpmTasks('grunt-contrib-uglify');
157
157
  grunt.loadNpmTasks('grunt-contrib-less');
158
158
  grunt.loadNpmTasks('grunt-po2json');
159
+ grunt.loadNpmTasks('grunt-qunit-junit');
159
160
 
160
161
  grunt.registerTask('default', 'Build for production.', function() {
161
162
  grunt.task.run(['concat', 'jshint', 'uglify', 'less', 'po2json']);
@@ -177,7 +178,7 @@ module.exports = function(grunt) {
177
178
  });
178
179
  grunt.registerTask('test', 'Run tests', function() {
179
180
  grunt.loadNpmTasks('grunt-contrib-qunit');
180
- grunt.task.run(['concat', 'jshint', 'less:dev', 'qunit']);
181
+ grunt.task.run(['concat', 'jshint', 'less:dev', 'qunit_junit', 'qunit']);
181
182
  });
182
183
 
183
184
  };
@@ -9172,6 +9172,11 @@ html[theme="default"] .carousel-caption h6 {
9172
9172
  .input-group > .form-control-feedback {
9173
9173
  z-index: 3;
9174
9174
  }
9175
+ .input-group-addon > .label {
9176
+ position: absolute;
9177
+ right: 0px;
9178
+ top: -5px;
9179
+ }
9175
9180
  .navbar-inverse .close {
9176
9181
  color: #6dd1d4;
9177
9182
  }