forked from coderaiser/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
148 lines (84 loc) · 3.62 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
2013.03.01, Version v0.1.9
* Fixed bug with optimizing images: if in css was not
result css file do not saves.
* Fixed bug with executing callback.
* Fixed bug with saving result css file.
* Added merge flag.
* Changed the way messages printing.
* Updated clean-css to v0.9.1.
* Beutified hashes.json format.
* Removed caching data for improving speed.
* Added bin directory and minify cmd tool.
* Fixed bug with calling callback after saving
minified file.
* Updated css-b64-images to v0.22.
* Update clean-css to v0.10.0.
2012.12.12, Version v0.1.8
* Fixed bug with minimizing images to css file.
If css file not the last, minification was not doing.
* Changed versions of needed modules.
* Added module util.js.
* js, css and html modules refactored added module main.
* Fixed bug with saving to Cache.
* Fixed bug with hashes.json and min folder, from now
they stored in minify directory.
* Fixed bug with compression files with same name,
from min folder would be geted first name.
From now names in min folder is sha hashes form path
of file.
2012.10.01, Version v0.1.7
* Changed version of clean-css to 0.6.0.
* Little bit refactored and optimized.
* Fixed bug with saving optimized css file, wich
contains all css files with images, if option is
setted up.
* Changed version of base-64-images to 0.2.1.
* File check moved to module is-file-changed.
* Function doit moved to cloudcmd module.
2012.08.24, Version v0.1.6
* From now file hashes.json saving only if it was changed.
* Changed version of Uglify-js to 1.3.3.
* Added function checkextension and ability to read file from
hdd if it's already minified.
* Fixed bug with hashes.json, from now, if it exist, and min
folder is empty files would be minified and writed.
* Added parameters to callback function.
* Added ability auto minificate any neaded file.
2012.08.06, Version v0.1.5
* Added callback function.
* Added tests of js minification.
2012.07.27, Version v0.1.4
* Fixed bug with saving hashes.json, if css file was not last,
file would not writed.
* Fixed bug with saving all.min.css, if css file was not last,
all.min.css would not be writed and base64 function would not
be called.
* Fixed bug: all.min.css writed every time.
2012.07.19, Version v0.1.3
* Bug fixed: lastReaded file not always was realy last.
Because of asynchronous nature of node, there is no
sence to pass the lastReadedFile boolean parameter,
because we can not exactly say when file would be readed.
* Fixed bug with no dependencies installed, now code
doesn't changing, just saves the copy of it in min dir.
* Fixed bug with no css-b64-images module installed,
now all.min.css writes all the time, even not minimized
and whith no converted to base64 images, but still containing
all css files.
2012.07.14, Version v0.1.2
* In jsScripts, bug with function jsScripts fixed, from now
jsScripts taking 2 parameters: file names and neaded_cache bolean.
* Fixed bug in jsScripts and html functions in type convertions
(from string to array).
* Added hashes system, so if file was not changed small version woud not
created.
* 3 functions: jsScripts, cssStyles and html merged to one function optimize.
2012.07.11, Version v0.1.1
* In jsScripts, bug with function MoreProcessing_o.Func fixed,
now changed final_code savings, not losing.
* In jsScripts, fixed bug, when only one js-file can be post-processed, from now
every js-file could be post-processed.
* Added ability to save files in Minify Cache, without writing to disk.
* Changed the more processing agrument, no it passes with a file name and js
file name writing only once.
* Fixed bug with passing not array argument ot jsScripts function.