cavalion-js 1.0.82 → 1.0.84
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.
- package/.md +9 -3
- package/CHANGELOG.md +154 -95
- package/chloggen.md +1263 -0
- package/package.json +1 -1
- package/src/entities/EM.js +25 -14
- package/src/entities/expand.js +30 -0
- package/src/js/Method.js +2 -2
- package/src/js/_js.js +48 -21
- package/src/js/extensions.js +138 -113
- package/src/js/extensions.js- +516 -0
- package/src/js/nameOf.js +23 -12
- package/src/js/serialize.js +92 -13
- package/src/locale.js +5 -1
- package/src/stylesheet.js +16 -6
- package/src/util/Browser.js +20 -1
- package/src/util/Clipboard.js +124 -42
- package/src/util/EventEmitter.js +32 -0
- package/src/util/HotkeyManager.js +4 -4
- package/src/util/HtmlElement.js +24 -0
- package/src/util/Queue.js +52 -0
package/.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
* [CHANGELOG.md]() - [README.md]() - [package.json]() - [PROMPT.md]()
|
|
2
|
+
* [chloggen.md]()
|
|
2
3
|
|
|
3
4
|
# cavalion-js
|
|
4
5
|
|
|
@@ -8,10 +9,10 @@
|
|
|
8
9
|
* [src](:/)
|
|
9
10
|
* **[console](src/:/)**
|
|
10
11
|
* **[data](src/:/)** - [design](src/:/)
|
|
11
|
-
* **[entities](src/:/)** - [entities.js](src/) - [features](src/:/)
|
|
12
|
+
* **[entities](src/:/)** - [entities.js](src/:) - [expand.js](src/entities/:) - [features](src/:/)
|
|
12
13
|
* [js](src/:/) / [\_js.js](src/js/:) - [extensions.js](src/js/:) - _[global.js](src/js/:)_? - _[define.js](src/js/:)?_
|
|
13
14
|
- [defineClass.js](src/js/:) - [referenceClass.js](src/js/:)
|
|
14
|
-
- **[JsObject.js](src/js/:) - [Class.js](src/js/:)
|
|
15
|
+
- **[JsObject.js](src/js/:)** - **[Class.js](src/js/:)**
|
|
15
16
|
- [json.js](src/:) - [locale.js](src/:) - [text.js](src/:)
|
|
16
17
|
- [script.js](src/:) - [relscript.js](src/:)
|
|
17
18
|
- [stylesheet.js](src/:)
|
|
@@ -26,10 +27,11 @@
|
|
|
26
27
|
- [Ajax.js](src/util/:) - [Command.js](src/util/:)
|
|
27
28
|
- [Browser.js](src/util/:) - [CssSelectorParser.js](src/util/:)
|
|
28
29
|
- [Clipboard.js](src/util/:)
|
|
29
|
-
- [DocumentHook.js](src/util/:) - [Event.js](src/util/:) - [Fullscreen.js](src/util/:)
|
|
30
|
+
- [DocumentHook.js](src/util/:) - [Event.js](src/util/:) - [EventEmitter.js](src/util/:) - [Fullscreen.js](src/util/:)
|
|
30
31
|
- [HotkeyManager.js](src/util/:) - [HtmlElement.js](src/util/:)
|
|
31
32
|
- [Hash.js](src/util/:)
|
|
32
33
|
- [Keyboard.js](src/util/:)
|
|
34
|
+
- [Queue.js](src/util/:)
|
|
33
35
|
- [Rest.js](src/util/:)
|
|
34
36
|
- [Stylesheet.js](src/util/:)
|
|
35
37
|
- [Text.js](src/util/:)
|
|
@@ -51,6 +53,10 @@
|
|
|
51
53
|
- [Scaffold.js](src/js/:)
|
|
52
54
|
- [Type.js](src/js/:)
|
|
53
55
|
|
|
56
|
+
# `2025/01/24` locales in WebKit
|
|
57
|
+
|
|
58
|
+

