-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: fix warnings and PR build (#232) (#237) * CI: Fix warnings, add PR Build check * ci: mocked keys * feat: get privatekey (#236) * fix: linter errors * bump canary version * Node playlists (#238) * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows * Update networks.ts Should ensure that the defaultPlaylist function is correctly returning a NetworkPlaylist object with the default network settings. * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows And modified the code to follow better practices for the defaultPlaylist and updateNetwork functions, to hopefully run better and not be caught by the linters * Update networks.ts Fallbacks for the playlist with network functionality deferred to rust * bump canary version * Node playlists (#239) * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows * Update networks.ts Should ensure that the defaultPlaylist function is correctly returning a NetworkPlaylist object with the default network settings. * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows And modified the code to follow better practices for the defaultPlaylist and updateNetwork functions, to hopefully run better and not be caught by the linters * Update networks.ts Fallbacks for the playlist with network functionality deferred to rust * Update networks.ts Replaced get with fetch and bypassed the http calls by retuning the embedded node list directly as it matches the expected behavior in rust * chore: make things pretty * Node playlists (#240) * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows * Update networks.ts Should ensure that the defaultPlaylist function is correctly returning a NetworkPlaylist object with the default network settings. * Update networks.ts Added fallback nodes and modified initNetwork for better functionality and enhanced test flows And modified the code to follow better practices for the defaultPlaylist and updateNetwork functions, to hopefully run better and not be caught by the linters * ci: fix warnings and PR build (#232) * CI: Fix warnings, add PR Build check * ci: mocked keys * Update networks.ts Fallbacks for the playlist with network functionality deferred to rust * Update networks.ts Replaced get with fetch and bypassed the http calls by retuning the embedded node list directly as it matches the expected behavior in rust --------- Co-authored-by: Kalvis Kuskis <[email protected]> * Fix transfers for rotated authkeys (#241) * Revert "Fix transfers for rotated authkeys (#241)" (#242) This reverts commit 43644ba. * Fix mining issue (#244) * fix: signingAccount data not synchronized (#225) * fix: mining UI issue (#193) * fix: mining issue (#225 #224 #213 #210 #207 #204 #191 #190) * fix: form submit issue (#208) * feat: Copy address to clipboard (#248) * fix: Compatible with chain_name in libra.yaml and chain_id in TS code. * feat: Copy address to clipboard * fix: when MINER is on, it accidentally switches accounts (#219) (#253) --------- Co-authored-by: BBK <[email protected]> Co-authored-by: teisnilsson <[email protected]> Co-authored-by: Zaki Manian <[email protected]>
- Loading branch information
1 parent
4160b04
commit 35886ea
Showing
55 changed files
with
38,063 additions
and
185 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
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 |
---|---|---|
|
@@ -17,7 +17,6 @@ jobs: | |
ts-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
# Setup Node.js | ||
- name: setup node | ||
uses: actions/[email protected] | ||
|
@@ -62,7 +61,7 @@ jobs: | |
- name: cache rust | ||
uses: Swatinem/rust-cache@v2 | ||
with: | ||
shared-key: "libra" # to share across CI builds, so it is not job-id specific | ||
shared-key: 'libra' # to share across CI builds, so it is not job-id specific | ||
cache-on-failure: true | ||
|
||
- name: check format | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ on: | |
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-publish: | ||
build-and-publish: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -36,7 +36,7 @@ jobs: | |
if: matrix.os == 'windows-latest' | ||
uses: KyleMayes/install-llvm-action@v1 | ||
with: | ||
version: "11.0" | ||
version: '11.0' | ||
directory: ${{ runner.temp }}/llvm | ||
|
||
- name: Set LIBCLANG_PATH | ||
|
@@ -50,16 +50,15 @@ jobs: | |
$var = (get-item $(rustup which rustc)).Directory.Parent.FullName+ '\lib\rustlib\' + (rustc -vV | findstr "host:*").split(':')[1].Trim() + '\lib' | ||
Copy-Item ('${{ github.workspace }}' + '\redist' + '\x86_64\*') -Destination $var -Recurse | ||
######## CACHE ######## | ||
######## CACHE ######## | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: ./src-tauri | ||
shared-key: "${{ matrix.os }}" | ||
cache-on-failure: true | ||
|
||
######## BUILD ######## | ||
######## BUILD ######## | ||
|
||
- name: yarn installation | ||
run: yarn install | ||
|
@@ -72,9 +71,9 @@ jobs: | |
id: build-tauri | ||
uses: tauri-apps/[email protected] | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
TAURI_PRIVATE_KEY: "${{secrets.TAURI_PRIVATE_KEY}}" | ||
TAURI_KEY_PASSWORD: "${{secrets.TAURI_KEY_PASSWORD}}" | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
TAURI_PRIVATE_KEY: '${{secrets.TAURI_PRIVATE_KEY}}' | ||
TAURI_KEY_PASSWORD: '${{secrets.TAURI_KEY_PASSWORD}}' | ||
with: | ||
args: ${{contains(github.ref, 'canary') && '--config src-tauri/tauri.conf.canary.json --features carpe-canary' || '' }} | ||
# pass the rust feature flags for canary if the tag includes "canary" | ||
|
@@ -85,4 +84,3 @@ jobs: | |
releaseDraft: true | ||
prerelease: false | ||
includeUpdaterJson: true | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
] | ||
} | ||
"path": ".", | ||
}, | ||
], | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script type="module" crossorigin src="/assets/index-d5120c7d.js"></script> | ||
<link rel="stylesheet" href="/assets/index-e225b5d2.css"> | ||
<link rel="stylesheet" href="/assets/index-e225b5d2.css" /> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> | ||
<body></body> | ||
</html> |
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
You should check that the npm dev mode is serving on 5050. Sometimes NPM may start with a random port if you have a previous process that hasn't been killed which was using 5050. | ||
|
||
|
||
``` | ||
Your application is ready~! 🚀 | ||
- Local: http://localhost:5050 | ||
``` | ||
``` |
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
Oops, something went wrong.