de-zebra. Temp remove coverage

This commit is contained in:
James 2019-03-05 20:38:40 +01:00
parent 81b40eb8a5
commit b8ae7f3a84
10 changed files with 13 additions and 16 deletions

View File

@ -39,9 +39,6 @@ install:
pip install tox; pip install tox-travis;
fi
script:
- if [[ -z $TRAVIS_TAG ]] && [[ $TRAVIS_OS_NAME == 'linux' ]];then
tox;
fi
- if [[ -n $TRAVIS_TAG ]] && [[ $TRAVIS_OS_NAME == 'osx' ]]; then
./build/travis-build-osx.sh ;
fi
@ -58,7 +55,7 @@ deploy:
file:
- build/electrum-zclassic/dist/electrum-zclassic-$ELECTRUM_ZCL_VERSION-macosx.dmg
on:
repo: zebra-lucky/electrum-zclassic
repo: ZclassicCommunity/electrum-zclassic
tags: true
condition: "$TRAVIS_OS_NAME = osx"
- provider: releases
@ -70,6 +67,6 @@ deploy:
- build/electrum-zclassic/dist/electrum-zclassic-$ELECTRUM_ZCL_VERSION-setup-win64.exe
- build/electrum-zclassic/bin/Electrum_Zclassic-$ELECTRUM_ZCL_APK_VERSION-release-unsigned.apk
on:
repo: zebra-lucky/electrum-zclassic
repo: ZclassicCommunity/electrum-zclassic
tags: true
condition: "$TRAVIS_OS_NAME = linux"

View File

@ -53,7 +53,7 @@ Development version
Check out the code from GitHub::
git clone git://github.com/zebra-lucky/electrum-zclassic.git
git clone git://github.com/ZclassicCommunity/electrum-zclassic.git
cd electrum-zclassic
Run install (this should install dependencies)::

View File

@ -8,7 +8,7 @@
;Variables
!define PRODUCT_NAME "Electrum-Zclassic"
!define PRODUCT_WEB_SITE "https://github.com/zebra-lucky/electrum-zclassic"
!define PRODUCT_WEB_SITE "https://github.com/ZclassicCommunity/electrum-zclassic"
!define PRODUCT_PUBLISHER "Electrum Technologies GmbH"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define BUILD_ARCH "${WINEARCH}"

View File

@ -6,7 +6,7 @@ if [[ -z $TRAVIS_TAG ]]; then
exit 1
fi
BUILD_REPO_URL=https://github.com/zebra-lucky/electrum-zclassic
BUILD_REPO_URL=https://github.com/ZclassicCommunity/electrum-zclassic
cd build

View File

@ -6,7 +6,7 @@ if [[ -z $TRAVIS_TAG ]]; then
exit 1
fi
BUILD_REPO_URL=https://github.com/zebra-lucky/electrum-zclassic
BUILD_REPO_URL=https://github.com/ZclassicCommunity/electrum-zclassic
cd build

View File

@ -6,7 +6,7 @@ if [[ -z $TRAVIS_TAG ]]; then
exit 1
fi
BUILD_REPO_URL=https://github.com/zebra-lucky/electrum-zclassic
BUILD_REPO_URL=https://github.com/ZclassicCommunity/electrum-zclassic
cd build

2
debian/control vendored
View File

@ -19,7 +19,7 @@ Build-Depends:
python3-socks (>= 1.6.5),
python3-pyblake2 (>=0.9.3),
Standards-Version: 4.1.3
Homepage: https://github.com/zebra-lucky/electrum-zclassic
Homepage: https://github.com/ZclassicCommunity/electrum-zclassic
X-Python3-Version: >= 3.4
Package: python3-electrum-zclassic

2
debian/copyright vendored
View File

@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: electrum-zclassic
Source: https://github.com/zebra-lucky/electrum-zclassic/
Source: https://github.com/ZclassicCommunity/electrum-zclassic/
Files: *
Copyright: Electrum Team

View File

@ -541,9 +541,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
help_menu = menubar.addMenu(_("&Help"))
help_menu.addAction(_("&About"), self.show_about)
#help_menu.addAction(_("&Official website"), lambda: webbrowser.open("https://github.com/zebra-lucky/electrum-zclassic"))
#help_menu.addAction(_("&Official website"), lambda: webbrowser.open("https://github.com/ZclassicCommunity/electrum-zclassic"))
help_menu.addSeparator()
#help_menu.addAction(_("&Documentation"), lambda: webbrowser.open("http://github.com/zebra-lucky/electrum-zclassic")).setShortcut(QKeySequence.HelpContents)
#help_menu.addAction(_("&Documentation"), lambda: webbrowser.open("http://github.com/ZclassicCommunity/electrum-zclassic")).setShortcut(QKeySequence.HelpContents)
#self._auto_crash_reports = QAction(_("&Automated Crash Reports"), self, checkable=True)
#self._auto_crash_reports.setChecked(self.config.get("show_crash_reporter", default=False))
#self._auto_crash_reports.triggered.connect(self.auto_crash_reports)
@ -575,7 +575,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
def show_report_bug(self):
msg = ' '.join([
_("Please report any bugs as issues on github:<br/>"),
"<a href=\"https://github.com/zebra-lucky/electrum-zclassic/issues\">https://github.com/zebra-lucky/electrum-zclassic/issues</a><br/><br/>",
"<a href=\"https://github.com/ZclassicCommunity/electrum-zclassic/issues\">https://github.com/ZclassicCommunity/electrum-zclassic/issues</a><br/><br/>",
_("Before reporting a bug, upgrade to the most recent version of Electrum-Zclassic (latest release or git HEAD), and include the version number in your report."),
_("Try to explain not only what the bug is, but how it occurs.")
])

View File

@ -84,6 +84,6 @@ setup(
author="Thomas Voegtlin",
author_email="thomasv@electrum.org",
license="MIT License",
url="https://github.com/zebra-lucky/electrum-zclassic",
url="https://github.com/ZclassicCommunity/electrum-zclassic",
long_description="""Lightweight Zclassic Wallet"""
)