X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2FNokia61%2FListItem.pm;h=d5b717a43a8b92d1e6dbab8d6079d620be1195ac;hp=6ce277b9fef340daae1c9a096738bad0b1fb7ce6;hb=b4ddfba5b53a40e47285f8851e1ff7bb5419909b;hpb=d33b43a5557132098003a232b6c209abd3e4d135 diff --git a/project/Nokia61/ListItem.pm b/project/Nokia61/ListItem.pm index 6ce277b..d5b717a 100755 --- a/project/Nokia61/ListItem.pm +++ b/project/Nokia61/ListItem.pm @@ -18,29 +18,33 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -package My::Project::Nokia61; +package project::Nokia61::ListItem; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway -use vars qw($VERSION $CVS_ID); -$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; -$CVS_ID=q$Id$; +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; use strict; use warnings; +use My::Web; -our %ListItem=( - "name"=>"Nokia Game "Rotation"", - "priority"=>7, + +our @ListItem=( + "name"=>"Rotation", + "platform"=>"web", + "priority"=>480, + "icon"=>"Nokia61-icon.jpeg", "download"=>"Nokia61.c", - "summary"=>"Logical game solver", + "summary"=>"Nokia logical game "Rotation" solver", "license"=>"PD", - "maintenance"=>"finished", + "maintenance"=>"ready", "language"=>"C, PHP", - "description"=>"" - .'

At least Nokia 3210 offers game Rotation, this little software will' - .' tell you the optimal solution steps for the given game board situation.' - .' The goal is to get board with' - .' 1 2 3, 4 5 6, 7 8 9,' - .' in rows.

' + "description"=><<"HERE", +

At least Nokia 3210 offers game Rotation, this little software will +tell you the optimal solution steps for the given game board situation. +The goal is to get board with +1 2 3, 4 5 6, 7 8 9, +in rows.

+HERE ); 1;