Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArConnect 1.22.0 #593

Merged
merged 36 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b6809d2
Request permission for decrypt and signMessage operations.
Danziger Dec 16, 2024
b26bf12
Fix build.
Danziger Dec 16, 2024
7e54be0
Update decrypt()'s AuthRequest view to show the decrypted data, and a…
Danziger Dec 16, 2024
43b037b
Prevent dispatch() from requesting permission again.
Danziger Dec 16, 2024
58b98f3
add nullability for placeholder
Jonathansoufer Dec 17, 2024
48a049d
add error boundary comp/consts
Jonathansoufer Dec 18, 2024
207444b
move error boundary to its correct folder structure
Jonathansoufer Dec 18, 2024
0d05a31
add fallback base screen
Jonathansoufer Dec 18, 2024
6836535
Merge pull request #582 from arconnectio/feature/decrypt-n-sign-messa…
Danziger Dec 18, 2024
e527b6e
Merge branch 'development' into chore/559-add-error-boundary
Jonathansoufer Dec 18, 2024
c8dd1f9
implement reload
Jonathansoufer Dec 18, 2024
b6cd8bb
add extension cond
Jonathansoufer Dec 18, 2024
865ca29
Merge pull request #586 from arconnectio/chore/559-add-error-boundary
Jonathansoufer Dec 18, 2024
5b1e4e6
wip: new connect flow
pawanpaudel93 Dec 19, 2024
e166ce5
Merge branch 'development' arc-807/new-connect-flow
pawanpaudel93 Dec 19, 2024
9375031
fix: connect on enter or connect button click
pawanpaudel93 Dec 19, 2024
236e549
replace throw w/ loading
Jonathansoufer Dec 19, 2024
3a0294a
Merge branch 'fix/loading-states-error-boundary' into arc-807/new-con…
pawanpaudel93 Dec 19, 2024
035f7c3
refactor: update styles
pawanpaudel93 Dec 19, 2024
277a8fb
Update assets/_locales/zh_CN/messages.json
pawanpaudel93 Dec 20, 2024
686c229
Merge pull request #587 from arconnectio/fix/loading-states-error-bou…
Jonathansoufer Dec 20, 2024
e077616
refactor: Update app settings & add translations
pawanpaudel93 Dec 20, 2024
bdd3bf8
refactor: update translations & wallet selector
pawanpaudel93 Dec 20, 2024
61f9424
refactor: show one popup only for sign data item api
pawanpaudel93 Dec 20, 2024
08b3bee
fix: update light mode colors
pawanpaudel93 Dec 20, 2024
b8d3db4
fix: use await for extension storage
pawanpaudel93 Dec 20, 2024
2a57532
fix: update connect header height based on env
pawanpaudel93 Dec 20, 2024
a755204
fix: use flex to take available height for connect header
pawanpaudel93 Dec 20, 2024
080e87e
fix: make transaction tracker light mode compatible
pawanpaudel93 Dec 23, 2024
df8266f
feat: new logo
LorimerJenkins Dec 20, 2024
5e4fdce
Merge pull request #590 from arconnectio/chore/update-liquidops-icon
pawanpaudel93 Dec 23, 2024
bb26bf7
fix(printer): ensure handleGetCapabilities returns valid response
pawanpaudel93 Dec 23, 2024
bf1e129
Merge pull request #588 from arconnectio/arc-807/new-connect-flow
pawanpaudel93 Dec 23, 2024
1b1563b
Merge branch 'development' into arc-861/print-to-arweave-fix
pawanpaudel93 Dec 23, 2024
c9d8450
Merge pull request #591 from arconnectio/arc-861/print-to-arweave-fix
nicholaswma Dec 23, 2024
06fb8d4
Merge pull request #592 from arconnectio/development
nicholaswma Dec 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

