Skip to content

Commit b8d95e3

Browse files
committed
feedback
1 parent 1b7c450 commit b8d95e3

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

ChangeLog.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ See docs/process.md for how version tagging works.
1717

1818
Current Trunk
1919
-------------
20-
- Removed `timestamp` field from mouse, wheel, devicemotion and deviceorientation
21-
events. The presence of a `timestamp` on these events was slightly arbitrary,
22-
and populating this field caused a small profileable overhead that all users
23-
might not care about. It is easy to get a timestamp of an event by calling
24-
`emscripten_get_now()` or `emscripten_performance_now()` inside the event
25-
handler function of any event.
20+
- All ports not install their headers into a shared directory under
21+
`EM_CACHE`. This should not really be a user visible change although one
22+
side effect is that once a give ports is built its headers are then
23+
universally accessible, just like the library is universally available as
24+
`-l<name>`.
25+
- Removed `timestamp` field from mouse, wheel, devicemotion and
26+
deviceorientation events. The presence of a `timestamp` on these events was
27+
slightly arbitrary, and populating this field caused a small profileable
28+
overhead that all users might not care about. It is easy to get a timestamp of
29+
an event by calling `emscripten_get_now()` or `emscripten_performance_now()`
30+
inside the event handler function of any event.
2631
- Add fine-grained options for specific legacy browser support,
2732
`MIN_FIREFOX_VERSION`, `MIN_SAFARI_VERSION`, `MIN_IE_VERSION`,
2833
`MIN_EDGE_VERSION`, `MIN_CHROME_VERSION`. The existing `LEGACY_VM_SUPPORT`

embuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def main():
123123
help='build relocatable objects for suitable for dynamic linking')
124124
parser.add_argument('--force', action='store_true',
125125
help='force rebuild of target (by removing it first)')
126-
parser.add_argument('operation', help='currnetly only "build" is supported')
126+
parser.add_argument('operation', help='currently only "build" is supported')
127127
parser.add_argument('targets', nargs='+', help='see above')
128128
args = parser.parse_args()
129129

0 commit comments

Comments
 (0)