commit/dayOfTheWeek: 2 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Tue, 05 Feb 2019 15:17:20 +0000 (UTC)

2 new commits in dayOfTheWeek:

https://bitbucket.org/nvdaaddonteam/dayoftheweek/commits/23ca55d8aafe/
Changeset:   23ca55d8aafe
Branch:      None
User:        abdel792
Date:        2019-02-05 12:17:15+00:00
Summary:     * Changed version numbering using YY.MM (The year in 2 digits, 
followed by a dot, followed by the month in 2 digits);
* Added compatibility with the new versioning format of add-on, appeared since 
nvda 2019.1.

Affected #:  3 files

diff --git a/buildVars.py b/buildVars.py
index 6ab7b04..0a0b9bc 100644
--- a/buildVars.py
+++ b/buildVars.py
@@ -19,7 +19,7 @@ addon_info = {
        # Translators: Long description to be shown for this add-on on add-on 
information from add-ons manager
        "addon_description" : _("""With this add-on, you'll be able to find the 
day of the week corresponding to a chosen date."""),
        # version
-       "addon_version" : "6.2.1",
+       "addon_version" : "19.02",
        # Author(s)
        "addon_author" : u"Abdel <abdelkrim.bensaid@xxxxxxxxx>, Noelia 
<nrm1977@xxxxxxxxx>",
        # URL for the add-on documentation support
@@ -27,9 +27,9 @@ addon_info = {
        # Documentation file name
        "addon_docFileName" : "readme.html",
        # Minimum NVDA version supported (e.g. "2018.3")
-       "addon_minimumNVDAVersion" : "2014.3",
+       "addon_minimumNVDAVersion" : "2014.3.0",
        # Last NVDA version supported/tested (e.g. "2018.4", ideally more 
recent than minimum version)
-       "addon_lastTestedNVDAVersion" : "2019.1",
+       "addon_lastTestedNVDAVersion" : "2019.1.0",
        # Add-on update channel (default is stable or None)
        "addon_updateChannel" : None,
 }

diff --git a/readme.md b/readme.md
index 0e7efea..137775b 100644
--- a/readme.md
+++ b/readme.md
@@ -1,67 +1,78 @@
 # Day of the week #
-*       Authors: Abdel, Noelia.
-*       download [stable version][1]
-*       download [development version][2]
+
+* Authors: Abdel, Noelia.
+* download [stable version][1]
+* download [development version][2]
 
 This add-on allows you to find a day of the week corresponding to a chosen 
date.
 
 It adds a submenu in the NVDA Tools menu named "Day of the week", containing 2 
items:
 
+* The first one named "Search a day", opens a dialog composed of 3 controls:
+
+    * A listbox to choose or type your date;
+    * An "OK" button to display a messageBox containing your day;
+    * A "Cancel" button to close the dialog.
+
+* The second one named "dayOfTheWeek add-on settings" opens the parameters of 
the add-on to specify whether you want to report labels for date fields or not, 
it is composed of the following elements:
+
+    * Enable accessibility of the date selector;
+    * Level of the announces of labels, you will then have 3 choices:
 
