Skip to content

Commit a774daf

Browse files
committed
version bump to 0.2.0
1 parent eee8984 commit a774daf

File tree

6 files changed

+207
-22
lines changed

6 files changed

+207
-22
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
language: php
22
php:
3-
- 5.5
43
- 5.6
54
- 7
5+
- 7.1
66
- hhvm
7+
sudo: false
8+
dist: trusty
79
matrix:
810
allow_failures:
911
-
1012
php: hhvm
11-
-
12-
php: 5.5
1313
cache:
1414
directories:
1515
- $HOME/.composer/cache
@@ -19,7 +19,6 @@ before_install:
1919
- 'wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar'
2020
- './hidev.phar --version'
2121
- './hidev.phar travis/before_install'
22-
sudo: false
2322
install:
2423
- './hidev.phar travis/install'
2524
script:

CHANGELOG.md

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,43 @@
1-
hiqdev/yii2-x-editable changelog
2-
--------------------------------
1+
hiqdev/yii2-x-editable commits history
2+
--------------------------------------
33

4-
## 0.1.2 2016-04-27
4+
## [0.2.0] - 2017-04-13
55

6-
- Fixed version constraints in `composer.json`
6+
- Prevent remote formatting when value is not a sting ([@SilverFire], [@hiqsol])
7+
- Removed use of `hipanel\grid\DataColumn` in favour of `hiqdev\higrid\DataColumn` ([@hiqsol])
8+
- Updated `ComboXEditable.js` to follow Combo API changes ([@SilverFire], [@hiqsol])
9+
- Enhanced XEditableTrait in order to support custom selector and per-id initialisation ([@SilverFire])
710

8-
## 0.1.1 2016-04-27
11+
## [0.1.2] - 2016-04-27
912

10-
- Added tests and fixed build
11-
- Fixed errors
12-
- Added formatting with format option
13-
- Added ComboXEditable
14-
- Refactored
15-
- Fixed code styling: hideved and php-cs-fixed
16-
- Fixed minor issues
13+
- Fixed version constraints in `composer.json` ([@hiqsol])
1714

18-
## 0.1.0 2015-05-22
15+
## [0.1.1] - 2016-04-27
1916

20-
- Inited
17+
- Added tests and fixed build ([@hiqsol])
18+
- Fixed errors ([@SilverFire], [@hiqsol])
19+
- Added formatting with format option ([@hiqsol])
20+
- Added ComboXEditable ([@SilverFire], [@tafid])
21+
- Refactored ([@hiqsol])
22+
- Fixed code styling: hideved and php-cs-fixed ([@hiqsol])
23+
- Fixed minor issues ([@tafid])
2124

22-
## Development started 2015-05-22
25+
## [0.1.0] - 2015-05-22
2326

27+
- Inited ([@tafid], [@hiqsol])
28+
29+
## [Development started] - 2015-05-22
30+
31+
[@hiqsol]: https://github.com/hiqsol
32+
[sol@hiqdev.com]: https://github.com/hiqsol
33+
[@SilverFire]: https://github.com/SilverFire
34+
[d.naumenko.a@gmail.com]: https://github.com/SilverFire
35+
[@tafid]: https://github.com/tafid
36+
[andreyklochok@gmail.com]: https://github.com/tafid
37+
[@BladeRoot]: https://github.com/BladeRoot
38+
[bladeroot@gmail.com]: https://github.com/BladeRoot
39+
[Under development]: https://github.com/hiqdev/yii2-x-editable/compare/0.2.0...HEAD
40+
[0.1.2]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.1...0.1.2
41+
[0.1.1]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.0...0.1.1
42+
[0.1.0]: https://github.com/hiqdev/yii2-x-editable/releases/tag/0.1.0
43+
[0.2.0]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.2...0.2.0

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Yii2 XEditable
2-
==============
1+
# Yii2 XEditable
32

43
**X-editable extension for Yii2**
54