|
|
59
|
+
|
|
54
60
|
# `2023/05/23` countWords
|
|
55
61
|
|
|
56
62
|
String.prototype.countLinesAndWords = function() {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,85 +1,144 @@
|
|
|
1
|
-
###
|
|
1
|
+
### `2026/01/18` - 1.0.84
|
|
2
|
+
|
|
3
|
+
EM now uses the browser’s fetch API instead of jQuery.
|
|
4
|
+
|
|
5
|
+
Serialization/deserialization is reworked to support circular references via reference tracking, and small usability helpers were added for clipboard text access and synchronizing element CSS classes.
|
|
6
|
+
|
|
7
|
+
Several core methods were changed and/or expanded:
|
|
8
|
+
|
|
9
|
+
* grouping can be keyed by a function,
|
|
10
|
+
* identity lookups are supported,
|
|
11
|
+
* sorting and number formatting are more defensive,
|
|
12
|
+
* and naming heuristics recognize more label-like fields.
|
|
13
|
+
|
|
14
|
+
#### New
|
|
15
|
+
|
|
16
|
+
* **[entities/expand.js](src/:)** adds a helper that expands an “as” spec into a mapped string: it accepts a single value, a comma-list, or an array, and supports optional aliasing and `ns:path.field` formatting.
|
|
17
|
+
* **[util/Queue.js](src/:)** adds a promise-based FIFO queue with a **concurrency limit**, plus `whenIdle()` to await drain. z
|
|
18
|
+
* **[util/EventEmitter.js](src/:)** adds a lightweight event-emitter mixin (`on`, `un`, `once`, `emit`) that stores handlers on a configurable property (default `"handlers"`).
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
#### Label support + minor fallback tweak
|
|
22
|
+
|
|
23
|
+
- Improves [nameOf.js](src/js/:) value selection to also consider `label` alongside existing name/description fields.
|
|
24
|
+
- Keeps existing priority order (`id*` → remark → name-ish → title-ish), now including `label` in both lower/upper-case variants.
|
|
25
|
+
- Tweaks the no-constructor fallback string from `"<Native?>"` to `"<Native<?>>"`.
|
|
26
|
+
- Adds inline notes for a potential future recursion/cycle-safe naming helper (comment-only, no behavior change).
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
#### Safer generalized sorting + numeric formatting guard
|
|
30
|
+
|
|
31
|
+
- Makes `Array.sortValues` definition conditional (only defines it if not already present).
|
|
32
|
+
- Introduces explicit type-priority ordering for mixed-type sorts (undefined/null/boolean/number/string/object/function/symbol).
|
|
33
|
+
- Adds special-case comparison for arrays: sorts by `length` when both operands are arrays.
|
|
34
|
+
- Normalizes comparator return values to `-1/0/1` for stability and consistent ordering.
|
|
35
|
+
- Hardens object comparison by wrapping `stringify(...)` in try/catch and logging failures instead of throwing.
|
|
36
|
+
- Adds a fallback branch for unhandled types in `sortValues` (warns and returns equality).
|
|
37
|
+
- Updates `Math.f(n, d)` to only apply formatting heuristics when `n` is numeric; otherwise returns `n` unchanged.
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
#### Changes
|
|
41
|
+
|
|
42
|
+
- Refactors `EM.query(...)` in `src/entities/EM.js` to use `fetch` + `URLSearchParams` instead of `jquery.ajax`.
|
|
43
|
+
- Extends `js.groupBy(arr, key)` to accept a key function in `src/js/_js.js`.
|
|
44
|
+
- Breaking: switches `js.sj` / `js.pj` from `JSON.stringify` / `JSON.parse` to `serialize.serialize` / `serialize.deserialize` (handles `$ref` circular references).
|
|
45
|
+
- Adds `js.get(".")` to return the input object unchanged (identity accessor).
|
|
46
|
+
- Makes `Array.sortValues` definition conditional and adds type-aware ordering + array-length comparison in `src/js/extensions.js`.
|
|
47
|
+
- Hardens `Math.f(n, d)` to only apply string-based formatting when `n` is numeric; otherwise returns input unchanged.
|
|
48
|
+
- Expands `js.nameOf(...)` matching to include `label` fields and adjusts “native” fallback string to `"<Native<?>>"`.
|
|
49
|
+
- Replaces `src/js/serialize.js` export with `{ serialize, deserialize, isKeyword, keyNeedsEscape }` and implements `$ref`-based encode/decode for repeated objects.
|
|
50
|
+
- Adds `Clipboard.getText()` / `Clipboard.setText()` aliases and extends `Clipboard.paste(cb)` to optionally callback with pasted text.
|
|
51
|
+
- Adds `HtmlElement.syncClasses(node, classes, values)` to toggle CSS classes from booleans/functions and return changed class names.
|
|
52
|
+
- Applies minor style/semicolon fixes in `src/stylesheet.js`; adds commented Chrome iframe resize hack in `src/util/Browser.js` (no runtime change).
|
|
53
|
+
|
|
54
|
+
### `2025/04/03` - 1.0.83
|
|
55
|
+
|
|
56
|
+
* Introduces Array.moveItem
|
|
57
|
+
* Updates js.set to handle escaped dots properly
|
|
58
|
+
* Adds a delay of 2750ms before refresing LESS definitions
|
|
59
|
+
|
|
60
|
+
### `2024/11/08` - 1.0.82
|
|
2
61
|
|
|
3
62
|
* Service build in favor of cavalion-code
|
|
4
63
|
|
|
5
|
-
### 2024/11/01 - 1.0.81
|
|
64
|
+
### `2024/11/01` - 1.0.81
|
|
6
65
|
|
|
7
66
|
* Adds Array.sortValues
|
|
8
67
|
* Adds Date.format (USE IT! ;-))
|
|
9
68
|
* Fixes/prepares js.nameOf() for some exotic use case with dropped files
|
|
10
69
|
|
|
11
|
-
### 2024/07/07 - 1.0.79
|
|
70
|
+
### `2024/07/07` - 1.0.79
|
|
12
71
|
|
|
13
72
|
* Removes `Array.prototype.last` and -`first`
|
|
14
73
|
* Improves beautifying XML sources and error detection during (uhm)
|
|
15
74
|
|
|
16
|
-
### 2024/05/16 - 1.0.78
|
|
75
|
+
### `2024/05/16` - 1.0.78
|
|
17
76
|
|
|
18
77
|
* Adds Array.fn.nonNil
|
|
19
78
|
* Introduces js.eval
|
|
20
79
|
|
|
21
|
-
### 2024/03/24 - 1.0.77
|
|
80
|
+
### `2024/03/24` - 1.0.77
|
|
22
81
|
|
|
23
82
|
* Introduces util/Text
|
|
24
83
|
|
|
25
|
-
### 2023/09/30 - 1.0.76
|
|
84
|
+
### `2023/09/30` - 1.0.76
|
|
26
85
|
|
|
27
86
|
* Fixes a solid bug, in _JsObject.prototype.setProperties()_, sure why not?
|
|
28
87
|
|
|
29
|
-
### 2023/06/30 - 1.0.75
|
|
88
|
+
### `2023/06/30` - 1.0.75
|
|
30
89
|
|
|
31
90
|
* Introduces locales.mixIn, prefixed.has()
|
|
32
91
|
* Ensures that Printer.prottype.print returns the printed value
|
|
33
92
|
* Refactores String.escape to use JSON.stringify
|
|
34
93
|
|
|
35
|
-
### 2023/06/30 - 1.0.74
|
|
94
|
+
### `2023/06/30` - 1.0.74
|
|
36
95
|
|
|
37
96
|
* Introduces `locale.has()`
|
|
38
97
|
|
|
39
|
-
### 2023/03/01 - 1.0.73
|
|
98
|
+
### `2023/03/01` - 1.0.73
|
|
40
99
|
|
|
41
100
|
* Introduces `js.mi` alias for `js.mixIn`
|
|
42
101
|
* Fixes a bug in `js.sf` (ie. String.format) where specifiers where not handled correctly for %X.Yf like formats
|
|
43
102
|
|
|
44
|
-
### 2022/11/15 - 1.0.72
|
|
103
|
+
### `2022/11/15` - 1.0.72
|
|
45
104
|
|
|
46
105
|
* DocumentHook: Adds the events onmouseover and onmouseout
|
|
47
106
|
|
|
48
|
-
### 2022/11/07
|
|
107
|
+
### `2022/11/07`
|
|
49
108
|
|
|
50
109
|
* Adds `js.waitAll()`
|
|
51
110
|
|
|
52
|
-
### 2022/07/28 10/29 - 1.0.71
|
|
111
|
+
### `2022/07/28` 10/29 - 1.0.71
|
|
53
112
|
|
|
54
113
|
* Adjusts/enhances `js.groupBy()` to use js.get(key,obj) in case obj doesn't have key
|
|
55
114
|
* !!!???? Implements the support for falling back automatically ([CVLN-20220901-2-](/Dropbox-cavalion/Issues/:/))
|
|
56
115
|
fixes a bug where falling back on wildcarded terms was not working correctly
|
|
57
116
|
|
|
58
|
-
### 2022/07/28 - 1.0.70
|
|
117
|
+
### `2022/07/28` - 1.0.70
|
|
59
118
|
|
|
60
119
|
* 2bb8d17 - updates/commits code that has been shipped for months now
|
|
61
120
|
* dc8fb8d - enhances js.groupBy for grouping on multiple attributes
|
|
62
121
|
* caa9abc - adds hint parameter to js.nameOf
|
|
63
122
|
* 004cc0f - clogs the latest changes
|
|
64
123
|
|
|
65
|
-
### 2022/03/28 - 1.0.69
|
|
124
|
+
### `2022/03/28` - 1.0.69
|
|
66
125
|
|
|
67
126
|
* e3ce126 - Clogging
|
|
68
127
|
* 0d7badc - js/JsObject: Still refactoring [all !==> references (!)]
|
|
69
128
|
|
|
70
|
-
### 2022/03/28 - 1.0.68
|
|
129
|
+
### `2022/03/28` - 1.0.68
|
|
71
130
|
|
|
72
131
|
* Updating
|
|
73
132
|
|
|
74
|
-
### 2022/01/02 - 1.0.67
|
|
133
|
+
### `2022/01/02` - 1.0.67
|
|
75
134
|
|
|
76
135
|
* Introducing `js.nameOf.methods.set(name, impl)` - it allows for overriding/extending a certain method iteratively
|
|
77
136
|
|
|
78
|
-
### 2021/12/17 - 1.0.66
|
|
137
|
+
### `2021/12/17` - 1.0.66
|
|
79
138
|
|
|
80
139
|
- Enhancing `locale`, now supporting references with the ::-prefix
|
|
81
140
|
|
|
82
|
-
### 2021/10/09 - 1.0.65
|
|
141
|
+
### `2021/10/09` - 1.0.65
|
|
83
142
|
|
|
84
143
|
- Now supporting the following patterns:
|
|
85
144
|
|
|
@@ -88,84 +147,84 @@ fixes a bug where falling back on wildcarded terms was not working correctly
|
|
|
88
147
|
|
|
89
148
|
Not sure what todo with the default yet.
|
|
90
149
|
|
|
91
|
-
### 2021/09/18 - 1.0.64
|
|
150
|
+
### `2021/09/18` - 1.0.64
|
|
92
151
|
|
|
93
152
|
- Introducing `String.decamelize = String.decamelcase`
|
|
94
153
|
|
|
95
|
-
### 2021/06/21 - 1.0.63
|
|
154
|
+
### `2021/06/21` - 1.0.63
|
|
96
155
|
- Introducing `js.groupBy()`
|
|
97
156
|
|
|
98
|
-
### 2021/03/12 - 1.0.62
|
|
157
|
+
### `2021/03/12` - 1.0.62
|
|
99
158
|
- util/Xml: Introducing `jsonfy()`
|
|
100
159
|
|
|
101
|
-
### 2021/02/07 - 1.0.61
|
|
160
|
+
### `2021/02/07` - 1.0.61
|
|
102
161
|
- locale: Fix for using /-prefixed paths
|
|
103
162
|
|
|
104
|
-
### 2021/01/24 - 1.0.60
|
|
163
|
+
### `2021/01/24` - 1.0.60
|
|
105
164
|
- Adding extensions to Math in order to deal with floating points
|
|
106
165
|
|
|
107
|
-
### 2021/01/22 - 1.0.59
|
|
166
|
+
### `2021/01/22` - 1.0.59
|
|
108
167
|
* Introducing `js.trim()` - get rid of undefined keys
|
|
109
168
|
|
|
110
|
-
### 2020-11-11 - 1.0.58
|
|
169
|
+
### `2020-11-11` - 1.0.58
|
|
111
170
|
- Refactoring js.nameOf.methods => veldapps-xml /- also added some lamish debug/test feature to see which method is being used
|
|
112
171
|
|
|
113
|
-
### 2020-11-06 - 1.0.57
|
|
172
|
+
### `2020-11-06` - 1.0.57
|
|
114
173
|
- Adding minimal packing support through js/Packer.[un]pack(ace/string)
|
|
115
174
|
|
|
116
|
-
### 2020-10-28
|
|
175
|
+
### `2020-10-28`
|
|
117
176
|
- Editor<xml>/DetailViews: Working towards base class / integration .blocks features
|
|
118
177
|
|
|
119
|
-
### 2020-10-19 - 1.0.56
|
|
178
|
+
### `2020-10-19` - 1.0.56
|
|
120
179
|
- Added more `js.nameOf`-methods
|
|
121
180
|
|
|
122
|
-
### 2020-10-07 - 1.0.55
|
|
181
|
+
### `2020-10-07` - 1.0.55
|
|
123
182
|
- Introducing `js.nameOf.methods.after` (I guess we need priorities?)
|
|
124
183
|
|
|
125
|
-
### 2020-09-12 - 1.0.54
|
|
184
|
+
### `2020-09-12` - 1.0.54
|
|
126
185
|
- Adding JSON-shortcuts to `js`, ie. `js.sj` & `js.pj`
|
|
127
186
|
|
|
128
|
-
### 2020-08-29 - 1.0.53
|
|
187
|
+
### `2020-08-29` - 1.0.53
|
|
129
188
|
- Fixing uri display of vcl/Component-s in console
|
|
130
189
|
- Developing console features, working on vcl/Component.uri property
|
|
131
190
|
|
|
132
|
-
### 2020-08-27 - 1.0.52
|
|
191
|
+
### `2020-08-27` - 1.0.52
|
|
133
192
|
|
|
134
193
|
src/console/node/Function.js
|
|
135
194
|
src/console/node/OnlyKey.js
|
|
136
195
|
src/util/HotkeyManager.js
|
|
137
196
|
|
|
138
|
-
### 2020-08-18 - 1.0.51
|
|
197
|
+
### `2020-08-18` - 1.0.51
|
|
139
198
|
- Adding Array.as
|
|
140
199
|
|
|
141
|
-
### 2020-08-05 - 1.0.50
|
|
200
|
+
### `2020-08-05` - 1.0.50
|
|
142
201
|
- Adding default js.nameOf() method
|
|
143
202
|
|
|
144
|
-
### 2020-07-05 - 1.0.48 `#local-changes`
|
|
203
|
+
### `2020-07-05` - 1.0.48 `#local-changes`
|
|
145
204
|
- Welcoming `ArrayFactory` to the family (_well yeah, hey, every drop counts and besides, now it's always there_)
|
|
146
205
|
- Prefixed `locale` functions now return their prefix by calling without arguments
|
|
147
206
|
|
|
148
|
-
### 2020-06-16 - 1.0.47
|
|
207
|
+
### `2020-06-16` - 1.0.47
|
|
149
208
|
|
|
150
209
|
- Fixing `js.str2obj()` so it accepts just a key and it's value set to true - not sure whether the semi-colon should be obligated...
|
|
151
210
|
|
|
152
|
-
### 2020-06-12 - 1.0.46
|
|
211
|
+
### `2020-06-12` - 1.0.46
|
|
153
212
|
|
|
154
213
|
- Enhancing `js.str2obj()` so it accepts just a key and it's value set to true - not sure whether the semi-colon should be obligated...
|
|
155
214
|
|
|
156
|
-
### 2020-06-10 - 1.0.45
|
|
215
|
+
### `2020-06-10` - 1.0.45
|
|
157
216
|
- Decided not to mess with Array's prototype (1.0.34 cancelled)
|
|
158
217
|
|
|
159
|
-
### 2020-06-02 - 1.0.44
|
|
218
|
+
### `2020-06-02` - 1.0.44
|
|
160
219
|
- Having some trouble with the HexaQuad due to Vectorklic.app (hoe heeft het ooit kunnen werken? - werd dus niet (meer) gebruikt!)
|
|
161
220
|
- Bugfix in EM.arrayOfAll
|
|
162
221
|
|
|
163
|
-
### 2020-05-13 - 1.0.42
|
|
222
|
+
### `2020-05-13` - 1.0.42
|
|
164
223
|
- Improving locale so that arrays are used to wrap object values (which otherwise would be parsed out)
|
|
165
224
|
|
|
166
225
|
>> 
|
|
167
226
|
|
|
168
|
-
### 2020-05-10 - 1.0.40
|
|
227
|
+
### `2020-05-10` - 1.0.40
|
|
169
228
|
- Promise: Featuring new class definition pattern
|
|
170
229
|
|
|
171
230
|
>> 
|
|
@@ -174,92 +233,92 @@ Not sure what todo with the default yet.
|
|
|
174
233
|
- js.nameOf: Now specifically handling Window
|
|
175
234
|
- locale: Paving the way for formatting
|
|
176
235
|
|
|
177
|
-
### 2020-04-28
|
|
236
|
+
### `2020-04-28`
|
|
178
237
|
- js.copy_args: callee optional added
|
|
179
238
|
|
|
180
|
-
### 2020-04-14 - 1.0.38
|
|
239
|
+
### `2020-04-14` - 1.0.38
|
|
181
240
|
- js/nameOf: adding `@_name` as default name attribute"
|
|
182
241
|
|
|
183
|
-
### 2020-04-09 - 1.0.37
|
|
242
|
+
### `2020-04-09` - 1.0.37
|
|
184
243
|
- json.js: Fix for: Error: Loader plugin did not call the load callback in the build
|
|
185
|
-
### 2020-01-27 - 1.0.36
|
|
244
|
+
### `2020-01-27` - 1.0.36
|
|
186
245
|
- Introducing 'yell'
|
|
187
246
|
|
|
188
|
-
### 2020-01-22 - 1.0.35
|
|
247
|
+
### `2020-01-22` - 1.0.35
|
|
189
248
|
- Introducing parameter `include_q` for static `util/net/Url.obj2qs`
|
|
190
249
|
|
|
191
|
-
### 2019-11-29 [1.0.33]
|
|
250
|
+
### `2019-11-29` [1.0.33]
|
|
192
251
|
- Fixed Alt+Click in console/Node
|
|
193
252
|
|
|
194
|
-
### 2019-10-22 [1.0.32]
|
|
253
|
+
### `2019-10-22` [1.0.32]
|
|
195
254
|
- Adding locale.slashDotRepl option (default: false)
|
|
196
255
|
|
|
197
|
-
### 2019-07-18 [1.0.30]
|
|
256
|
+
### `2019-07-18` [1.0.30]
|
|
198
257
|
- Making nl the default locale
|
|
199
258
|
- Fighting the localStorage.locale bug, removed feature - apps should do this seperately (AND FOOLPROOF! ;-)
|
|
200
259
|
|
|
201
|
-
### 2019-07-14 [1.0.29]
|
|
260
|
+
### `2019-07-14` [1.0.29]
|
|
202
261
|
- Enhancing `js.get()`, 1st argument can be an array of strings or a string which will be splitted by dot (`.`)
|
|
203
262
|
|
|
204
|
-
### 2019-06-07 [1.0.27]
|
|
263
|
+
### `2019-06-07` [1.0.27]
|
|
205
264
|
- Working on ES6 module support
|
|
206
265
|
|
|
207
|
-
### 2019-05-25 [1.0.26]
|
|
266
|
+
### `2019-05-25` [1.0.26]
|
|
208
267
|
- `locale!/` implemented in order to prevent locale_base
|
|
209
268
|
|
|
210
|
-
### 2019-05-18 [1.0.22]
|
|
269
|
+
### `2019-05-18` [1.0.22]
|
|
211
270
|
- Introducing locale.prefixed
|
|
212
271
|
|
|
213
|
-
### 2019-05-09 [1.0.21]
|
|
272
|
+
### `2019-05-09` [1.0.21]
|
|
214
273
|
- Introducing js.ctx and js.sf
|
|
215
274
|
|
|
216
|
-
### 2019-03-31 [1.0.19]
|
|
275
|
+
### `2019-03-31` [1.0.19]
|
|
217
276
|
- Fixed a typo/bug, in destroy() method, wtf...
|
|
218
277
|
- Added support for distinct and raw queries (entities/EM)
|
|
219
278
|
|
|
220
|
-
### 2019-02-18 [1.0.18]
|
|
279
|
+
### `2019-02-18` [1.0.18]
|
|
221
280
|
- Improving console (in another dimension vcl:ui)
|
|
222
281
|
|
|
223
|
-
### 2019-02-17 [1.0.17]
|
|
282
|
+
### `2019-02-17` [1.0.17]
|
|
224
283
|
- Fixed a bug in `js.get()` [OMG!]
|
|
225
284
|
|
|
226
|
-
### 2018-12-15 [1.0.16]
|
|
285
|
+
### `2018-12-15` [1.0.16]
|
|
227
286
|
- Fix in locale.js (for building cavalion-code)
|
|
228
287
|
|
|
229
|
-
### 2018-12 [1
|
|
288
|
+
### `2018-12 [1`.0.14]
|
|
230
289
|
- Fix in js/Scaffold (like a temp hack)
|
|
231
290
|
- Fix in locale.js (for building cavalion-code)
|
|
232
291
|
|
|
233
|
-
### 2018-10-10
|
|
292
|
+
### `2018-10-10`
|
|
234
293
|
- Introducing json!
|
|
235
294
|
|
|
236
|
-
### 2018-08-22 [1.0.6]
|
|
295
|
+
### `2018-08-22` [1.0.6]
|
|
237
296
|
- locale: Always looking for prototype
|
|
238
297
|
|
|
239
|
-
### 2018-05-21
|
|
298
|
+
### `2018-05-21`
|
|
240
299
|
- Fix for normalizing relative to /-paths
|
|
241
300
|
- Fix for class names with dashes
|
|
242
301
|
- Finetuning DocumentHook's wheelEvents
|
|
243
302
|
|
|
244
|
-
### 2018-03-21
|
|
303
|
+
### `2018-03-21`
|
|
245
304
|
- Springly commit
|
|
246
305
|
|
|
247
|
-
### 2018-02-28
|
|
306
|
+
### `2018-02-28`
|
|
248
307
|
- Fixed a bug which caused `specializer_classes` not be applied on components. Eg. `devtools/Workspace<Veldoffice.ralph>` would only apply `devtools/Workspace<Veldoffice>`)
|
|
249
308
|
- Fixed a bug where `vcl/Component.getImplicitBaseByUri()` would return duplicate bases
|
|
250
309
|
|
|
251
|
-
### 2018-02-27
|
|
310
|
+
### `2018-02-27`
|
|
252
311
|
- Introducing `Component.prototype.vars`
|
|
253
312
|
- Minor fix for Component.query
|
|
254
313
|
- Fix for vcl-ui/Node performance
|
|
255
314
|
|
|
256
|
-
### 2018-02-12
|
|
315
|
+
### `2018-02-12`
|
|
257
316
|
- Fixing expanded/expandable bugs for vcl-ui/Node
|
|
258
317
|
- Looking into performance of vcl-ui/Node and vcl-ui/List
|
|
259
318
|
- Introducing **vcl-ui/Console.evaluate**
|
|
260
319
|
- Adding onEvent style to Component.properties.handlers
|
|
261
320
|
|
|
262
|
-
### 2018-02-07 [1.0.2]
|
|
321
|
+
### `2018-02-07` [1.0.2]
|
|
263
322
|
* **vcl/Factory** - Removed Method.trace-ing
|
|
264
323
|
* **vcl-ui/List* ** - Worked on List-classes - not really improved, lacks speed
|
|
265
324
|
* Fixed now longer functioning cavalion.org/databind
|
|
@@ -272,29 +331,29 @@ Not sure what todo with the default yet.
|
|
|
272
331
|
|
|
273
332
|
>
|
|
274
333
|
|
|
275
|
-
### 2018-02-04
|
|
334
|
+
### `2018-02-04`
|
|
276
335
|
|
|
277
336
|
* "vcl-ui/List" == "vcl/ui/List"
|
|
278
337
|
|
|
279
338
|

