summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)AuthorFilesLines
2018-11-02Change Multi to use separate setting for db_login and to use UNIX socket for ↵alto1-0/+1
Postgres Update README with basic information on Multi (cherry picked from commit 01188a82ab736a8975c73ac5ec12621426bf6bf2)
2018-10-31VNEdit: Remove "import cast" functionalityYorhel1-35/+0
https://vndb.org/t950.521
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-28Add JS-less NSFW screenshot togglezx142-19/+3
(cherry picked from commit 6446d7d185543440b97be009fdf2a1f0c379b26f)
2018-10-28Fix titles with commas getting truncated in VN relation tablealto1-1/+3
2018-10-23Add JS-less NSFW togglezx142-21/+18
2018-10-06Add 960x640 resolutionYorhel1-0/+1
https://vndb.org/t950.514
2018-10-02DB: Convert resolution into an enumYorhel1-19/+19
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-09-29Add default spoiler level to traits and use it on character editYorhel2-1/+2
https://vndb.org/t11296
2018-08-12Add 1600x900 resolutionYorhel1-0/+1
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-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-05-25Add uncensored flag to release entriesYorhel2-2/+10
As discussed in https://vndb.org/t10665
2018-03-04Allow decimal voting from /u+/votesYorhel1-16/+46
2018-02-08Store d+ pages in the DB as versioned entries + use markdownYorhel18-3419/+19
This touches a bunch of things: - Adds a new first-class database entry type - Removes the d+.+.+ BBCode link syntax, adds a new d+#+ and d+#+.+ link syntax (references have been updated where possible) - Adds a new dependency on Text::MultiMarkdown
2018-02-07Use newline separation for producer aliasesYorhel2-2/+6
For consistency with the VN & character alias fields. It's also less ambiguous, as there are a few aliases that contain commas.
2018-01-12Truly unique names for release icons and pushed those classes to the ↵TigerShark1-5/+7
inmediate container <abbr>.
2018-01-06d7 updateYorhel1-0/+2
2018-01-06Release icons: Use disc image for UMDYorhel1-1/+1
https://vndb.org/t9992.21
2018-01-05Release icons: Let's use cartridge icon for 'other' after allYorhel1-1/+1
This was already the case in the original patch, I broke it with the code style changes.
2018-01-05d10: Change tag guideline as per t10091Yorhel1-1/+1
2018-01-05Code style changes to release icons codeYorhel1-20/+18
These are just style consistency changes, functionally equivalent.
2018-01-05Various fixes to the release icons featureYorhel2-2/+3
It's been a while since I had static/f/ in git, so I had to adjust .gitignore a bit. The CSS changes are purely opinion, but it does integrate better with the existing layout. Everything else are bug fixes.
2018-01-05Add info icons for each release in vn page.TigerShark2-0/+13
2017-12-09Add Docker configYorhel1-1/+1
2017-12-06Add instructions for running VNDB as standalone web serverYorhel1-3/+3
2017-11-26Add language: Bulgarian and Platforms: Nintendo Switch & Wii UYorhel4-0/+3
2017-11-25Remove broken SQL functions from Makefile + add install instructionsYorhel1-2/+2
2017-11-17Fix typo in d11Yorhel1-3/+3
2017-08-14Some minor doc changesYorhel2-6/+15
2017-08-14API: Some additions to the "get *list" commandsYorhel1-10/+55
2017-06-21API: Various additionsYorhel1-3/+51
2017-05-28Fix Saturn icon sizeYorhel1-0/+0
2017-05-22API: Add some flags to query staff/seiyuu dataYorhel1-0/+56
2017-04-30d13: Add ShareX guideYorhel1-2/+22
Draft text & screenshots provided by https://vndb.org/u118842
2017-04-28API: Made a start on "get staff" supportYorhel1-0/+141
2017-04-28Replace d13 image links with self-hosted onesYorhel1-3/+3
Yes I abused the screenshot-uploading trick rather than storing those images on the git repo. I'd rather not have many images in git.
2017-04-21Add 1366x768 resolutionYorhel1-0/+1
https://vndb.org/t950.317
2017-03-26d5: Fix spelling errorYorhel1-1/+1
Reported at https://vndb.org/t2520.217
2017-03-03Add date filters to VN searchYorhel1-1/+4
2017-03-03API: Add traits filter to get characterYorhel1-0/+19
2017-02-20APIDump: Add votes2.gz with dates, update sizes in d14Yorhel1-8/+8
2017-01-29Fix HTML error on d11Yorhel1-1/+2
2017-01-19Add Open Graph tags for the main page and vrspcflan1-0/+1
2017-01-19Change the default DB username to "vndb_site" to match changes from 6a04b32flan1-1/+1
2016-12-04API: Add username filter to "get user" + d11 updatesYorhel1-61/+19
2016-11-27SQL: Use separate role for the website + disallow access to user dataYorhel1-0/+1
Previously the website was connected to the database with a "database owner" user, which has far too many permissions. Now there's a special vndb_site user with only the necessary permissions. The primary reason to do this is to decrease the impact if the site process is compromised. E.g. it's now no longer possible to delete or modify old entry revisions. An attacker can still do a lot of damage, however. Additionally (and this was the main reason to implement this change in the first place), the user sessions, passwords and email data is now not easily accessible anymore. Hopefully, the new user management abstractions will prevent email and password dumps in case of an SQL injection or RCE vulnerability in the site code. Of course, this only works if my implementation is fully correct and there's no privilige escalation vulnerability somewhere. Furthermore, changing your password now invalidates any existing sessions, and the password reset function is disabled for 'usermods' (because usermods can list email addresses from the database, and the password reset function could still allow an attacker to gain access to anyone's account). I also changed the format of the password reset tokens, as they totally don't need to be salted.
2016-10-16Doc update + IRC bot language fixYorhel1-1/+7
2016-09-11API: Add VN relations "official" fieldYorhel1-1/+3
2016-09-11Fix http->https in d14 + increase IRC quote spam intervalYorhel1-3/+3