chkipper.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "hiqdev/yii2-x-editable",
3+
"authors": {
4+
"hiqsol": {
5+
"name": "Andrii Vasyliev",
6+
"role": "Project lead",
7+
"email": "sol@hiqdev.com",
8+
"github": "https://github.com/hiqsol",
9+
"homepage": "http://hipanel.com/"
10+
},
11+
"SilverFire": {
12+
"name": "Dmitry Naumenko",
13+
"role": "Lead backend developer",
14+
"email": "d.naumenko.a@gmail.com",
15+
"github": "https://github.com/SilverFire",
16+
"homepage": "http://silverfire.me/"
17+
},
18+
"tafid": {
19+
"name": "Andrey Klochok",
20+
"role": "Lead frontend developer",
21+
"email": "andreyklochok@gmail.com",
22+
"github": "https://github.com/tafid",
23+
"homepage": "http://hiqdev.com/"
24+
},
25+
"BladeRoot": {
26+
"name": "Yuriy Myronchuk",
27+
"role": "QA Lead",
28+
"email": "bladeroot@gmail.com",
29+
"github": "https://github.com/BladeRoot",
30+
"homepage": "http://hiqdev.com/"
31+
}
32+
}
33+
}

history.md

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
hiqdev/yii2-x-editable commits history
2+
--------------------------------------
3+
4+
## [0.2.0] - 2017-04-13
5+
6+
- Prevent remote formatting when value is not a sting
7+
- [eee8984] 2017-04-13 csfixed [@SilverFire]
8+
- [1aa6e95] 2017-04-12 Prevent remote formatting when value is not a sting [@SilverFire]
9+
- [4233389] 2017-02-20 csfixed [@hiqsol]
10+
- Removed use of `hipanel\grid\DataColumn` in favour of `hiqdev\higrid\DataColumn`
11+
- [b0709e3] 2017-02-20 removed use of `hipanel\grid\DataColumn` in favour of `hiqdev\higrid\DataColumn` [@hiqsol]
12+
- Updated `ComboXEditable.js` to follow Combo API changes
13+
- [d464f79] 2017-02-13 Updated ComboXEditable.js to follow Combo API changes [@SilverFire]
14+
- [0b070b4] 2016-07-18 fixing dependencies [@hiqsol]
15+
- [2647e45] 2016-07-18 fixing dependencies [@hiqsol]
16+
- [cc6cb3e] 2016-07-16 csfixed [@hiqsol]
17+
- Enhanced XEditableTrait in order to support custom selector and per-id initialisation
18+
- [d0fb2f3] 2016-07-15 Enhanced XEditableTrait in order to support custom selector [@SilverFire]
19+
- [92f50e6] 2016-07-01 Updated config [@SilverFire]
20+
- [2b9abc8] 2016-07-01 Added hisite config [@SilverFire]
21+
- [92ade41] 2016-05-13 Updated XEditableTrait to initialise Xeditable per-id instad of per-attribute [@SilverFire]
22+
23+
## [0.1.2] - 2016-04-27
24+
25+
- Fixed version constraints in `composer.json`
26+
- [c5e1d0b] 2016-04-27 fixed version constraints in `composer.json` [@hiqsol]
27+
28+
## [0.1.1] - 2016-04-27
29+
30+
- Added tests and fixed build
31+
- [198caa1] 2016-04-27 phpcsfixed [@hiqsol]
32+
- [5898986] 2016-04-27 added tests [@hiqsol]
33+
- [1b6700a] 2016-04-27 rehideved [@hiqsol]
34+
- Fixed errors
35+
- [c4eb91d] 2016-04-22 Fixed ComboXEditable.js::value2submit invalid conversion when this.isMultiple is set to false [@SilverFire]
36+
- [b7cbc38] 2016-02-11 XeditableColumn added word-break [@SilverFire]
37+
- [9a968cd] 2015-10-09 Fixed default displayValue generation. Not sure, whether it works good :) [@SilverFire]
38+
- [974e1c8] 2015-09-28 Default value of data-disaplay-value forced to be a string [@SilverFire]
39+
- [0d2c03e] 2015-09-25 Added RemoteFormat Xeditable (undocumented) [@SilverFire]
40+
- [f6cf4d5] 2015-09-25 XEditable widget - removed $format [@SilverFire]
41+
- [8d11baa] 2015-09-25 Trait: added data-display-value, data-value, linkOptions. Minor improvements [@SilverFire]
42+
- [f9f049b] 2015-09-25 Column uses widget instead of trait [@SilverFire]
43+
- [1075118] 2015-09-18 fixed hidev config [@hiqsol]
44+
- [fd374a0] 2015-09-18 fixed mistake [@hiqsol]
45+
- [6e089a4] 2015-09-03 Fixes [@SilverFire]
46+
- Added formatting with format option
47+
- [6ffa011] 2015-09-24 + formatting with format option [@hiqsol]
48+
- Added ComboXEditable
49+
- [3991509] 2015-09-02 ComboXEditable implemented [@SilverFire]
50+
- [8389750] 2015-08-31 Some changes [@tafid]
51+
- [046fd1f] 2015-08-28 Add auto detedt url from model scenario [@tafid]
52+
- [33bace8] 2015-08-26 XEditableColumn - removed manual value set [@SilverFire]
53+
- Refactored
54+
- [0a691c3] 2015-07-29 refactored [@hiqsol]
55+
- [603f881] 2015-07-22 simplified rendering: used parent::renderDataCellContent [@hiqsol]
56+
- Fixed code styling: hideved and php-cs-fixed
57+
- [3921ed1] 2015-07-22 php-cs-fixed [@hiqsol]
58+
- [f1806fe] 2015-07-22 moved to src, rehideved [@hiqsol]
59+
- [c806435] 2015-07-22 * using raw format for data cell content [@hiqsol]
60+
- Fixed minor issues
61+
- [a8fc857] 2015-07-17 Add compatibility work XEditableColumn with Collection [@tafid]
62+
- [57793e9] 2015-07-09 Change submited params [@tafid]
63+
- [a29aef8] 2015-06-03 Mode fix [@tafid]
64+
- [5bdefb4] 2015-05-27 Some fixes [@tafid]
65+
- [39beb32] 2015-05-27 Test version [@tafid]
66+
67+
## [0.1.0] - 2015-05-22
68+
69+
- Inited
70+
- [fc9cbd8] 2015-05-22 Folder rename [@tafid]
71+
- [dffd122] 2015-05-22 Inital commint [@tafid]
72+
- [fd6c34d] 2015-05-22 inited [@hiqsol]
73+
## Development started 2015-05-22
74+
75+
## [Development started] - 2015-05-22
76+
77+
[@hiqsol]: https://github.com/hiqsol
78+
[sol@hiqdev.com]: https://github.com/hiqsol
79+
[@SilverFire]: https://github.com/SilverFire
80+
[d.naumenko.a@gmail.com]: https://github.com/SilverFire
81+
[@tafid]: https://github.com/tafid
82+
[andreyklochok@gmail.com]: https://github.com/tafid
83+
[@BladeRoot]: https://github.com/BladeRoot
84+
[bladeroot@gmail.com]: https://github.com/BladeRoot
85+
[c5e1d0b]: https://github.com/hiqdev/yii2-x-editable/commit/c5e1d0b
86+
[198caa1]: https://github.com/hiqdev/yii2-x-editable/commit/198caa1
87+
[5898986]: https://github.com/hiqdev/yii2-x-editable/commit/5898986
88+
[1b6700a]: https://github.com/hiqdev/yii2-x-editable/commit/1b6700a
89+
[c4eb91d]: https://github.com/hiqdev/yii2-x-editable/commit/c4eb91d
90+
[b7cbc38]: https://github.com/hiqdev/yii2-x-editable/commit/b7cbc38
91+
[9a968cd]: https://github.com/hiqdev/yii2-x-editable/commit/9a968cd
92+
[974e1c8]: https://github.com/hiqdev/yii2-x-editable/commit/974e1c8
93+
[0d2c03e]: https://github.com/hiqdev/yii2-x-editable/commit/0d2c03e
94+
[f6cf4d5]: https://github.com/hiqdev/yii2-x-editable/commit/f6cf4d5
95+
[8d11baa]: https://github.com/hiqdev/yii2-x-editable/commit/8d11baa
96+
[f9f049b]: https://github.com/hiqdev/yii2-x-editable/commit/f9f049b
97+
[1075118]: https://github.com/hiqdev/yii2-x-editable/commit/1075118
98+
[fd374a0]: https://github.com/hiqdev/yii2-x-editable/commit/fd374a0
99+
[6e089a4]: https://github.com/hiqdev/yii2-x-editable/commit/6e089a4
100+
[6ffa011]: https://github.com/hiqdev/yii2-x-editable/commit/6ffa011
101+
[3991509]: https://github.com/hiqdev/yii2-x-editable/commit/3991509
102+
[8389750]: https://github.com/hiqdev/yii2-x-editable/commit/8389750
103+
[046fd1f]: https://github.com/hiqdev/yii2-x-editable/commit/046fd1f
104+
[33bace8]: https://github.com/hiqdev/yii2-x-editable/commit/33bace8
105+
[0a691c3]: https://github.com/hiqdev/yii2-x-editable/commit/0a691c3
106+
[603f881]: https://github.com/hiqdev/yii2-x-editable/commit/603f881
107+
[3921ed1]: https://github.com/hiqdev/yii2-x-editable/commit/3921ed1
108+
[f1806fe]: https://github.com/hiqdev/yii2-x-editable/commit/f1806fe
109+
[c806435]: https://github.com/hiqdev/yii2-x-editable/commit/c806435
110+
[a8fc857]: https://github.com/hiqdev/yii2-x-editable/commit/a8fc857
111+
[57793e9]: https://github.com/hiqdev/yii2-x-editable/commit/57793e9
112+
[a29aef8]: https://github.com/hiqdev/yii2-x-editable/commit/a29aef8
113+
[5bdefb4]: https://github.com/hiqdev/yii2-x-editable/commit/5bdefb4
114+
[39beb32]: https://github.com/hiqdev/yii2-x-editable/commit/39beb32
115+
[fc9cbd8]: https://github.com/hiqdev/yii2-x-editable/commit/fc9cbd8
116+
[dffd122]: https://github.com/hiqdev/yii2-x-editable/commit/dffd122
117+
[fd6c34d]: https://github.com/hiqdev/yii2-x-editable/commit/fd6c34d
118+
[1aa6e95]: https://github.com/hiqdev/yii2-x-editable/commit/1aa6e95
119+
[4233389]: https://github.com/hiqdev/yii2-x-editable/commit/4233389
120+
[b0709e3]: https://github.com/hiqdev/yii2-x-editable/commit/b0709e3
121+
[d464f79]: https://github.com/hiqdev/yii2-x-editable/commit/d464f79
122+
[0b070b4]: https://github.com/hiqdev/yii2-x-editable/commit/0b070b4
123+
[2647e45]: https://github.com/hiqdev/yii2-x-editable/commit/2647e45
124+
[cc6cb3e]: https://github.com/hiqdev/yii2-x-editable/commit/cc6cb3e
125+
[d0fb2f3]: https://github.com/hiqdev/yii2-x-editable/commit/d0fb2f3
126+
[92f50e6]: https://github.com/hiqdev/yii2-x-editable/commit/92f50e6
127+
[2b9abc8]: https://github.com/hiqdev/yii2-x-editable/commit/2b9abc8
128+
[92ade41]: https://github.com/hiqdev/yii2-x-editable/commit/92ade41
129+
[Under development]: https://github.com/hiqdev/yii2-x-editable/compare/0.2.0...HEAD
130+
[0.1.2]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.1...0.1.2
131+
[0.1.1]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.0...0.1.1
132+
[0.1.0]: https://github.com/hiqdev/yii2-x-editable/releases/tag/0.1.0
133+
[0.2.0]: https://github.com/hiqdev/yii2-x-editable/compare/0.1.2...0.2.0
134+
[eee8984]: https://github.com/hiqdev/yii2-x-editable/commit/eee8984

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2 2016-04-27 15:41:35 +0000 c5e1d0b68817390a66ed07668d997067a7081051
1+
0.2.0 2017-04-13 12:38:44 +0300 eee8984729d819bbdd6b44d0408f32a2498e2867

0 commit comments

Comments
 (0)