|
|
280
339
|
|
|
281
|
-
### 2018-02-02
|
|
340
|
+
### `2018-02-02`
|
|
282
341
|
- Improving vcl/ui/Tree: Vertical alignment, removed bottom padding for the selected item
|
|
283
342
|
|
|
284
343
|

|
|
285
344
|
|
|
286
|
-
### 2018-01-26
|
|
345
|
+
### `2018-01-26`
|
|
287
346
|
- Exploring Git
|
|
288
347
|
|
|
289
|
-
### 2018-01-21
|
|
348
|
+
### `2018-01-21`
|
|
290
349
|
- Developing vcl/entities/Query and descendants
|
|
291
350
|
- Start developing ListOf
|
|
292
351
|
- Finetuning code structures and styles (standard library?)
|
|
293
352
|
|
|
294
|
-
### 2018-01-08
|
|
353
|
+
### `2018-01-08`
|
|
295
354
|
- Developing Veldoffice entities client
|
|
296
355
|
|
|
297
|
-
### 2018-01-02
|
|
356
|
+
### `2018-01-02`
|
|
298
357
|
- Giving some love to vcl/Component::handlers and ::overrides
|
|
299
358
|
- vcl/Factory now catching eval errors
|
|
300
359
|
- vcl/ui/Printer now supports native Promise (js/Deferred.prototype.then())
|
|
@@ -303,30 +362,30 @@ Not sure what todo with the default yet.
|
|
|
303
362
|
- Developing veldoffice/Session, veldoffice/EM and veldoffice/models
|
|
304
363
|
- Adding locale
|
|
305
364
|
|
|
306
|
-
### 2017-11-04
|
|
365
|
+
### `2017-11-04`
|
|
307
366
|
- devtools/Workspace: Added query close for tabs
|
|
308
367
|
- devtools/Editor<html>: First steps to specific [uri=*.\.page/\.html] editor
|
|
309
368
|
|
|
310
|
-
### 2017-10-18
|
|
369
|
+
### `2017-10-18`
|
|
311
370
|
- Improved context handling with Pages and App7.loadPage (basically it's all back to url_query again, but that's a good thing :-))
|
|
312
371
|
- EM.query: When omitted pagesize will default to 50
|
|
313
372
|
|
|
314
|
-
### 2017-10-15
|
|
373
|
+
### `2017-10-15`
|
|
315
374
|
- Pages: Removing obligatory less resource. It seems these are hardly used and can always be required by the conroller module
|
|
316
375
|
- Commiting in favor of V7
|
|
317
376
|
|
|
318
|
-
### 2017-10-11
|
|
377
|
+
### `2017-10-11`
|
|
319
378
|
- Code: new release
|
|
320
379
|
|
|
321
|
-
### 2017-10-08
|
|
380
|
+
### `2017-10-08`
|
|
322
381
|
- V7: Releasing build 126
|
|
323
382
|
- stylesheet! - now supporting less
|
|
324
383
|
- Embracing Template7, setting up context before loading page
|
|
325
384
|
|
|
326
|
-
### 2017-10-02
|
|
385
|
+
### `2017-10-02`
|
|
327
386
|
- Editor<html>: Restoring scroll position upon changes in the source code
|
|
328
387
|
|
|
329
|
-
### 2017-08-11
|
|
388
|
+
### `2017-08-11`
|
|
330
389
|
- Component.query: Added toggleClass()
|
|
331
390
|
- Query.events: Added "event"
|
|
332
391
|
- vcl/data/Pouch: Finetuning, developing...
|
|
@@ -335,21 +394,21 @@ Not sure what todo with the default yet.
|
|
|
335
394
|
- entities/EM: Developing, finetuning
|
|
336
395
|
- Resolved: #1297
|
|
337
396
|
|
|
338
|
-
### 2017-07-01
|
|
397
|
+
### `2017-07-01`
|
|
339
398
|
- Introducing vcl/ui/Panel (might move upwards in the class hierarchy) zoom (cool feature!!)
|
|
340
399
|
|
|
341
|
-
### 2017-06-24
|
|
400
|
+
### `2017-06-24`
|
|
342
401
|
- Adding vcl/data/Pouch in the mix
|
|
343
402
|
- Optmizing performance for vcl/ui/List icw vcl/data/Array
|
|
344
403
|
- Fixing (workaround) some weird bug with Function.prototype.toString
|
|
345
404
|
|
|
346
|
-
### 2017-06-20
|
|
405
|
+
### `2017-06-20`
|
|
347
406
|
- Updating code base
|
|
348
407
|
|
|
349
|
-
### 2017-04-23
|
|
408
|
+
### `2017-04-23`
|
|
350
409
|
- Improving make/Build
|
|
351
410
|
|
|
352
|
-
### 2017-03-16
|
|
411
|
+
### `2017-03-16`
|
|
353
412
|
- Reorganized JavaScript libraries
|
|
354
413
|
- Conformed code/devtools to new struture
|
|
355
414
|
- Currently working on:
|
|
@@ -359,21 +418,21 @@ Not sure what todo with the default yet.
|
|
|
359
418
|
- veldapps.com/V7
|
|
360
419
|
- veldapps.com/vcl-rapportage-module
|
|
361
420
|
|
|
362
|
-
### 2017-03-11
|
|
421
|
+
### `2017-03-11`
|
|
363
422
|
- Getting rid of cavalion.org/... module requires, now using relative paths within cavalion.org sources/modules
|
|
364
423
|
|
|
365
|
-
### 2017-03-07
|
|
424
|
+
### `2017-03-07`
|
|
366
425
|
- Removed [id^=vcl-] from Control CSSRules selector
|
|
367
426
|
- Making FormContainer work with relative formUris
|
|
368
427
|
|
|
369
|
-
### 2017-03-04
|
|
428
|
+
### `2017-03-04`
|
|
370
429
|
- Optimizing code for folding features in Ace
|
|
371
430
|
- Fixing bugs for not being comptabile with IE
|
|
372
431
|
- Refresh button in ui/entities/Query
|
|
373
432
|
- Time for cavalion.org/Command to go away - jquery.ajax should be sufficient
|
|
374
433
|
- Deprecating App.scaffold
|
|
375
434
|
|
|
376
|
-
### 2017-02-28
|
|
435
|
+
### `2017-02-28`
|
|
377
436
|
- Working on entities/Instance <--> model, how to receive sets/one-to-many collections from server?
|
|
378
437
|
- Fixing scaffolding issues. No longer a-synchronous. All scaffold code should run *before* onLoad.
|
|
379
438
|
- Explicit express in code that an certain component should be scaffolded, eg.:
|
|
@@ -386,33 +445,33 @@ Not sure what todo with the default yet.
|
|
|
386
445
|
- Improving vcl/ui/FormContainer with new API swapForm()
|
|
387
446
|
- Simplyfing CSS fonts
|
|
388
447
|
|
|
389
|
-
### 2017-02-25
|
|
448
|
+
### `2017-02-25`
|
|
390
449
|
- Bug fixed where parent could not be nulled in a vcl resource
|
|
391
450
|
- Refactoring/bugfixing scaffolding
|
|
392
451
|
|
|
393
452
|
$(["View<Logger>.select"]);
|
|
394
453
|
|
|
395
|
-
### 2017-02-24
|
|
454
|
+
### `2017-02-24`
|
|
396
455
|
- Bugfixing vcl/Control.update, where controls could be updated while not anticipated for and leave them in a inconsistent state in relation to the DOM (mailny they would be removed from the DOM)
|
|
397
456
|
- Implementing scaffolding in vcl/Factory
|
|
398
457
|
- Added nesting operator (<) to vcl/Component.query, indicating to parent/child relationship
|
|
399
458
|
|
|
400
|
-
### 2017-02-23
|
|
459
|
+
### `2017-02-23`
|
|
401
460
|
- Integrated Dygraphs for visualizing measurements in a interactive timeline
|
|
402
461
|
- Keeping UI as simple as possible
|
|
403
462
|
- Refactoring vcl/prototypes/App.v1 to multiple classes, like .openform, .console (developing)
|
|
404
463
|
- Adding component name in DOM node classes, prefixed by a #-sign
|
|
405
464
|
- Refer to component names in css definitions (# --> \\#)
|
|
406
465
|
|
|
407
|
-
### 2017-02-17
|
|
466
|
+
### `2017-02-17`
|
|
408
467
|
- Developing ui/entities/Query, ./QueryFilters, ./AttributeInput
|
|
409
468
|
- Finetuning Component.qs, still need a good operator for controls
|
|
410
469
|
|
|
411
|
-
### 2017-02-14
|
|
470
|
+
### `2017-02-14`
|
|
412
471
|
- Working on vcl/ui/Input
|
|
413
472
|
- toInputValue/fromInputValue
|
|
414
473
|
|
|
415
|
-
### 2017-02-02
|
|
474
|
+
### `2017-02-02`
|
|
416
475
|
- Reformatting code to be better suited for folding features in the editor
|
|
417
476
|
- Console: Introducing req()
|
|
418
477
|
- vcl/Component.prototype.setVars: Now allowing a string as input (js.str2obj)
|