summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-06-21 12:49:51 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-06-21 12:49:51 +0000
commit43adf6c1681cf62f2cfbfa90d75053a1d7da5d23 (patch)
tree0b663579038bfb1a702d939a4048008e0a0fd17c /lib
parent5fae2ac0d0a85712bcf0611c99c5f7cf39421dc5 (diff)
Time and Place categories are now boolean, and small vnpage cleanup
git-svn-id: svn://vndb.org/vndb@32 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog1
-rw-r--r--lib/global.pl6
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 62785e5c..cadb5a32 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -18,6 +18,7 @@ TODO:
file to override all options - not available on SVN
- Dynamic loading, several bugfixes, and code cleanup for Multi
- Added 'School Life' and 'Protagonist' categories
+ - Time and Place categories are now boolean
- Added GTIN field to releases
- Added links to encubed and renai.us
diff --git a/lib/global.pl b/lib/global.pl
index 20e9f005..8ce803d3 100644
--- a/lib/global.pl
+++ b/lib/global.pl
@@ -118,17 +118,17 @@ our $CAT = {
sj => 'Shoujo Ai',
sn => 'Shounen Ai',
} ],
- t => [ 'Time', {
+ t => [ 'Time', { # 0..1
fu => 'Future',
pa => 'Past',
pr => 'Present',
} ],
- l => [ 'Place', {
+ l => [ 'Place', { # 0..1
ea => 'Earth',
fa => "Fant\x{200B}asy world",
sp => 'Space',
} ],
- h => [ 'Protagonist', { # 0..1
+ h => [ 'Protagonist', { # 0..1
fa => 'Male',
fe => "Fem\x{200B}ale",
} ],