accerciser r559 - trunk



Author: eitani
Date: Mon Apr 21 22:16:01 2008
New Revision: 559
URL: http://svn.gnome.org/viewvc/accerciser?rev=559&view=rev

Log:
* NEWS:
* confugure.in:
* README: Updated to version 1.3.1.

* pyreqs.py: Check that the version of pyatspi is current enough.


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/README
   trunk/configure.in
   trunk/pyreqs.py

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Apr 21 22:16:01 2008
@@ -1,111 +1,16 @@
 ==============
-Version 1.1.92
+Version 1.3.1
 ==============
 
 What's new
 ==========
-- Fixed accerciser crash (bug #497473). Thanks Rich Burridge!
-- Translation difficulty when multiple placeholders (bug
-#518246). Thanks Claude Paroz!
+- Implement save functionality, thanks Brian Merrell.
+- Quick select works better for finding accessible under mouse.
+- Check pyatspi version.
 
 New And Updated Translations
 ============================
-- Djihed Afifi (ar)
-- Hendrik Richter (de)
 - David Lodge (en_GB)
-
-==============
-Version 1.1.91
-==============
-
-What's new
-==========
-- Deleted pyatspi.zip module. Accerciser now depends on an external
-installation of pyatspi.
-
-New And Updated Translations
-============================
-- Khaled Hosny (ar)
-- Joan Duran (ca)
-- Yair Hershkovitz (he)
-- Davide Italiano (it)
-- Yannig Marchegay (Kokoyaya) (oc)
-- Og Maciel (pt_BR)
-- Duarte Loreto (pt)
-- Theppitak Karoonboonyanan (th)
-
-==============
-Version 1.1.90
-==============
-
-What's new
-==========
-- Make event handling asynchronous.
-- Fixed hang when enabling desktop a11y through accerciser (bug #509805). Thanks Pedro Fragoso.
-- Added comments to basic schema in validation plugin.
-
-New And Updated Translations
-============================
-- Jorge GonzÃlez (es)
-- Espen A. Stefansen (nb)
-- Daniel Nylander (sv)
-- Maxim Dziumanenko (uk)
-
-==============
-Version 1.1.5
-==============
-
-What's new
-==========
-- A new validation plugin that follows a test schema to produce an
-interactive report with potential a11y issues (bug #438495).
-- A new global hotkey that starts and stops the event monitor.
-
-New And Updated Translations
-============================
 - Jorge GonzÃlez (es)
-- Espen A. Stefansen (nb)
-- Yannig Marchegay (Kokoyaya) (oc)
-- Og Maciel (pt_BR)
-- Matej UrbanÄiÄ (sl)
-- Clytie Siddall (vi)
-
-==============
-Version 1.1.3
-==============
-
-What's new
-==========
-- Fixed a strange bug in the console plugin when trying to extend a 
-  superclass's method through a callback (bug #500900).
-
-New And Updated Translations
-============================
-- Jorge GonzÃlez (es)
-- Yannig Marchegay (Kokoyaya) (oc)
-
-==============
-Version 1.1.2
-==============
-
-What's new
-==========
-- Fixed long standing issue when Accerciser would crash with Orca running.(bug #469427)
-
-New And Updated Translations
-============================
-- Matej UrbanÄiÄ (sl)
-
-==============
-Version 1.1.1
-==============
-
-What's new
-==========
-- New developmnet version.
-
-New And Updated Translations
-============================
-- Djihed Afifi (ar)
-- Espen A. Stefansen (nb)
-- Matej UrbanÄiÄ (sl)
+- Kjartan Maraas (nb)
+- Laurent Dhima (sq)

Modified: trunk/README
==============================================================================
--- trunk/README	(original)
+++ trunk/README	Mon Apr 21 22:16:01 2008
@@ -1,4 +1,4 @@
-Accerciser 1.1.92
+Accerciser 1.3.1
 Just 15 minutes a day for better accessibility!
 
 Description

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Apr 21 22:16:01 2008
@@ -1,4 +1,4 @@
-AC_INIT(Accerciser, 1.1.92, eitan ascender com, accerciser)
+AC_INIT(Accerciser, 1.3.1, eitan ascender com, accerciser)
 AC_CONFIG_SRCDIR(src/accerciser.in)
 AM_INIT_AUTOMAKE
 AM_MAINTAINER_MODE

Modified: trunk/pyreqs.py
==============================================================================
--- trunk/pyreqs.py	(original)
+++ trunk/pyreqs.py	Mon Apr 21 22:16:01 2008
@@ -42,16 +42,14 @@
     m.require('2.0')
   elif name == 'gtk':
     m.check_version(*GTK_VERSION)
+print
 
-# test for CORBA modules
-corba = ['Accessibility']
-import bonobo
-import ORBit
-for name in corba:
-  try:
-    ORBit.load_typelib(name)
-    print name,
-  except Exception:
-    print name, '*MISSING*'
-    sys.exit(1)
-sys.exit(0)
+# Check pyatspi.
+# TODO: This should be done by comparing versions, for now we
+# will just check the API.
+import pyatspi
+try:
+  pyatspi.Registry.pumpQueuedEvents
+except AttributeError:
+  print 'Newer version of pyatspi required (>= 1.22.0)'
+  sys.exit(1)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]