change name

This commit is contained in:
wowario 2021-02-20 09:33:04 +03:00
parent 1b89370c1c
commit 0131476a5d
No known key found for this signature in database
GPG key ID: 24DCBE762DE9C111
16 changed files with 79 additions and 79 deletions

View file

@ -18,16 +18,16 @@
<string>????</string>
<key>CFBundleExecutable</key>
<string>feather-wow</string>
<string>wowllet</string>
<key>CFBundleName</key>
<string>Feather-WOW</string>
<string>WOWllet</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014-2021 The Monero Project</string>
<key>CFBundleIdentifier</key>
<string>org.monero-project.feather-wow</string>
<string>org.monero-project.wowllet</string>
<key>CFBundleVersion</key>
<string>@VERSION_LONG@</string>

View file

@ -6,20 +6,20 @@ echo "[+] hash: $HASH"
export DRONE=true
echo "[+] Building"
rm ~/feather-wow.zip 2>&1 >/dev/null
cd ~/feather-wow
rm ~/wowllet.zip 2>&1 >/dev/null
cd ~/wowllet
git fetch
git reset --hard "$HASH"
git submodule update --init --depth 120 monero
git submodule update --init --depth 120 --recursive monero
cp "/Users/administrator/tor/libevent-2.1.7.dylib" "/Users/administrator/feather-wow/src/assets/exec/libevent-2.1.7.dylib"
cp "/Users/administrator/tor/libevent-2.1.7.dylib" "/Users/administrator/wowllet/src/assets/exec/libevent-2.1.7.dylib"
CMAKE_PREFIX_PATH="~/Qt/5.15.1/clang_64" TOR_BIN="/Users/administrator/tor/tor" make -j3 mac-release
if [[ $? -eq 0 ]]; then
echo "[+] Feather built OK"
cd ~/feather-wow/build/bin
zip -qr ~/feather-wow.zip feather-wow.app
cd ~/wowllet/build/bin
zip -qr ~/wowllet.zip wowllet.app
else
echo "[+] Error!"
exit 1;