[Libreoffice-commits] core.git: wizards/source

Jean-Pierre Ledure (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 1 10:24:18 UTC 2020


 wizards/source/access2base/acConstants.xba |    2 +-
 wizards/source/access2base/access2base.py  |    4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 2bb8636ea51e552a20a4253a6c5c97898129d523
Author:     Jean-Pierre Ledure <jp at ledure.be>
AuthorDate: Tue Sep 1 12:20:42 2020 +0200
Commit:     Jean-Pierre Ledure <jp at ledure.be>
CommitDate: Tue Sep 1 12:20:42 2020 +0200

    Access2Base - Upgrade version number
    
    Change-Id: I64b83fb50284fcd3455136158000114d992c3370

diff --git a/wizards/source/access2base/acConstants.xba b/wizards/source/access2base/acConstants.xba
index d0a24ef5da2c..85098c7f4b07 100644
--- a/wizards/source/access2base/acConstants.xba
+++ b/wizards/source/access2base/acConstants.xba
@@ -9,7 +9,7 @@ REM ============================================================================
 Option Explicit
 
 REM Access2Base -----------------------------------------------------
-Global Const Access2Base_Version = "7.0.0"		'	Alignment on LibreOffice versions
+Global Const Access2Base_Version = "7.1.0"		'	Alignment on LibreOffice versions
 
 REM AcCloseSave
 REM -----------------------------------------------------------------
diff --git a/wizards/source/access2base/access2base.py b/wizards/source/access2base/access2base.py
index e84b95983820..77878e0053bc 100644
--- a/wizards/source/access2base/access2base.py
+++ b/wizards/source/access2base/access2base.py
@@ -36,6 +36,8 @@ Specific documentation about Access2Base and Python:
     http://www.access2base.com/access2base.html#%5B%5BAccess2Base%20and%20Python%5D%5D
 """
 
+from __future__ import unicode_literals
+
 import uno
 XSCRIPTCONTEXT = uno
 
@@ -43,7 +45,7 @@ from platform import system as _opsys
 import datetime, os, sys, traceback
 
 _LIBRARY = ''               # Should be 'Access2Base' or 'Access2BaseDev'
-_VERSION = '6.4'            # Actual version number
+_VERSION = '7.1'            # Actual version number
 _WRAPPERMODULE = 'Python'   # Module name in the Access2Base library containing Python interfaces
 
 # CallByName types


More information about the Libreoffice-commits mailing list