Skip to content

Commit

Permalink
Merge pull request #78 from zurdi15/develop
Browse files Browse the repository at this point in the history
merge develop into master
  • Loading branch information
zurdi15 authored Mar 29, 2023
2 parents 5e2c6f8 + 7b2becf commit b1f765b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# v1.4 (_29-03-2023_)

## Added
- Now you can use your games tags (like (USA) or (rev-1)) to filter in the gallery

# v1.4 (_29-03-2023_)

## Added
- Gamecube support [platforms support](https://github.com/zurdi15/romm#platforms-support)
- PC support added (only for single file games like zip, iso, etc) [platforms support](https://github.com/zurdi15/romm#platforms-support)
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/RomsGallery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function normalizeString(s) {
function setFilter(filter) {
currentFilter.value = normalizeString(filter)
romsFiltered.value = roms.value.filter(rom => {
return normalizeString(rom.name).includes(currentFilter.value)
return normalizeString(rom.filename).includes(currentFilter.value)
})
}
function downloadingRom(rom) {
Expand Down

0 comments on commit b1f765b

Please sign in to comment.