Skip to content

Commit

Permalink
PHProjekt 6.0.5
Browse files Browse the repository at this point in the history
PHProjekt 6.0.5 Codename Apinae.

Signed-off-by: Gustavo Solt <gustavo.solt@mayflower.de>
  • Loading branch information
Gustavo Solt committed Nov 27, 2010
1 parent 9da9ff0 commit 967d9e2
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 5 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG
@@ -1,3 +1,25 @@
6.0.5
Fixed
- Fix bug where not possible to upload files correctly. (PHPROJEKT-26)
- Fix module designer for works ok in Chorme 7. (PHPROJEKT-72)

Improvements
- Allow the upload field into sub-modules. (PHPROJEKT-45)
- Improve download link of the upload field, for not open a new tab in some browsers.
- Reduce the possibility of collision in the names of uploaded files (md5 string). (PHPROJEKT-62)
- New Upload Helper:
- Improve the upload/download functions.
- Move the action functions into the Indexcontroller.
- Remove the FileController.
- Improve the permissions for folders and files in the setup. (PHPROJEKT-74)
- Add a hint about the requirements of cookies in the setup. (PHPROJEKT-75)
- Add a check for "Reject start dates that are after end dates" in Todo and Project module. (PHPROJEKT-76)
- Define getType as required function for Phprojekt_ModelInformation_Interface.
- Update getModelObject function for use the new functions getModelName and getModuleName.
- Improve Minutes and MinutesItem code:
- Use new functions getModelName and getModuleName from the IndexController.
- Remove init() and use setParent().

6.0.4
Fixed
- Fix filter query when search for users (PHPROJEKT-25).
Expand Down
2 changes: 1 addition & 1 deletion phprojekt/VERSION
@@ -1 +1 @@
PHProjekt 6.0.5-dev
PHProjekt 6.0.5
4 changes: 2 additions & 2 deletions phprojekt/library/Phprojekt.php
Expand Up @@ -55,7 +55,7 @@ class Phprojekt
/**
* The extra part of the version number.
*/
const VERSION_EXTRA = 'dev';
const VERSION_EXTRA = null;

/**
* Name of the Registry for current project.
Expand All @@ -65,7 +65,7 @@ class Phprojekt
/**
* Copyright.
*/
const COPYRIGHT = 'PHProjekt 6.0.5-dev - Copyright (c) 2010 Mayflower GmbH';
const COPYRIGHT = 'PHProjekt 6.0.5 - Copyright (c) 2010 Mayflower GmbH';

/**
* Default Max size in bytes that is allowed to be uploaded per file.
Expand Down
Expand Up @@ -282,7 +282,7 @@ public function testJsonGetConfigurationsAction()
$this->setRequestUrl('Project/index/jsonGetConfigurations');
$response = $this->getResponse();
$this->assertContains('"name":"supportAddress","value":"gustavo.solt@mayflower.de"},{"name":"phprojektVersion"'
. ',"value":"6.0.5-dev"},{"name":"currentUserId","value":1},{"name":"csrfToken","value"', $response);
. ',"value":"6.0.5"},{"name":"currentUserId","value":1},{"name":"csrfToken","value"', $response);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion phprojekt/tests/UnitTests/Phprojekt/PhprojektTest.php
Expand Up @@ -42,7 +42,7 @@ class Phprojekt_PhprojektTest extends PHPUnit_Framework_TestCase
{
public function testGetVersion()
{
$this->assertEquals("6.0.5-dev", Phprojekt::getVersion());
$this->assertEquals("6.0.5", Phprojekt::getVersion());
}

public function testCompareVersion()
Expand Down

0 comments on commit 967d9e2

Please sign in to comment.