Skip to content

Commit

Permalink
Bump version : 8.5
Browse files Browse the repository at this point in the history
- l10n updates
- Update copyright year
- use getCodeAddon(), thanks to @abdel792
  • Loading branch information
nvdaes committed Feb 3, 2018
1 parent ff83934 commit 9934fd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions addon/globalPlugins/placeMarkers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
# placeMarkers: Plugin to manage place markers based on positions or strings in specific documents
#Copyright (C) 2012-2016 Noelia Ruiz Martínez
#Copyright (C) 2012-2018 Noelia Ruiz Martínez
# Released under GPL 2

import addonHandler
Expand Down Expand Up @@ -30,13 +30,11 @@
addonHandler.initTranslation()

### Constants
ADDON_DIR = os.path.join(os.path.dirname(__file__), "..", "..") # The root of the addon folder
ADDON_INSTANCE = addonHandler.Addon(ADDON_DIR)
ADDON_SUMMARY = ADDON_INSTANCE.manifest['summary']
PLACE_MARKERS_PATH = os.path.join(os.path.dirname(__file__), "savedPlaceMarkers").decode("mbcs")
SEARCH_FOLDER = os.path.join(PLACE_MARKERS_PATH, "search")
BOOKMARKS_FOLDER = os.path.join(PLACE_MARKERS_PATH, "bookmarks")
CONFIG_PATH = globalVars.appArgs.configPath
ADDON_SUMMARY = addonHandler.getCodeAddon().manifest["summary"]

def createSearchFolder():
if os.path.isdir(SEARCH_FOLDER):
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("Add-on for setting place markers on specific virtual documents"),
# version
"addon_version" : "8.4",
"addon_version" : "8.5",
# Author(s)
"addon_author" : u"Noelia <[email protected]>, Chris <[email protected]>",
# URL for the add-on documentation support
Expand Down

0 comments on commit 9934fd6

Please sign in to comment.