Skip to content

Commit

Permalink
Merge pull request #124 from uNiversaI/master
Browse files Browse the repository at this point in the history
fix  issue #123
  • Loading branch information
nomad2k committed Jan 24, 2015
2 parents c7c2d9c + 1ab9fd5 commit be8206a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="webinterface.WIMM"
version="4.1.14"
version="4.1.15"
name="WIMM"
provider-name="slash | Zernable | MokuJinJin | nwtn | fyfe | criticalfiction">
<requires>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# WIMM Change log

4.1.15
- Fix genre rules operator

4.1.14
- Fix music genre field not being split correctly (Issue #120)
- Rename minor id fields now correctly show WIMM
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/common/genre.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Ext.ns('WIMM.video');
method: readMethod,
params: {
properties: ['genre'],
filter: { field: 'genre', operator: 'contains', value: oldGenre }
filter: { field: 'genre', operator: 'is', value: oldGenre }
},
id: 'WIMM'
};
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/common/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* along with WIMM. If not, see <http://www.gnu.org/licenses/>.
*/

var myVersion = '4.1.14';
var myVersion = '4.1.15';

/**
* Protect window.console method calls, e.g. console is not defined on IE
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/movies/moviegenre.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var movieGrid = new Ext.grid.GridPanel({
select: function(combo, record, index) {
storeMovie.load({ params: { filter: {
field: 'genre',
operator: 'contains',
operator: 'is',
value: record.data.label
} } });
}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/movies/movieset.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Ext.ns('WIMM.video');
jsonrpc: '2.0',
method: 'VideoLibrary.GetMovies',
params: {
filter: { field: 'set', operator: 'contains', value: oldMovieSet }
filter: { field: 'set', operator: 'is', value: oldMovieSet }
},
id: 'WIMM'
};
Expand Down

0 comments on commit be8206a

Please sign in to comment.