Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit 6c2c33f

Browse files
authored
Merge pull request #2 from Crossbell-Box/feat/character
Feat/character
2 parents 681e1ba + 95fdc90 commit 6c2c33f

20 files changed

Lines changed: 472 additions & 144 deletions

.github/workflows/build-release.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,25 @@ jobs:
3434

3535
- name: Build
3636
run: pnpm build
37+
env:
38+
NODE_OPTIONS: --max_old_space_size=4096
3739

3840
- name: Package
3941
run: |
4042
cd ./dist/
4143
zip -r ../crosssync-${{ env.TAG_NAME }}.zip ./
4244
cd ../
4345
44-
- name: Submit to Chrome Web Store
45-
continue-on-error: true
46-
run: |
47-
pnpm install chrome-webstore-upload-cli --save-dev
48-
npx chrome-webstore-upload-cli upload --source ./crosssync-${{ env.TAG_NAME }}.zip --auto-publish
49-
env:
50-
EXTENSION_ID: cilehfhekljoecdbbimgebbncpjagmon
51-
CLIENT_ID: ${{ secrets.CWS_CLIENT_ID }}
52-
CLIENT_SECRET: ${{ secrets.CWS_CLIENT_SECRET }}
53-
REFRESH_TOKEN: ${{ secrets.CWS_REFRESH_TOKEN }}
46+
# - name: Submit to Chrome Web Store
47+
# continue-on-error: true
48+
# run: |
49+
# pnpm install chrome-webstore-upload-cli --save-dev
50+
# npx chrome-webstore-upload-cli upload --source ./crosssync-${{ env.TAG_NAME }}.zip --auto-publish
51+
# env:
52+
# EXTENSION_ID: cilehfhekljoecdbbimgebbncpjagmon
53+
# CLIENT_ID: ${{ secrets.CWS_CLIENT_ID }}
54+
# CLIENT_SECRET: ${{ secrets.CWS_CLIENT_SECRET }}
55+
# REFRESH_TOKEN: ${{ secrets.CWS_REFRESH_TOKEN }}
5456

5557
- name: Release
5658
uses: softprops/action-gh-release@v1

.github/workflows/build-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030

3131
- name: Build
3232
run: pnpm build
33+
env:
34+
NODE_OPTIONS: --max_old_space_size=4096
3335

3436
- name: Pack and upload Artifact
3537
uses: actions/upload-artifact@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CrossSync is a socially-oriented web3 Dapp that runs on the Crossbell. CrossSync
2525

2626
Crossbell allows users the ability to take back their data ownership; CrossSync makes owning your data a fun and engaging social experience.
2727

28-
To get started, you’ll need go to [Crossbell Faucet](https://faucet.crossbell.io) and get some $CSB. After you’ve connected your wallet and received the $CSB, you’ll be able to mint a profile on CrossSync.
28+
To get started, you’ll need go to [Crossbell Faucet](https://faucet.crossbell.io) and get some $CSB. After you’ve connected your wallet and received the $CSB, you’ll be able to mint a character on CrossSync.
2929

3030
## 🪙 Special
3131

components.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ declare module '@vue/runtime-core' {
1616
Header: typeof import('./src/components/Header.vue')['default']
1717
InfiniteScroll: typeof import('element-plus/es')['ElInfiniteScroll']
1818
Loading: typeof import('element-plus/es')['ElLoadingDirective']
19-
Profiles: typeof import('./src/components/Profiles.vue')['default']
19+
Characters: typeof import('./src/components/Characters.vue')['default']
2020
RouterLink: typeof import('vue-router')['RouterLink']
2121
RouterView: typeof import('vue-router')['RouterView']
2222
Sidebar: typeof import('./src/components/Sidebar.vue')['default']

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"axios": "^0.27.2",
2525
"bind-decorator": "^1.0.11",
2626
"buffer": "^6.0.3",
27-
"crossbell.js": "^0.5.18",
27+
"crossbell.js": "^0.7.10",
2828
"element-plus": "2.2.2",
2929
"ethers": "^5.6.8",
3030
"events": "^3.3.0",
@@ -33,7 +33,7 @@
3333
"metamask-extension-provider": "^3.0.0",
3434
"moment": "^2.29.3",
3535
"process": "^0.11.10",
36-
"unidata.js": "^0.5.2",
36+
"unidata.js": "^0.5.10",
3737
"util": "^0.12.4",
3838
"vue": "^3.2.36",
3939
"vue-router": "^4.0.15",

0 commit comments

Comments
 (0)