Skip to content

Commit

Permalink
prepare 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kerphi committed Oct 26, 2012
1 parent a6ba80b commit 6c941d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ Here is an example of a basic communication between client and server:
* A server with:
* php >= 5.3.0 ([Slim framework](https://github.com/codeguy/Slim/blob/master/README.markdown#system-requirements) dependency)
* apache server with mod_rewrite and .htaccess enabled
* write access to the phpfreechat-2.0.3/server/data/ folder (777 or write permission for the web server)
* write access to the phpfreechat-2.0.4/server/data/ folder (777 or write permission for the web server)
* No database !

## Quick start installation

Include phpfreechat plugin in your html `<head>`:
```html
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.3/client/themes/default/jquery.phpfreechat.min.css" />
<script src="phpfreechat-2.0.3/client/jquery.phpfreechat.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.4/client/themes/default/jquery.phpfreechat.min.css" />
<script src="phpfreechat-2.0.4/client/jquery.phpfreechat.min.js" type="text/javascript"></script>
```

Add a piece of HTML in your `<body>` where you want the chat to be displayed:
Expand Down Expand Up @@ -86,11 +86,11 @@ phpfreechat is released with few themes. You can choose which one you want to us

To select the theme, you only have to change one line in your html `<head>`. To use the `default` theme:
```html
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.3/client/themes/default/jquery.phpfreechat.min.css" />
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.4/client/themes/default/jquery.phpfreechat.min.css" />
```
or this code for `carbon` theme:
```html
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.3/client/themes/carbon/jquery.phpfreechat.min.css" />
<link rel="stylesheet" type="text/css" href="phpfreechat-2.0.4/client/themes/carbon/jquery.phpfreechat.min.css" />
```

## Parameters client side
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phpfreechat",
"version": "2.0.3",
"version": "2.0.4",
"author": "Stéphane Gully <contact@phpfreechat.net>",
"homepage": "http://www.phpfreechat.net",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion server/config.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// phpfreechat version
$GLOBALS['pfc_version'] = '2.0.3';
$GLOBALS['pfc_version'] = '2.0.4';

// This is the time of inactivity to wait before considering a user is disconnected (in milliseconds).
// A user is inactive only if s/he closed his/her chat window. A user with an open chat window is not
Expand Down

0 comments on commit 6c941d7

Please sign in to comment.