Replace remaining Lore mentions with Blackmore

This commit is contained in:
lateminer
2018-10-19 01:09:44 +03:00
parent 970a285dc2
commit b51c500e6e
5 changed files with 6 additions and 6 deletions

View File

@@ -54,7 +54,7 @@ ds['.']['icvp'] = icvp
ds['.']['vSrn'] = ('long', 1)
ds['Applications']['Iloc'] = (370, 156)
ds['Lore-Qt.app']['Iloc'] = (128, 156)
ds['Blackmore-Qt.app']['Iloc'] = (128, 156)
ds.flush()
ds.close()

View File

@@ -2,7 +2,7 @@
set -e
ROOTDIR=dist
BUNDLE="${ROOTDIR}/Lore-Qt.app"
BUNDLE="${ROOTDIR}/Blackmore-Qt.app"
CODESIGN=codesign
TEMPDIR=sign.temp
TEMPLIST=${TEMPDIR}/signatures.txt

View File

@@ -22,7 +22,7 @@
<integer>370</integer>
<integer>156</integer>
</array>
<key>Lore-Qt.app</key>
<key>Blackmore-Qt.app</key>
<array>
<integer>128</integer>
<integer>156</integer>

View File

@@ -155,7 +155,7 @@ class FrameworkInfo(object):
class ApplicationBundleInfo(object):
def __init__(self, path):
self.path = path
appName = "Lore-Qt"
appName = "Blackmore-Qt"
self.binaryPath = os.path.join(path, "Contents", "MacOS", appName)
if not os.path.exists(self.binaryPath):
raise RuntimeError("Could not find bundle binary for " + path)
@@ -597,7 +597,7 @@ if os.path.exists("dist"):
# ------------------------------------------------
target = os.path.join("dist", "Lore-Qt.app")
target = os.path.join("dist", "Blackmore-Qt.app")
if verbose >= 2:
print("+ Copying source bundle +")

View File

@@ -488,7 +488,7 @@ std::vector<std::string> CRPCTable::listCommands() const
std::string HelpExampleCli(const std::string& methodname, const std::string& args)
{
return "> lore-cli " + methodname + " " + args + "\n";
return "> blackmore-cli " + methodname + " " + args + "\n";
}
std::string HelpExampleRpc(const std::string& methodname, const std::string& args)