-*      The first one named "Search a day", opens a dialog composed of 3 
controls:
-       *       A listbox to choose or type your date;
-       *       An "OK" button to display a messageBox containing your day;
-       *       A "Cancel" button to close the dialog.
-*      The second one named "dayOfTheWeek add-on settings" opens the 
parameters of the add-on to specify whether you want to report labels for date 
fields or not, it is composed of the following elements:
-       *       Enable accessibility of the date selector;
-       *       Level of the announces of labels, you will then have 3 choices:
-               *       Long (it's the default choice);
-               *       Short (for short announcements);
-               *       Off (to disable labels announcements).
-       *       Enable announcement of the current date field value only, when 
moving vertically;
-       *       An "OK" button to save your configuration;
-       *       A "Cancel" button to cancel and close the dialog.
+        * Long (it's the default choice);
+        * Short (for short announcements);
+        * Off (to disable labels announcements).
 
+    * Enable announcement of the current date field value only, when moving 
vertically;
+    * An "OK" button to save your configuration;
+    * A "Cancel" button to cancel and close the dialog.
 
 ## Notes ##
 
-*       You can close these dialogs just by pressing Escape.
-*       You can assign a shortcut to open these dialogs in "Input gestures" 
menu and, more precisely, in the "Day of the week" category.;
-*       If you use NVDA 2018.2 or higher, you'll find only one item in the 
tool menu for searching your day, the add-on settings will be in the NVDA 
settings panel.
+* You can close these dialogs just by pressing Escape.
+* You can assign a shortcut to open these dialogs in "Input gestures" menu 
and, more precisely, in the "Day of the week" category.;
+* If you use NVDA 2018.2 or higher, you'll find only one item in the tool menu 
for searching your day, the add-on settings will be in the NVDA settings panel.
+
+## Changes for 19.02 ##
+
+* Changed version numbering using YY.MM (The year in 2 digits, followed by a 
dot, followed by the month in 2 digits);
+* Added compatibility with the new versioning format of add-on, appeared since 
nvda 2019.1.
 
 ## Changes for 6.0 ##
-*       added the addon settings to the NVDA settings panel for NVDA 2018.2 
and higher;
-*       Moved the item  for  searching a day to the tools menu;
-*       Added the backward compatibility of the add-on with the NVDA versions 
that preceded 2018.2, which included the settings panel.
+
+* added the addon settings to the NVDA settings panel for NVDA 2018.2 and 
higher;
+* Moved the item  for  searching a day to the tools menu;
+* Added the backward compatibility of the add-on with the NVDA versions that 
preceded 2018.2, which included the settings panel.
 
 ## Changes for 5.0 ##
-*       Added the compatibility of the add-on with wxPython 4.0 and Python3;
-*       Fixed a bug with add-on paths that contain non-ASCII characters.
+
+* Added the compatibility of the add-on with wxPython 4.0 and Python3;
+* Fixed a bug with add-on paths that contain non-ASCII characters.
 
 ## Changes for 4.0 ##
 
-*       The add-on is now able to recognize all the regional date formats that 
the user can choose;
-*       Added the backward compatibility of the add-on with the NVDA versions 
that preceded 2016.4, which included the gui.guiHelper module.
+* The add-on is now able to recognize all the regional date formats that the 
user can choose;
+* Added the backward compatibility of the add-on with the NVDA versions that 
preceded 2016.4, which included the gui.guiHelper module.
 
 ## Changes for 3.1 ##
 
-*       Back to the previous format for the day of the week because it allows 
to recognize a greater number of languages;
-*       Improved the accessibility of the date selector with recognition of 
the 3 fields 'Day', 'Month' and 'Year', and their respective values;
-*       Added a technique for the integration of the Georgian language for the 
recognition of the days of the week;
-*       Added a configuration dialog box to enable or disable the 
accessibility of the date selector;
-*       Moved the add-on submenu from "Tools" to "Preferences";
-*       Changed the add-on category to "Day of the week".
+* Back to the previous format for the day of the week because it allows to 
recognize a greater number of languages;
+* Improved the accessibility of the date selector with recognition of the 3 
fields 'Day', 'Month' and 'Year', and their respective values;
+* Added a technique for the integration of the Georgian language for the 
recognition of the days of the week;
+* Added a configuration dialog box to enable or disable the accessibility of 
the date selector;
+* Moved the add-on submenu from "Tools" to "Preferences";
+* Changed the add-on category to "Day of the week".
 
 ## Changes for 2.0 ##
 
-*       Used the gui.guiHelper module to ensure the correct appearance of the 
dialog asking for a date;
-*       Added the GPL license to the addon;
-*       Days of the week have been translated, so that the add-on works 
properly in the different languages;
-*       Changed the day format to avoid encoding errors.
+* Used the gui.guiHelper module to ensure the correct appearance of the dialog 
asking for a date;
+* Added the GPL license to the addon;
+* Days of the week have been translated, so that the add-on works properly in 
the different languages;
+* Changed the day format to avoid encoding errors.
 
 ## Changes for 1.0 ##
 
-*       Initial version.
+* Initial version.
 
 [1]: 
https://github.com/abdel792/dayOfTheWeek/releases/download/v6.2.1/dayOfTheWeek-6.2.1.nvda-addon
 

diff --git a/sconstruct b/sconstruct
index ec8e663..6aa4c4a 100644
--- a/sconstruct
+++ b/sconstruct
@@ -8,6 +8,8 @@ import gettext
 import os
 import os.path
 import zipfile
+import sys
+sys.dont_write_bytecode = True
 
 import buildVars
 
@@ -170,4 +172,4 @@ for dir in langDirs:
                env.Depends(htmlFile, [mdFile, moFile])
                env.Depends(addon, htmlFile)
 env.Default(addon)
-env.Clean (addon, ['buildVars.pyc', '.sconsign.dblite', 'addon/doc/en/'])
+env.Clean (addon, ['.sconsign.dblite', 'addon/doc/en/'])


https://bitbucket.org/nvdaaddonteam/dayoftheweek/commits/e2369f2767bb/
Changeset:   e2369f2767bb
Branch:      stable
User:        abdel792
Date:        2019-02-05 15:14:00+00:00
Summary:     Updated documentation.

Affected #:  1 file

diff --git a/readme.md b/readme.md
index 137775b..4c6cabe 100644
--- a/readme.md
+++ b/readme.md
@@ -33,6 +33,10 @@ It adds a submenu in the NVDA Tools menu named "Day of the 
week", containing 2 i
 * You can assign a shortcut to open these dialogs in "Input gestures" menu 
and, more precisely, in the "Day of the week" category.;
 * If you use NVDA 2018.2 or higher, you'll find only one item in the tool menu 
for searching your day, the add-on settings will be in the NVDA settings panel.
 
+## Compatibility ##
+
+* This add-on is compatible with the versions of NVDA ranging from 2014.3 
until 2019.1.
+
 ## Changes for 19.02 ##
 
 * Changed version numbering using YY.MM (The year in 2 digits, followed by a 
dot, followed by the month in 2 digits);
@@ -74,6 +78,6 @@ It adds a submenu in the NVDA Tools menu named "Day of the 
week", containing 2 i
 
 * Initial version.
 
-[1]: 
https://github.com/abdel792/dayOfTheWeek/releases/download/v6.2.1/dayOfTheWeek-6.2.1.nvda-addon
+[1]: https://addons.nvda-project.org/files/get.php?file=dw
 
-[2]: 
https://github.com/abdel792/dayOfTheWeek/releases/download/v6.2.1/dayOfTheWeek-6.2.1.nvda-addon
+[2]: https://addons.nvda-project.org/files/get.php?file=dw-dev

Repository URL: https://bitbucket.org/nvdaaddonteam/dayoftheweek/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts: