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
(3) |
|
20
|
21
|
22
|
23
(3) |
24
|
25
|
26
|
|
27
|
28
|
29
|
30
|
|
|
|
|
From: <jso...@li...> - 2014-04-23 23:58:01
|
Revision: 282
http://sourceforge.net/p/jsoncpp/code/282
Author: aaronjacobs
Date: 2014-04-23 23:57:59 +0000 (Wed, 23 Apr 2014)
Log Message:
-----------
Fixed a test that causes a crash when exceptions are disabled.
While I was at it, corrected whitespace too.
Modified Paths:
--------------
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...> - 2014-04-23 23:41:14
|
Revision: 281
http://sourceforge.net/p/jsoncpp/code/281
Author: aaronjacobs
Date: 2014-04-23 23:41:12 +0000 (Wed, 23 Apr 2014)
Log Message:
-----------
Added structured error reporting to Reader.
This allows applications for interactively viewing or editing JSON to do
a better job of highlighting errors. Also added offset accessors to
Value, offering the same sort of functionality even for non-errors.
Thanks to Zach Clifford (zac...@go...) for the patch.
Modified Paths:
--------------
trunk/jsoncpp/include/json/reader.h
trunk/jsoncpp/include/json/value.h
trunk/jsoncpp/src/lib_json/json_reader.cpp
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...> - 2014-04-23 23:28:27
|
Revision: 280
http://sourceforge.net/p/jsoncpp/code/280
Author: aaronjacobs
Date: 2014-04-23 23:28:23 +0000 (Wed, 23 Apr 2014)
Log Message:
-----------
Added features that allow the reader to accept common non-standard JSON.
This is a version of patch #17, from Clay Wood:
http://sourceforge.net/p/jsoncpp/patches/17/
Modified Paths:
--------------
trunk/jsoncpp/include/json/features.h
trunk/jsoncpp/include/json/reader.h
trunk/jsoncpp/src/lib_json/json_reader.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2014-04-19 21:41:06
|
Revision: 279
http://sourceforge.net/p/jsoncpp/code/279
Author: christopherdunn
Date: 2014-04-19 21:41:03 +0000 (Sat, 19 Apr 2014)
Log Message:
-----------
vim modeline
http://vim.wikia.com/wiki/Modeline_magic
Modified Paths:
--------------
trunk/jsoncpp/src/jsontestrunner/main.cpp
trunk/jsoncpp/src/lib_json/json_batchallocator.h
trunk/jsoncpp/src/lib_json/json_internalarray.inl
trunk/jsoncpp/src/lib_json/json_internalmap.inl
trunk/jsoncpp/src/lib_json/json_reader.cpp
trunk/jsoncpp/src/lib_json/json_value.cpp
trunk/jsoncpp/src/lib_json/json_valueiterator.inl
trunk/jsoncpp/src/lib_json/json_writer.cpp
trunk/jsoncpp/src/test_lib_json/jsontest.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.
|
|
From: <jso...@li...> - 2014-04-19 21:19:27
|
Revision: 278
http://sourceforge.net/p/jsoncpp/code/278
Author: christopherdunn
Date: 2014-04-19 21:19:24 +0000 (Sat, 19 Apr 2014)
Log Message:
-----------
Comment reading/write improvements
This patch fixes some aspects of reading and writing comments:
- Multiple C++-style comments before a Json value had extra newlines appended to them. This patch removes the addition of those newlines.
- Comments written before Json values in the StyledWriter were not indented to match the indentation level of the value. This patch adds indentation to comments.
- Fixed inconsistency in newlines following C- and C++-style comments being saved as part of the comment. All newlines at the end of a comment are now removed.
- Added an additional test of comments.
https://sourceforge.net/p/jsoncpp/patches/25/
Modified Paths:
--------------
trunk/jsoncpp/src/lib_json/json_reader.cpp
trunk/jsoncpp/src/lib_json/json_writer.cpp
Added Paths:
-----------
trunk/jsoncpp/test/data/test_comment_02.expected
trunk/jsoncpp/test/data/test_comment_02.json
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jso...@li...> - 2014-04-19 06:37:24
|
Revision: 277
http://sourceforge.net/p/jsoncpp/code/277
Author: christopherdunn
Date: 2014-04-19 06:37:23 +0000 (Sat, 19 Apr 2014)
Log Message:
-----------
JSON_ASSERT -> JSON_ASSERT_MESSAGE
This way, assertions can produce exceptions.
https://sourceforge.net/p/jsoncpp/bugs/67/
Modified Paths:
--------------
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.
|