UNPKG

1.41 kBMarkdownView Raw
1# Changelog
2
3
4## v1.2.0 - 2015-08-12
5
6
7### Added
8
9- ACF-2: the injected jQuery shim now duck-punches `$.fn.html()` so that new DOM
10 content has `<img />` elements with offline URLs where possible
11
12
13## v1.1.0 - 2015-07-02
14
15
16### Added
17
18- when replacing the `[src]` attribute of a `<script>` tag, keep the old value
19 in `[data-appcache-src]`
20
21- when replacing the `[href]` attribute of a `<link>` tag, keep the old value in
22 `[data-appcache-href]`
23
24
25## Changed
26
27- inject the Require.js shim after the Require.js `<script>` tag if any,
28 otherwise after the last `<script>` tag if any, otherwise append to `<body>`
29
30
31## v1.0.3 - 2015-06-11
32
33
34### Fixed
35
36- [resolve relative output paths](#2)
37
38- [fix issues when current working directory is not the project root](#3)
39
40
41## v1.0.2 - 2015-06-10
42
43
44### Changed
45
46- `Promise` returned by `Fetcher#go()` no longer conceals errors
47
48
49### Fixed
50
51- ACF-1: fixed a bad assignment when handling the browserify streams
52
53
54## v1.0.1 - 2015-06-10
55
56
57### Changed
58
59- use [graceful-fs](https://www.npmjs.com/package/graceful-fs) instead of Node's
60 built-in [fs](https://nodejs.org/api/fs.html) just in case
61
62
63### Fixed
64
65- ACF-1: when [pipe](https://nodejs.org/api/stream.html#stream_readable_pipe_destination_options)ing
66 to an [fs.WriteStream](https://nodejs.org/api/fs.html#fs_class_fs_writestream),
67 wait until the writer's "finish" event instead of the reader's "end" event