From 49e8ee5b99c850ddc3f81127096e83ed38c85a52 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Tue, 3 Feb 2009 22:54:21 +0530 Subject: * version 0.7 --- payyans/PKG-INFO | 2 +- payyans/docs/ChangeLog | 13 ++++++++----- payyans/docs/README | 3 +-- payyans/payyans/payyans | 5 +++-- payyans/setup.py | 2 +- 5 files changed, 14 insertions(+), 11 deletions(-) (limited to 'payyans') diff --git a/payyans/PKG-INFO b/payyans/PKG-INFO index b9a5588..855a8c9 100755 --- a/payyans/PKG-INFO +++ b/payyans/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: Payyans -Version: 0.5 +Version: 0.7 Summary: Payyans is a python program to convert the data written for ascii fonts in ascii format to the Unicode format Home-page: http://smc.org.in/Payyans Author: Santhosh Thottingal, Nishan Naseer diff --git a/payyans/docs/ChangeLog b/payyans/docs/ChangeLog index c78e155..fad531a 100755 --- a/payyans/docs/ChangeLog +++ b/payyans/docs/ChangeLog @@ -1,15 +1,18 @@ Change Log: + version 0.7 + * Bug fix to handle prebase, postbase matras correctly + * Added Ambili Map. Thanks to zyxware version 0.6 - * Added word2Unicode and word2ASCII APIs - * Move the doc files to /usr/share/doc/payyans- directory + * Loading the rules file multiple times fixed version 0.5 * Python API fixes * pdf option detection from input file name extension version 0.4 * bidirectional conversion - version 0.3 - * minor fixes - Version 0.2: + version 0.3 + * minor fixes + Version 0.2: * Renamed rules.map to karthika.map and corrected some mappings Version 0.1: * First release + diff --git a/payyans/docs/README b/payyans/docs/README index 62eda0e..d453719 100755 --- a/payyans/docs/README +++ b/payyans/docs/README @@ -1,7 +1,6 @@ AUTHORS: Santhosh Thottingal Nishan Naseer - Rajeesh K Nambiar A Swathanthra Malayalam Computing Project Detailed Documentation: http://smc.org.in/Payyans @@ -10,4 +9,4 @@ INSTALL: As root #python setup.py install -Enjoy :) +Enjoy :) \ No newline at end of file diff --git a/payyans/payyans/payyans b/payyans/payyans/payyans index 79c2854..7f3c421 100755 --- a/payyans/payyans/payyans +++ b/payyans/payyans/payyans @@ -25,9 +25,10 @@ from payyans import Payyans from optparse import OptionParser import sys,os +VERSION=0.7 def error_exit(): print ''' - Payyans Malayalam Ascii <--> Unicode Converter Version 0.3 + Payyans Malayalam Ascii <--> Unicode Converter Please use --help or -h argument to see the options''' sys.exit(1) @@ -47,7 +48,7 @@ class Payyan: '''നീ ആരാകുന്നു?''' if options.version : '''ഞാന്‍ പയ്യനാകുന്നു. പയ്യെ ജനനം. പൈത്തണ്‍കുലം. ഇങ്ങടു് കടിച്ചാല്‍ അങ്ങടും കടിക്കും- അതു് ജന്മ സ്വഭാവം''' - print "Payyans Malayalam Ascii <--> Unicode Converter Version 0.3" + print "Payyans Malayalam Ascii <--> Unicode Converter Version" , VERSION, return if (options.mapping_filename is None): ''' മാപ്പിങ്ങ് ഇല്ലാതെ നമുക്കെന്താഘാഷം''' diff --git a/payyans/setup.py b/payyans/setup.py index 2993087..a32b599 100755 --- a/payyans/setup.py +++ b/payyans/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup doclines = __doc__.split("\n") setup(name='payyans', - version='0.6', + version='0.7', description=doclines[0], long_description = "\n".join(doclines[:]), platforms = ["Linux"], -- cgit