changeset 238:83d2bc0abf2a

version, README, CHANGELOG and INSTALL updates
author Goffi <goffi@goffi.org>
date Wed, 12 Jan 2011 18:21:08 +0100
parents aae816738314
children 1fed4cff0d8d
files CHANGELOG INSTALL README setup.py src/sat.tac
diffstat 5 files changed, 40 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Tue Jan 11 19:15:23 2011 +0100
+++ b/CHANGELOG	Wed Jan 12 18:21:08 2011 +0100
@@ -1,3 +1,10 @@
+v 0.1.0 (12/01/2010):
+	- urwid custom libs split as a new project: "urwid-satext"
+	- files reorganisation
+	- versioning now use a standard scheme (major.minor.increment+letter)
+	- distutils/distribute installation script
+	- mix bugs fixes
+	- easy way to launch/stop sat (sat & sat stop)
 v 0.0.3 (20/08/2010):
 	- multi-profiles
 	- i18n support
--- a/INSTALL	Tue Jan 11 19:15:23 2011 +0100
+++ b/INSTALL	Wed Jan 12 18:21:08 2011 +0100
@@ -1,3 +1,8 @@
+***
+Below are the old manual instructions for installation, you can install SàT automatically using easy_install or pip. The full instructions are available on the wiki: http://wiki.goffi.org/wiki/Salut_%C3%A0_Toi
+*** 
+
+
 The following instructions are for GNU/Linux operating system. Instruction for other OS will come in the future.
 
 /!\ WARNING /!\
--- a/README	Tue Jan 11 19:15:23 2011 +0100
+++ b/README	Wed Jan 12 18:21:08 2011 +0100
@@ -1,4 +1,4 @@
-SàT v0.0.3
+SàT v0.1.0
 (c) Jérôme Poisson aka Goffi 2008, 2009, 2010, 2011
 
 SàT is a XMPP (Jabber) client.
@@ -52,6 +52,8 @@
 
 For installation instructions, please read the file "INSTALL".
 
+A wiki is available online (http://wiki.goffi.org), in french and english so far (I would appreciate any help for other languages). You can also have a look at the bottom of this files (in contact section) for other availables websites.
+
 SàT is really at an early dev stage, so it's maybe the buggiest software you have ever seen, and there are for the moment absolutely nothing to ease the installation and use (but it will be the case ASAP, one of the goal of the project is the ease of use).
 There will probably be a wiki doc in the future.
 
@@ -150,7 +152,12 @@
 ** Contact **
 
 You can contact me on goffi@goffi.org . Yes I know, I don't give my JID ;)
-You'll find the latest version on my website: http://www.goffi.org (it's mainly in french, I will probably make a little part in english in the future).
+You'll find the latest version and other stuffs on my *.goffi.org websites:
+- wiki (wiki.goffi.org), in french & english so far
+- ftp (ftp.goffi.org) for the latest version, or previous ones (and other projects)
+- blog (www.goffi.org) for latest news (in french)
+- bugtracker (bugs.goffi.org) to report any problem or give suggestions
+- various mailing lists (lists.goffi.org) are about to be created
 
 
 
--- a/setup.py	Tue Jan 11 19:15:23 2011 +0100
+++ b/setup.py	Wed Jan 12 18:21:08 2011 +0100
@@ -1,6 +1,24 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
+"""
+SAT: a jabber client
+Copyright (C) 2009, 2010, 2011  Jérôme Poisson (goffi@goffi.org)
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
 from distribute_setup import use_setuptools
 use_setuptools()
 from setuptools.command.install import install
--- a/src/sat.tac	Tue Jan 11 19:15:23 2011 +0100
+++ b/src/sat.tac	Wed Jan 12 18:21:08 2011 +0100
@@ -21,7 +21,7 @@
 
 CONST = {
     'client_name' : u'SàT (Salut à toi)',
-    'client_version' : u'0.0.3D',   #Please add 'D' at the end for dev versions
+    'client_version' : u'0.1.0',   #Please add 'D' at the end for dev versions
     'local_dir' : '~/.sat'
 }