Skip to content

Commit

Permalink
Merge pull request #415 from imbo/beta2.0
Browse files Browse the repository at this point in the history
2.0 beta
  • Loading branch information
rexxars committed Dec 2, 2015
2 parents 483b70f + 67885d0 commit c582139
Show file tree
Hide file tree
Showing 316 changed files with 11,828 additions and 4,112 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ composer.phar
vendor
docs/_build
.lintcache
*.log
public/.htaccess
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_install:
- sudo add-apt-repository -y ppa:moti-p/cc
- sudo apt-get update
- sudo apt-get -y --reinstall install imagemagick
- printf "\n" | pecl install apcu-beta
- printf "\n" | pecl install apcu
- printf "\n" | pecl install imagick-beta
before_script:
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
Expand All @@ -30,3 +30,7 @@ before_script:
script:
- ./vendor/bin/phpunit --verbose -c tests/phpunit/phpunit.xml.travis
- ./vendor/bin/behat --strict --profile no-cc --config tests/behat/behat.yml
after_failure:
- echo "Tests failed - httpd log follows"
- echo "================================"
- cat build/logs/httpd.log
22 changes: 22 additions & 0 deletions ChangeLog.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changelog for Imbo
==================

Imbo-2.0.0
----------
__yyyy-mm-dd__

* #402: Fix Strip-transformation not doing anything on newer Imagick versions (Espen Hovlandsdal)
* #402: Improve Contrast-transformation predictability (Espen Hovlandsdal)
* #400: New image transformation: Blur (Kristoffer Brabrand)
* #398: Add ability to configure HTTP cache headers (Espen Hovlandsdal)
* #391: Make Crop-transformation validate coordinates (Espen Hovlandsdal)
* #390: Fix image variation + crop transformation bug (Espen Hovlandsdal)
* #386: Fix CORS wildcard-issue when client did not send `Origin`-header (Espen Hovlandsdal)
* #381: New image transformation: DrawPois (points of interest) (Espen Hovlandsdal)
* #376: Add config option to alter protocol used for authentication signatures (Espen Hovlandsdal)
* #367: Fix bug where special characters could break metadata XML response (Kristoffer Brabrand)
* #366: Fix border transformation + alpha channel bug (Espen Hovlandsdal)
* #363: Add pluggable image identifier generation (Espen Hovlandsdal)
* #357: Add public key generation CLI-command (Espen Hovlandsdal)
* #351: New image transformation: SmartSize (Kristoffer Brabrand, Espen Hovlandsdal)
* #348: Add global images endpoint (Kristoffer Brabrand)
* #347: Use UUID instead of MD5 for image identifiers (Espen Hovlandsdal)
* #328: New access control implementation (Espen Hovlandsdal, Kristoffer Brabrand)

Imbo-1.2.5
----------
__2015-08-14__
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2011-2014, Christer Edvartsen <cogo@starzinger.net>
Copyright (c) 2011-2015, Christer Edvartsen <cogo@starzinger.net>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Imbo is an image "server" that can be used to add/get/delete images using a REST
End-user docs can be found [here](http://docs.imbo-project.org/en/latest/).

## License
Copyright (c) 2011-2014, Christer Edvartsen <cogo@starzinger.net>
Copyright (c) 2011-2015, Christer Edvartsen <cogo@starzinger.net>

Licensed under the MIT License

Expand Down
4 changes: 2 additions & 2 deletions bin/imbo
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
chdir(dirname(__DIR__));

$autoloaderFound = false;
$paths = array('../../autoload.php', 'vendor/autoload.php');
$paths = ['../../autoload.php', 'vendor/autoload.php'];

// Include the autoloader generated by composer
foreach ($paths as $path) {
Expand All @@ -24,7 +24,7 @@ foreach ($paths as $path) {
}

if (!$autoloaderFound) {
echo "Could not find autoload.php" . PHP_EOL;
echo 'Could not find autoload.php' . PHP_EOL;
die(1);
}

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"ext-imagick": ">=3.0.1",
"symfony/http-foundation": "~2.7.3",
"symfony/event-dispatcher": "~2.7.3",
"symfony/console": "~2.7.3"
"symfony/console": "~2.7.3",
"ramsey/uuid": "~3.0.0"
},
"require-dev": {
"mikey179/vfsStream": "~1.5.0",
Expand Down

0 comments on commit c582139

Please sign in to comment.