File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ v9.2] - 2017-05-19
4
+
5
+ - Use React component class for memoized views.
6
+ Significantly improves performance by avoiding unnecessary React VDOM
7
+ subtree comparison. This brings performance characteristics in line with
8
+ vanilla React and a single state atom and PureRenderMixin.
9
+ - Check for target.value. Fixes [ #119 ] ( https://github.com/alexmingoia/purescript-pux/issues/119 )
10
+
3
11
## [ v9.1] - 2017-05-02
4
12
5
13
- Send events returned by effects after the current execution context.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-pux" ,
3
3
"description" : " Build purely functional type-safe web apps with PureScript." ,
4
- "version" : " 9.1 .0" ,
4
+ "version" : " 9.2 .0" ,
5
5
"scripts" : {
6
6
"postinstall" : " bower install" ,
7
7
"build:clean" : " rm -rf dist output" ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ foldp (LoadMarkdown filepath) st =
72
72
buffer <- readFile path
73
73
md <- toString UTF8 buffer
74
74
let sliced = case st.route of
75
- Home _ -> " # Introduction \n\n Pux is" <> (fromMaybe " " $ last $ split (Pattern " Pux is" ) md)
75
+ Home _ -> " # Build purely functional type-safe web applications \n\n Pux is" <> (fromMaybe " " $ last $ split (Pattern " Pux is" ) md)
76
76
_ -> md
77
77
pure $ case (parseMd sliced) of
78
78
Left err -> Just $ FileNotFound filepath
You can’t perform that action at this time.
0 commit comments