130 changes: 128 additions & 2 deletions assets/_locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"fallback": {
"message": "Oops, something isn't right. Try again later.",
"description": "Fallback error message"
},
"reload": {
"message": "Reload",
"description": "Reload button text"
},
"commonErrorInfo": {
"message": "Error Info",
"description": "Additional Fallback error message"
},
"loading": {
"message": "Loading...",
"description": "Loading text"
},
"extensionDescription": {
"message": "Secure wallet management for Arweave",
"description": "Extension description"
Expand Down Expand Up @@ -974,7 +990,7 @@
"description": "Wallet label"
},
"enter_your_password": {
"message": "Enter your password...",
"message": "Enter your password",
"description": "Enter password placeholder"
},
"connect": {
Expand Down Expand Up @@ -1345,13 +1361,31 @@
"message": "Sign items",
"description": "Batch sign message popup title"
},
"titles_decrypt": {
"message": "Decrypt",
"description": "Request decrypt authorization password"
},
"decrypt_description": {
"message": "$APPNAME$ wants to decrypt and access the following data:",
"description": "Description for decrypting some data",
"placeholders": {
"appname": {
"content": "$1",
"example": "permafacts.arweave.dev"
}
}
},
"decrypt_authorize": {
"message": "Authorize",
"description": "Authorize button label"
},
"titles_signature": {
"message": "Sign message",
"description": "Sign message popup title"
},
"sign_data_description": {
"message": "$APPNAME$ wants to sign a transaction. Review the details below.",
"description": "Desription for signing an item containing a transfer",
"description": "Description for signing an item containing a transfer",
"placeholders": {
"appname": {
"content": "$1",
Expand Down Expand Up @@ -2310,6 +2344,10 @@
"message": "Adding token...",
"description": "Loading message for AuthRequest of type token"
},
"decryptRequestLoading": {
"message": "Decrypting...",
"description": "Loading message for AuthRequest of type decrypt"
},
"signRequestLoading": {
"message": "Signing...",
"description": "Loading message for AuthRequest of type sign"
Expand Down Expand Up @@ -2383,5 +2421,93 @@
"example": "10"
}
}
},
"connect_to_app": {
"message": "Connect to $APPNAME$",
"description": "Connect to app title",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"always_ask": {
"message": "Always ask",
"description": "Always ask"
},
"always_ask_description": {
"message": "Review and confirm every transaction and message.",
"description": "Always ask description"
},
"ask_when_spending": {
"message": "Ask when spending",
"description": "Ask when spending"
},
"ask_when_spending_description": {
"message": "Review and confirm transactions only when assets are being transferred.",
"description": "Ask when spending description"
},
"auto_confirm": {
"message": "Auto-confirm",
"description": "Auto-confirm"
},
"auto_confirm_description": {
"message": "Automatically sign every transaction and message.",
"description": "Auto-confirm description"
},
"custom_permissions": {
"message": "Custom permissions",
"description": "Custom permissions"
},
"set_custom_permissions": {
"message": "Set custom permissions",
"description": "Set custom permissions"
},
"permission_settings": {
"message": "Permission Settings",
"description": "Permission settings title"
},
"select_account": {
"message": "Select an account to connect to $APPNAME$",
"description": "Select account title",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"review": {
"message": "Review",
"description": "Review title"
},
"connect_request_1": {
"message": "$APPNAME$ wants to connect with",
"description": "Connect request 1",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"connect_request_2": {
"message": "with the following permissions",
"description": "Connect request 2"
},
"confirm_permissions": {
"message": "Confirm permissions for $APPNAME$",
"description": "Confirm permissions for app",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"change": {
"message": "Change",
"description": "Change text"
}
}
128 changes: 127 additions & 1 deletion assets/_locales/zh_CN/messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"fallback": {
"message": "哎呀,有些不对劲,稍后再试。",
"description": "Fallback error message"
},
"reload": {
"message": "重新加载",
"description": "Reload button text"
},
"commonErrorInfo": {
"message": "错误信息",
"description": "Additional Fallback error message"
},
"loading": {
"message": "加载中...",
"description": "Loading text"
},
"extensionDescription": {
"message": "Arweave 的安全钱包管理",
"description": "Extension description"
Expand Down Expand Up @@ -966,7 +982,7 @@
"description": "Wallet label"
},
"enter_your_password": {
"message": "输入您的密码...",
"message": "输入您的密码",
"description": "Enter password placeholder"
},
"connect": {
Expand Down Expand Up @@ -1333,6 +1349,24 @@
"message": "批量签署项目",
"description": "批量签署消息弹出标题"
},
"titles_decrypt": {
"message": "Decrypt",
"description": "Request decrypt authorization password"
},
"decrypt_description": {
"message": "$APPNAME$ wants to decrypt and access the following data:",
"description": "Description for decrypting some data",
"placeholders": {
"appname": {
"content": "$1",
"example": "permafacts.arweave.dev"
}
}
},
"decrypt_authorize": {
"message": "授权",
"description": "Authorize button label"
},
"titles_signature": {
"message": "签署消息",
"description": "Sign message popup title"
Expand Down Expand Up @@ -2296,6 +2330,10 @@
"message": "Adding token...",
"description": "Loading message for AuthRequest of type token"
},
"decryptRequestLoading": {
"message": "Decrypting...",
"description": "Loading message for AuthRequest of type decrypt"
},
"signRequestLoading": {
"message": "Signing...",
"description": "Loading message for AuthRequest of type sign"
Expand Down Expand Up @@ -2369,5 +2407,93 @@
"example": "10"
}
}
},
"connect_to_app": {
"message": "连接到 $APPNAME$",
"description": "连接到应用标题",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"always_ask": {
"message": "始终询问",
"description": "Always ask"
},
"always_ask_description": {
"message": "审核并确认每笔交易和消息。",
"description": "Always ask description"
},
"ask_when_spending": {
"message": "花费时询问",
"description": "Ask when spending"
},
"ask_when_spending_description": {
"message": "仅在资产被转移时审核并确认交易。",
"description": "Ask when spending description"
},
"auto_confirm": {
"message": "自动确认",
"description": "Auto-confirm"
},
"auto_confirm_description": {
"message": "自动签署每笔交易和消息。",
"description": "Auto-confirm description"
},
"custom_permissions": {
"message": "自定义权限",
"description": "Custom permissions"
},
"set_custom_permissions": {
"message": "设置自定义权限",
"description": "Set custom permissions"
},
"permission_settings": {
"message": "权限设置",
"description": "Permission settings title"
},
"select_account": {
"message": "选择一个账户连接到 $APPNAME$",
"description": "Select account title",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"review": {
"message": "审核",
"description": "Review title"
},
"connect_request_1": {
"message": "$APPNAME$ 想要连接到",
"description": "Connect request 1",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"connect_request_2": {
"message": "以下权限",
"description": "Connect request 2"
},
"confirm_permissions": {
"message": "确认 $APPNAME$ 的权限",
"description": "Confirm permissions for app",
"placeholders": {
"appname": {
"content": "$1",
"example": "ArConnect"
}
}
},
"change": {
"message": "更换",
"description": "Change text"
}
}
7 changes: 7 additions & 0 deletions assets/ecosystem/arconnect.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 19 additions & 22 deletions assets/ecosystem/liquidops.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading