Skip to content

Commit

Permalink
Update Changelog and some version targets for rebar
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Oct 30, 2014
1 parent cb5538b commit 1b6a409
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
* Added a testing framework that runs on the client and the server through
Nitrogen's postback system, ensuring that you can add automated testing which
will verify your interface in the browser of your choice.
* To go along with the testing framework are a number of initial tests to test
the core of the Nitrogen framework. These can be found in the src/tests
directory of the
[NitrogenProject.com](https://github.com/nitrogen/NitrogenProject.com.git)
repository.
* Significantly improve the comet/async reconnection system, including a
default notice at the top of the page, and the ability to specify manual
reconnection actions (if you so desire). This is done with
Expand Down Expand Up @@ -43,8 +48,17 @@
* Normalize the `next` attribute on input elements to use tab instead of enter,
and also add `next` to elements where it was previously missing
(@stuart-thackray)
* Added `role` attribute to remaining HTML5 elements. (@afrantisak)
* Added `#iframe{}` element. (@afrantisak)
* Update Bert.js and `#api{}` action to use binaries for proplist keys instead
of atoms inconjuction with the `safe` option for `term_to_binary` preventing
possible crash related to atom table limit.
* Added `distance` and `options` attributes to `#draggable` to minimize
accidental clicking and dragging when the cursor only moves a few pixels.
* Improved Unicode handling - messages between client and server will always
convert UTF8. Update Bert.js to support unicode strings.
* Improve template system to use binaries instead of strings, improving
template rendering performance.
* Allow validation to be applied to `#radiogroup` element.
* Added `unless_has_value` option to the `#is_required` validator, which links
multiple fields together, allowing options such as "Please enter either
Expand All @@ -56,6 +70,7 @@
into the textarea.
* Added `wf:to_qs/1` function for converting a proplist of elements into a
URL-encoded querystring.
* Added `wf:to_existing_atom/1`.
* Added `wf:json_encode/1` and `wf:json_decode/1`.
* Added `wf:download_as/1` convenience function for specifying the
`Content-Disposition` header so the client will download a page with
Expand All @@ -73,12 +88,15 @@
depends on are different.
* Updated `wf:html_encode` to be more flexible (preventing crashes when a user
accidentally puts tuples, records, or anything else in an element's `text`
field). Also added some tests for `html_encode`. (First of many?)
field). Also added some tests for `html_encode`.
* Added `body` to `#radio` and `#restful_submit` (@stuart-thackray)
* Added `button_class` to `#recaptcha{}` (@stuart-thackray)
* Added minified versions of included javascript versions as well as
non-minified
versions.
* Significantly reworked the `#textbox_autocomplete{}` element to simplify its
implementation (no more `{struct` tuples for mochijson compliance) and rework
the associated demo to NitrogenProject.com.
* Fixed rendering bug in `#upload` when it would start hidden by CSS.
* Fixed issue with POST size in Yaws (@vinoski)
* Updated to work with Erlang/OTP 17+
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

NITROGEN_VERSION=2.3.0-beta4
NITROGEN_VERSION=2.3.0-beta5

# If project name is not provided, just use 'myapp'
PROJECT?=myapp
Expand Down
6 changes: 3 additions & 3 deletions rel/overlay/rebar.config.src
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
{sync, ".*", {git, "git://github.com/rustyio/sync", {branch, master}}}

%% Get specific tagged version
%{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{tag, "v2.0.0-beta3"}}},
%{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{tag, "v2.0.0-beta4"}}},
%{nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {tag, "v0.2.1"}}},
%{nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.3.0-beta4"}}},
%{sync, ".*", {git, "git://github.com/rustyio/sync", {tag, "8c2a22a835c"}}}
%{nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.3.0-beta5"}}},
%{sync, ".*", {git, "git://github.com/rustyio/sync", {tag, "ed84f87c6335"}}}
]}.
2 changes: 1 addition & 1 deletion rel/reltool_base.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%% vim: ts=4 sw=4 et ft=erlang

{sys, [
{rel, "nitrogen", "2.2.2",
{rel, "nitrogen", "2.3.0-beta5",
[
kernel,
stdlib,
Expand Down

0 comments on commit 1b6a409

Please sign in to comment.