Skip to content

Commit

Permalink
Merge pull request #707 from signum-network/develop
Browse files Browse the repository at this point in the history
Sync with current develop branch
  • Loading branch information
jjos2372 committed Dec 13, 2022
2 parents 93f0ae2 + 226f923 commit 9c02733
Show file tree
Hide file tree
Showing 238 changed files with 167 additions and 69,884 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Update Phoenix Wallet
- name: Update Wallets
run: |
cd ./ci
./updatePhoenix.sh
./updateClassic.sh
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
Expand Down
35 changes: 35 additions & 0 deletions ci/updateClassic.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/bin/bash

set -e

echo "========================================"
echo "🛰 Updating to latest Classic Version..."
echo "----------------------------------------"
BASE_CI_DIR=$(pwd)

# prepare tmp folder
TMPDIR=$(mktemp -d)
cd $TMPDIR > /dev/null

# download
echo
echo "======================================="
echo "⬇️ Cloning Classic wallet main branch..."
echo "---------------------------------------"
git clone https://github.com/signum-network/signum-classic-wallet.git
cd signum-classic-wallet/src > /dev/null

# cleanup old version
rm -rf ${BASE_CI_DIR}/../html/ui/classic/*
cp -R * ${BASE_CI_DIR}/../html/ui/classic/
echo "✅ Copied wallet sources"

echo
echo "======================================="
echo "🛀 Cleaning up..."
echo "---------------------------------------"
cd ${BASE_CI_DIR}
rm -rf ${TMPDIR}
echo "✅ Removed temp data"
echo
echo "🎉 Yay. Successfully updated Classic Wallet"
2 changes: 1 addition & 1 deletion html/api-doc/signum-api.json

Large diffs are not rendered by default.

50 changes: 0 additions & 50 deletions html/ui/LICENSES

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
4 changes: 2 additions & 2 deletions html/ui/css/selector/main.css → html/ui/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@font-face {
font-family: Montserrat;
src: url('../../fonts/Montserrat-Regular.ttf');
src: url('../assets/Montserrat-Regular.ttf');
}


Expand All @@ -20,7 +20,7 @@ canvas {
}

.bg {
background-image: url("../../img/selector/blockchain.jpg");
background-image: url("../assets/blockchain.jpg");
background-size: cover;
height: 100%;
width: 100%;
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
173 changes: 0 additions & 173 deletions html/ui/classic.html

This file was deleted.

5 changes: 5 additions & 0 deletions html/ui/classic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Signum Classic Wallet moved to another repository!

In this folder it will be copied the files of the folder `src/` from the repository (signum-classic-wallet)[https://github.com/signum-network/signum-classic-wallet/].

The process is automated during a release creation. For more info check the `release.yml` workflow.

0 comments on commit 9c02733

Please sign in to comment.