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

Vue3 style changes #1869

Merged
merged 34 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
af0d4f6
fix: update internationalization
gabaldon Jan 17, 2024
3f50715
fix: add window size
gabaldon Jan 18, 2024
7f937ca
fix: update idle function
gabaldon Jan 18, 2024
c187929
fix: fix transactions ui
gabaldon Jan 19, 2024
72553d0
fix(style): fix colors and sizes
gabaldon Jan 22, 2024
8ac6e67
fix: update custom icon component
gabaldon Jan 23, 2024
054969a
fix: fix templates list view
gabaldon Jan 23, 2024
c50cbb8
fix(style): fix form style
gabaldon Jan 24, 2024
c7e2923
fix: update select events name
gabaldon Jan 24, 2024
a5d5a8f
fix: add transitions
gabaldon Jan 24, 2024
58ff987
ci: upgrade to node 20
gabaldon Jan 24, 2024
31c96f5
ci: set node version to 20.11
gabaldon Jan 25, 2024
a7e6eaf
refactor: remove dev-deps
gabaldon Jan 25, 2024
9e32076
fix: remove unnecessary component
gabaldon Jan 25, 2024
16a316a
fix: avoid router warning
gabaldon Jan 25, 2024
eea073f
refactor: remove unnecessary code
gabaldon Jan 25, 2024
6946d6a
fix(style): align disclaimer actions
gabaldon Jan 26, 2024
1898c3b
fix: add vueuse/core
gabaldon Jan 26, 2024
43f2786
fix: setWalletInfos
gabaldon Jan 26, 2024
4f80114
fix: load wallet infos after creating first wallet
Tommytrg Jan 26, 2024
3137f73
fix: update all input event naming
gabaldon Jan 29, 2024
fde8b76
fix: fix social icons in `Community.vue`
gabaldon Jan 29, 2024
38da87d
fix: add correct types
gabaldon Jan 29, 2024
f24c1f9
refactor: always use `CustomIcon` to render svg
gabaldon Jan 30, 2024
b0ed094
fix: avoid set double session timer
gabaldon Feb 2, 2024
53dc01e
fix: avoid set double session timer
gabaldon Feb 2, 2024
50fda02
fix(style): fix dialog footer style
gabaldon Feb 2, 2024
f4784a9
fix: avoid getting default templates until witnet-request-js is compa…
gabaldon Feb 2, 2024
88d8306
chore: use witnet_rust 1.5.6 as min version
Tommytrg May 19, 2023
82c5076
fix(style): fix settings submit actions layout and danger styles
gabaldon Feb 2, 2024
aae65b0
fix(style): update send transactiondialog style and layout
gabaldon Feb 5, 2024
bf41335
fix(style): update icon naming and error style
gabaldon Feb 5, 2024
7a24859
fix: get witnet rust version from electron constants
gabaldon Feb 5, 2024
143c0da
fix: delete unnecessary code
gabaldon Feb 5, 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
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
/dist-electron/
/tests/unit/coverage/
/src/locales/**

/src/components.d.ts
.witnet-rust-testnet-*-wallet
genesis_block.json
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 16.14.0
node-version: 20.11.0

- uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lintAndTest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- uses: actions/[email protected]
with:
node-version: '16.14'
node-version: '20.11.0'
- run: yarn install --network-timeout 1000000
- run: yarn lint:check
- run: yarn test
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 16.14.0
node-version: 20.11.0

- name: Build & release Electron app
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ witnet
/tests/e2e/videos/
/tests/e2e/screenshots/
sheikah-darwin-x64
/src/components.d.ts

# local env files
.env
Expand Down
2 changes: 1 addition & 1 deletion electron/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const STATUS_PATH = {

export const WITNET_CONFIG_FILE_NAME = 'witnet.toml'

export const WITNET_RUST_VERSION = '1.5.0'
export const WITNET_RUST_VERSION = '1.5.6'

export const DEFAULT_WALLET_LOG_LEVEL = 'error'

Expand Down
8 changes: 5 additions & 3 deletions electron/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ const indexHtml = join(process.env.DIST, 'index.html')
async function createWindow() {
win = new BrowserWindow({
title: 'Main window',
icon: join(process.env.PUBLIC, 'favicon.png'),
// TODO: set sheikah icon
// icon: path.join(__static, 'icon.png'),
icon: join(process.env.PUBLIC, '/icon.png'),
width: 1280,
height: 720,
minWidth: 1280,
minHeight: 720,
webPreferences: {
preload,
// Warning: Enable nodeIntegration and disable contextIsolation is not secure in production
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/core": "^10.7.2",
"autoprefixer": "^10.4.16",
"axios": "^1.6.5",
"big.js": "^6.2.1",
Expand Down Expand Up @@ -79,6 +80,7 @@
"vite": "^5.0.11",
"vite-plugin-electron": "^0.28.0-beta.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.10",
"vue-i18n": "^9.9.0",
"vue-json-tree": "^0.4.3",
Expand Down
Loading
Loading