Skip to content

Commit

Permalink
Prepare the widget for version 2 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
vova07 authored Dec 4, 2017
1 parent 28afbfd commit c1d8b4a
Show file tree
Hide file tree
Showing 46 changed files with 1,774 additions and 897 deletions.
26 changes: 2 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
# General
# composer.lock
/build
/docs
/vendor

# Cache directories
Thumbs.db
*.DS_Store
*.empty

# PhpStorm project files
.idea

# Netbeans project files
nbproject

# Eclipse, zend studio, aptana or other eclipse like project files
.buildpath
.project
.settings


# Mac deployment helpers
switch
index
tests/_output/*
/phpunit.xml
/composer.lock
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ tools:
excluded_dirs: [vendor, tests]
php_cpd:
enabled: true
excluded_dirs: [vendor, tests]
excluded_dirs: [vendor, tests]
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ php:

install:
- composer self-update
- composer global require "fxp/composer-asset-plugin"
- composer install

before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev

script:
- phpunit --coverage-text --coverage-clover=coverage.clover
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover

after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
126 changes: 16 additions & 110 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,112 +1,18 @@
# Changelog

All Notable changes to `yii2-imperavi-widget` will be documented in this file.

## 1.2.10

### Changed
- Imperavi redactor updated to 10.2.5. (vova07)

## 1.2.9

### Changed
- Imperavi redactor updated to 10.2.3. (vova07)

## 1.2.8

### Changed
- Imperavi redactor updated to 10.2.2. (vova07)

## 1.2.7

### Changed
- Imperavi redactor updated to 10.2.0. (vova07)

## 1.2.6

### Changed
- Imperavi redactor updated to 10.1.3. (vova07)

## 1.2.5

### Fixed
- FileHelper::findFiles() issue on `OS Windows`. (vova07)

## 1.2.4

### Fixed
- Issue #39. (vova07)
- Issue #35. (vova07)
- Issue #19. (vova07)

## 1.2.3

### Changed
- Imperavi redactor updated to 10.1.1. (vova07)

## 1.2.2

### Changed
- Imperavi redactor updated to 10.0.9. (vova07)

## 1.2.1

### Changed
- Updated `README` files. (vova07)

### Added
- Code tests. (vova07)

### Fixed
- Issue #32. (vova07)
- Scrutinizer support. (vova07)

## 1.2.0

### Changed
- Extension skeleton. (vova07)

## 1.1.12
- Added human readable file size and fix `findFiles()` method in `FileHelper` class. (maxmirazh33)

## 1.1.11
- Added 'pt-BR' language. (vova07, lcidral)

## 1.1.10
- Imperavi redactor updated to 10.0.7 (vova07)

## 1.1.9
- Added 'DE' language. (vova07, tonwi)

## 1.1.8
- Fixed README file (vova07)

## 1.1.7
- Imperavi redactor updated to 10.0.6 (vova07)

## 1.1.6
- Fixed README file (vova07)

## 1.1.5
- Imperavi redactor updated to 10.0.5 (vova07)

## 1.1.4
- Fixes for use GetAction with fileManager plugin (maxmirazh33)

## 1.1.3
- Imperavi redactor updated to 10.0.3 (vova07)

## 1.1.2
- Imperavi redactor updated to 10.0.2 (vova07)

## 1.1.1
- Imperavi redactor updated to 10.0.1 (vova07)

## 1.1.0
- Imperavi redactor updated to 10.0.0 (vova07)

## 1.0.1
- Imperavi redactor updated to 9.2.5 (vova07)

## 1.0.0
- Initial release (vova07)
All notable changes to `yii2-imperavi-widget` will be documented in this file.

## 2.0.0

### Changed
- Fix numerous bugs and issue related with the redactor wrapper. (vova07)
- Rewrite tests and fix travis suites. (vova07)
- Replace `UploadAction` with `UploadFileAction`. (vova07)
- Replace `GetAction` with two new actions: `GetFilesActions` and `GetImagesActions`. (vova07)
- Add delete files functionality to `file manager`. (vova07)
- Add delete images functionality to `image manager`. (vova07)
- Add `translit` support to `UploadFileAction`. (vova07)
- Add better error messages for unsuccessful requests on images and files upload. (vova07)
- Remove `FileHelper` in favor of `BaseFilehelper`. (vova07)
- Add localization for `image manager` and `file manager`. (vova07)
- Add localization for `fullscreen` plugin. (vova07)
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/2amigos/:package_name).
We accept contributions via Pull Requests on [Github](https://github.com/vova07/yii2-imperavi-widget).


## Pull Requests
Expand All @@ -29,4 +29,4 @@ $ phpunit
```


**Happy coding**!
**Happy coding**!
Loading

0 comments on commit c1d8b4a

Please sign in to comment.