summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-05-16Add password dictionary checkYorhel6-17/+219
This affects the following: - API login with a weak password is disallowed, affected users will have to change their password through the website to continue using the API. - Registration, password reset or password change forms require the new password to not be in the dictionary. - Attempting to log in to the website with a weak password will force-redirect to a password change form, allowing a new password to be set (using the weak-but-still-valid password as check).
2019-05-15Loosen restrictions on passwords a bitYorhel1-6/+6
Maximum length increased from 64 to 500 characters, and all Unicode characters are now allowed.
2018-12-06js/filters: Fix hidden tag/trait selection on tab switchYorhel1-0/+1
This code is a horrible piece of shit. I can't tell if I broke something else with this change. Testing seems to suggest it's okay. https://vndb.org/t2520.281
2018-12-06DB::Chars: Fix SQL operator precedence bug in search filterYorhel1-1/+1
This would cause other filters to sometimes be ignored, depending on the order in which the %where hash was being serialized. https://vndb.org/t11605.3 Broken in 8802eac4f.
2018-12-06Increase maximum post board lengthYorhel1-1/+1
2018-12-06Handler::Chars: Retain filters when switching initial characterYorhel1-1/+1
https://vndb.org/t11605
2018-11-07Fix "make" after removal of tagops.jsYorhel2-2/+0
2018-11-04Remove JS fallback for VN tagszx141-58/+0
2018-11-04JS-less tag visibility toggleszx143-38/+72
2018-11-02Change Multi to use separate setting for db_login and to use UNIX socket for ↵alto3-4/+16
Postgres Update README with basic information on Multi (cherry picked from commit 01188a82ab736a8975c73ac5ec12621426bf6bf2)
2018-10-31VNEdit: Remove "import cast" functionalityYorhel3-57/+1
https://vndb.org/t950.521
2018-10-29Add U+201C to search normalize removalalto1-1/+1
2018-10-28Ignore hidden-by-CSS NSFW images in next/prev in image viewerYorhel1-1/+1
Broken in 0687115f99 Fixes https://vndb.org/t2520.277 The JS check is based on https://makandracards.com/makandra/1339-check-whether-an-element-is-visible-or-hidden-with-javascript
2018-10-28Code style: Keep the HTML structure explicit and indentation correctYorhel1-5/+3
2018-10-28Add JS-less NSFW screenshot togglezx143-23/+12
(cherry picked from commit 6446d7d185543440b97be009fdf2a1f0c379b26f)
2018-10-28Fix titles with commas getting truncated in VN relation tablealto1-1/+3
2018-10-27VNPage: Hide vote dropdown when nothing has been released yetYorhel1-3/+9
This is a lazy implementation - it doesn't fully prevent voting on unreleased VNs, but it makes it much harder to do so by accident. Fixes #5
2018-10-25DB::Releases: Don't return duplicate releases in dbReleaseGet(vid => [...])Yorhel1-2/+1
In the special case where the releases of multiple VNs are requested, and those VNs have releases in common, dbReleaseGet() would return those releases multiple times. Using a JOIN in order to filter rows isn't safe if the join condition isn't unique - so use an "id IN(SELECT ..)" filter instead. (I found this while editing c15068 and noticing that some releases were listed twice in the edit form. Editing that entry without manually removing those duplicates would trigger an internal server error due to duplicate relations)
2018-10-23Add JS-less NSFW togglezx143-31/+35
2018-10-21Add curl to Dockerfile installationYorhel1-0/+1
Fixes #11
2018-10-07Handler::(Tags|Traits): Remember spoiler/filter settings when changing the otherYorhel2-3/+5
https://vndb.org/t950.517
2018-10-06Add 960x640 resolutionYorhel3-1/+3
https://vndb.org/t950.514
2018-10-04Fix release filter compatibility with multiple resolutionsYorhel1-3/+7
Compatability is hard...
2018-10-02Fix release filter compatibility handling on VN browserYorhel2-16/+13
filFetchDB() is not used for the release filter on the VN browsing interface, so I've moved the compatibility stuff into a separate filCompat() method that can be called from Handler::VNBrowse.
2018-10-02DB: Convert resolution into an enumYorhel9-43/+83
Been wanting to do this for a long time - using an integer index into an array that changes once in a while is way too fragile. Doubly so when said indices are also used in filters and URLs that can't be updated every time a new resolution is added.
2018-10-01Lower the average vote requirement for tag spoilers a bitYorhel2-2/+3
https://vndb.org/t950.512
2018-09-29Add default spoiler level to tags and use it in spoiler calculationYorhel5-17/+28
https://vndb.org/t11296.3 (And I forgot to add update_20180929.sql in the previous commit)
2018-09-29Add default spoiler level to traits and use it on character editYorhel6-9/+16
https://vndb.org/t11296
2018-08-12Add 1600x900 resolutionYorhel2-0/+4
https://vndb.org/t950.481 Also, the resolution should really be stored as an ENUM in the database, this integer thing is waay too fragile.
2018-08-01Also normalize Turkish ı in VN searchYorhel1-0/+1
This also handles the uppercase İ, as that is already converted to lowercase ı in an earlier step.
2018-07-14Some VN search normalization improvementsYorhel1-9/+9
https://vndb.org/t2520.265 - 270.
2018-07-07Handler::Traits: Fix link in duplicate trait creationYorhel1-1/+1
https://vndb.org/t950.456
2018-07-06CSS: Some minor fixes after font size increaseYorhel1-4/+4
2018-06-23CSS: Increase font size a bitYorhel1-33/+32
I'm sure this breaks styling of a few things, I'll adjust those as I find them.
2018-06-19Add uncensored iconYorhel2-0/+4
Icon created by fuukanou: https://vndb.org/t10665.49 File size reduced a bit further by removing metadata and using scour Closes #3
2018-06-13Multi::API: Add "get characters instances"Yorhel1-1/+17
2018-06-03Add development DB dump, remove old devdb, convert README to markdownYorhel9-553/+358
2018-05-25Add uncensored flag to release entriesYorhel7-15/+42
As discussed in https://vndb.org/t10665
2018-05-25Add privacy policy page - happy GDPR dayYorhel2-0/+5
2018-05-24DB::Chars: Ignore spaces when matching original namesYorhel1-1/+1
https://vndb.org/t950.432
2018-05-24Multi::APIDump: Fix boolifycation of "meta" in tags & traits dumpsYorhel1-2/+2
https://vndb.org/t2520.259
2018-05-12API: Make username in login command case-insensitiveYorhel1-0/+2
https://vndb.org/t3599.201
2018-05-03Docker: Update to Ubuntu Bionic + Postgres 10 !ACTION REQUIRED!Yorhel2-5/+5
If you don't really care about the data in your Docker's Postgres DB, then you can just update with: docker volume rm vndb-data docker volume create --name vndb-data docker build --pull --no-cache -t vndb . If you do want to keep your data, the process is roughly as follows: - Do a pg_dumpall from your current docker image to save the data. - Run the above commands to upgrade - Import the database in the new docker image (cherry picked from commit c278eec720b78624580f844d8289ddb575035138)
2018-04-12Handler::Chars: "Gender" -> "Sex"Yorhel1-2/+2
https://vndb.org/t10472
2018-04-08Char edit: Display linked VNs even if VN & releases have been deletedYorhel1-15/+6
There's still a glitch that, when a character is linked to a deleted release, the release selection will not show up in the form. But that's much easier to work around.
2018-03-27Add platform icons to VN screenshot listingYorhel1-0/+1
https://vndb.org/t950.416
2018-03-18Fix Docker init script for Mac + add some spacing around vndb-dev-server.pl ↵Yorhel2-10/+20
output
2018-03-10Handler::Tags: Remember sort option when changing spoilers in VN listingYorhel1-3/+3
Fixes https://vndb.org/t2520.250
2018-03-04Allow decimal voting from /u+/votesYorhel2-21/+52
2018-02-24d8 is backYorhel1-0/+1