-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install D-Rats in MobaXterm fixes (#283)
* Install D-Rats in MobaXterm fixes Install script needs to build the translation database. d-rats_in_mobaxterm_install.sh Rename to correct name. Add packages needed to build the translation database and call script to do the build. d_rats/aprs_icons.py: Fix Typographical error. d_rats/mainwindow.py: Fix path for d-rats logo for about dialog d_rats/version.py: Fix git version lookup
- Loading branch information
Showing
4 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,9 +63,9 @@ | |
"Marius Petrescu YO2LOJ <[email protected]>\n" \ | ||
"John E. Malmberg WB8TYW <[email protected]>" | ||
AUTHOR_COPYRIGHT = "2008-2010 Dan Smith (KK7DS)\n" \ | ||
"2014-2022 Maurizio Andreotti (IZ2LXI) &\n" \ | ||
"2014-2023 Maurizio Andreotti (IZ2LXI) &\n" \ | ||
"Marius Petrescu (YO2LOJ)\n" \ | ||
"2021-2022 John E. Malmberg (WB8TYW)." | ||
"2021-2023 John E. Malmberg (WB8TYW)." | ||
DATA_COPYRIGHT = "Location and Map data Copyright www.thunderforest.com and\n" \ | ||
"copyright OpenStreetMap Contributors, www.osm.org/copyright.\n" \ | ||
"Some Map Data courtesy of the U.S. Geological Survey.\n" \ | ||
|
@@ -361,7 +361,8 @@ def _get_version(cls): | |
|
||
if isdir(join(module_dir, '.git')): | ||
# Get the version using "git describe". | ||
cmd = 'git describe --tags --dirty'.split() | ||
cmd = 'git -C %s describe --tags --dirty' % module_dir | ||
cmd = cmd.split() | ||
try: | ||
raw_version = subprocess.check_output(cmd).decode().strip() | ||
cls._parse_version(raw_version) | ||
|