Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Initial frontend NeoForge support (#1233)
Browse files Browse the repository at this point in the history
* Revert "fix: featured version ui shifts (#1191)"

This reverts commit 3036f43.

* Revert "Fix CTRL clicking on versions issue (#1189)"

This reverts commit f4560bd.

* Add basic neoforge frontend support
  • Loading branch information
Prospector authored Jul 22, 2023
1 parent 34d63f3 commit 2c4ffcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composables/tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const useTags = () =>
'folia',
],
dataPackLoaders: ['datapack'],
modLoaders: ['forge', 'fabric', 'quilt', 'liteloader', 'modloader', 'rift'],
modLoaders: ['forge', 'fabric', 'quilt', 'liteloader', 'modloader', 'rift', 'neoforge'],
},
projectViewModes: ['list', 'grid', 'gallery'],
approvedStatuses: ['approved', 'archived', 'unlisted', 'private'],
Expand Down
3 changes: 2 additions & 1 deletion pages/search/[searchProjectType].vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@
!showAllLoaders &&
x.name !== 'forge' &&
x.name !== 'fabric' &&
x.name !== 'quilt'
x.name !== 'quilt' &&
x.name !== 'neoforge'
) {
return false
} else if (projectType.id === 'mod' && showAllLoaders) {
Expand Down

0 comments on commit 2c4ffcf

Please sign in to comment.