Skip to content

Commit 68fd906

Browse files
committedAug 21, 2013
update Changelog
1 parent 8fc5a07 commit 68fd906

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed
 

‎CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
Ushahidi 2.7.1 (Bug fix release) - 22/08/2013
2+
-------------------------------------
3+
4+
### Major Fixes
5+
6+
* Ushahidi should not upsize uploaded images, only downsize them[#1132](https://github.com/ushahidi/Ushahidi_Web/issues/1132)
7+
* Tagline running under report button[#1040](https://github.com/ushahidi/Ushahidi_Web/issues/1040)
8+
* Long, Lat order on mouse hover[#1092](https://github.com/ushahidi/Ushahidi_Web/issues/1092)
9+
* Bulk deletions coupled with single report deletion[#1093](https://github.com/ushahidi/Ushahidi_Web/issues/1093)
10+
* Unexpected Function error[#1123](https://github.com/ushahidi/Ushahidi_Web/issues/1123)
11+
* ‘Undefined’ on hover[#1067](https://github.com/ushahidi/Ushahidi_Web/issues/1067)
12+
* Wrong Content Type for RSS Feeds[#991](https://github.com/ushahidi/Ushahidi_Web/issues/991)
13+
* Twitter Credential Error[#1109](https://github.com/ushahidi/Ushahidi_Web/issues/1109)
14+
* Validation error on custom fields dropdown[#1113](https://github.com/ushahidi/Ushahidi_Web/issues/1113)
15+
* CSV Uploader[#1181](https://github.com/ushahidi/Ushahidi_Web/issues/1181)
16+
* Error with reports view page[#1176,1166,1178](https://github.com/ushahidi/Ushahidi_Web/issues/1176,https://github.com/ushahidi/Ushahidi_Web/issues/1166,https://github.com/ushahidi/Ushahidi_Web/issues/1178)
17+
* Login page issues[#1161](https://github.com/ushahidi/Ushahidi_Web/pull/1161)
18+
* Issues on Crowdmap[#1158](https://github.com/ushahidi/Ushahidi_Web/issues/1158)
19+
* Database table prefix installation[#1154](https://github.com/ushahidi/Ushahidi_Web/issues/1154)
20+
* Upload images .jpeg fails[#1136](https://github.com/ushahidi/Ushahidi_Web/issues/1136)
21+
* Database Error[#1149](https://github.com/ushahidi/Ushahidi_Web/issues/1149)
22+
* Category impact charts not loading[#1147](https://github.com/ushahidi/Ushahidi_Web/issues/1147)
23+
* Fatal error in stats page[#1134](https://github.com/ushahidi/Ushahidi_Web/pull/1134)
24+
* Twitter scheduler bugs[#1133](https://github.com/ushahidi/Ushahidi_Web/pull/1133)
25+
* CSV downloaded form platform throws errors on attempt to upload[#1140](https://github.com/ushahidi/Ushahidi_Web/issues/1140)
26+
* Default report time on reports always wrong[#1130](https://github.com/ushahidi/Ushahidi_Web/pull/1130)
27+
* Date picker issues in default theme[#1126](https://github.com/ushahidi/Ushahidi_Web/pull/1126)
28+
* Make nav helper more friendly and filterable for plugins and themes[#1125](https://github.com/ushahidi/Ushahidi_Web/pull/1125)
29+
* Cannot enable clean URLs from admin[#1124](https://github.com/ushahidi/Ushahidi_Web/pull/1124)
30+
* Unable to create new users, database error[#1122](https://github.com/ushahidi/Ushahidi_Web/pull/1122)
31+
* Incident location not on incident pages[#1121](https://github.com/ushahidi/Ushahidi_Web/issues/1122)
32+
* Table name escaping creates SQL error when there’s a table prefix[#1118](https://github.com/ushahidi/Ushahidi_Web/pull/1118)
33+
* Error adding report to a photo (Crowdmap Classic)[#1099](https://github.com/ushahidi/Ushahidi_Web/pull/1099)
34+
35+
136
Ushahidi 2.7 (Bamako) - 02/05/2013
237
-------------------------------------
338

‎application/config/version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* The Ushahidi Engine version
44
* Make sure to update the ushahidi_version in the settings table too!
55
*/
6-
$config['ushahidi_version'] = "2.7.1";
6+
$config['ushahidi_version'] = "2.7.1b";
77

88
/**
99
* The Ushahidi Engine DB revision number

‎sql/upgrade107-108.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
UPDATE `settings` SET `value` = 108 WHERE `key` = 'db_version';
33

44
-- UPDATE ushahidi_version
5-
UPDATE `settings` SET `value` = '2.7.1' WHERE `key` = 'ushahidi_version';
5+
UPDATE `settings` SET `value` = '2.7.1b' WHERE `key` = 'ushahidi_version';

‎sql/ushahidi.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1499,4 +1499,4 @@ CREATE TABLE IF NOT EXISTS `verified` (
14991499
*
15001500
*/
15011501
UPDATE `settings` SET `value` = '108' WHERE `key` = 'db_version';
1502-
UPDATE `settings` SET `value` = '2.7.1' WHERE `key`= 'ushahidi_version';
1502+
UPDATE `settings` SET `value` = '2.7.1b' WHERE `key`= 'ushahidi_version';

0 commit comments

Comments
 (0)
Please sign in to comment.