/[colormatch]/trunk/readme.txt
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/readme.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations)
Sat Oct 2 23:24:01 2004 UTC (19 years, 5 months ago) by dpavlin
File MIME type: text/plain
File size: 1451 byte(s)
imported original ColorMatch

1 ColorMatch Remix
2 version 1.5 - Feb 1, 2004.
3 Author: Noel "Twyst" Bundy - twyst@twysted.net
4 Official Site: http://color.twysted.net
5
6 installation:
7 -----------------------
8 1. Unzip the file into a directory on your webserver. Everything is set up relative to itself.
9 2. Open config.php in a text editor, and change the variables to the appropriate values.
10 3. Import the database.sql file into your database - it will create a new table, colorpick, and populate it with presets.
11 3a. Alternatively, you can manually create the database yourself, like so:
12
13 # Table structure for table `colorpick`
14 #
15
16 CREATE TABLE colorpick (
17 id int(11) NOT NULL auto_increment,
18 name varchar(128) NOT NULL default '',
19 basecol varchar(11) NOT NULL default '',
20 approved int(1) NOT NULL default '0',
21 PRIMARY KEY (id),
22 UNIQUE KEY basecol (basecol)
23 ) TYPE=MyISAM;
24
25 That's it!
26
27
28 changelog:
29 -----------------------
30 1.5:
31 Feb. 01, 2004: Added Sample Page rendering, cleaned up code, added config file. Wrote this file.
32 1.4:
33 Jan. 29, 2004: Added hex input, and plaintext output. (source updated)
34 1.3:
35 Nov. 12, 2003: Fixed Opera rendering - Without hacks! woo! Also, modified the theme saving - now it won't accept duplicates, and will auto-name anything that's using the default name.
36 1.2:
37 Nov. 12, 2003: Added Illustrator Output
38 1.1:
39 Nov. 07, 2003: Converted site to table-free design
40 1.0:
41 Nov. 06, 2003: Added colortheme support.

  ViewVC Help
Powered by ViewVC 1.1.26