You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(30) |
Aug
|
Sep
(3) |
Oct
(3) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
(7) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2010 |
Jan
(1) |
Feb
(41) |
Mar
(15) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(79) |
Jun
(11) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2013 |
Jan
|
Feb
(1) |
Mar
|
Apr
(3) |
May
(13) |
Jun
|
Jul
|
Aug
(6) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
(6) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
(3) |
25
|
26
|
27
(1) |
28
|
29
|
30
|
31
|
|
From: <jso...@li...> - 2010-12-27 17:45:29
|
Revision: 156 http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=156&view=rev Author: blep Date: 2010-12-27 17:45:23 +0000 (Mon, 27 Dec 2010) Log Message: ----------- Major rework of 64 integer support: 64 bits integer are only returned when explicitly request via Json::Value::asInt64(), unlike previous implementation where Json::Value::asInt() returned a 64 bits integer. This eases porting portable code and does not break compatibility with the previous release. Json::Value::asLargestInt() has also be added to ease writing portable code independent of 64 bits integer support. It is typically used to implement writers. Modified Paths: -------------- trunk/jsoncpp/NEWS.txt trunk/jsoncpp/include/json/config.h trunk/jsoncpp/include/json/value.h trunk/jsoncpp/include/json/writer.h trunk/jsoncpp/src/jsontestrunner/main.cpp trunk/jsoncpp/src/lib_json/json_reader.cpp trunk/jsoncpp/src/lib_json/json_tool.h trunk/jsoncpp/src/lib_json/json_value.cpp trunk/jsoncpp/src/lib_json/json_writer.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jso...@li...> - 2010-12-24 19:58:29
|
Revision: 155 http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=155&view=rev Author: blep Date: 2010-12-24 19:58:23 +0000 (Fri, 24 Dec 2010) Log Message: ----------- Fixed some documentation issues pointed out by Daniel. Modified Paths: -------------- trunk/jsoncpp/doc/header.html trunk/jsoncpp/doc/jsoncpp.dox This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jso...@li...> - 2010-12-24 19:30:12
|
Revision: 154 http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=154&view=rev Author: blep Date: 2010-12-24 19:30:06 +0000 (Fri, 24 Dec 2010) Log Message: ----------- Added float Json::Value::asFloat() to obtain a floating point value as a float (avoid lost of precision warning caused by used of asDouble() to initialize a float). Modified Paths: -------------- trunk/jsoncpp/NEWS.txt trunk/jsoncpp/include/json/value.h trunk/jsoncpp/src/lib_json/json_value.cpp trunk/jsoncpp/src/test_lib_json/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jso...@li...> - 2010-12-24 12:47:20
|
Revision: 153 http://jsoncpp.svn.sourceforge.net/jsoncpp/?rev=153&view=rev Author: blep Date: 2010-12-24 12:47:14 +0000 (Fri, 24 Dec 2010) Log Message: ----------- - Array index can be passed as int to operator[], allowing use of literal: Json::Value array; array.append( 1234 ); int value = array[0].asInt(); // did not compile previously Modified Paths: -------------- trunk/jsoncpp/NEWS.txt trunk/jsoncpp/include/json/value.h trunk/jsoncpp/src/jsontestrunner/main.cpp trunk/jsoncpp/src/lib_json/json_value.cpp trunk/jsoncpp/src/test_lib_json/jsontest.h trunk/jsoncpp/src/test_lib_json/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |