Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
103ec81
encounters for params work now, are loaded etc., this is dependend on…
patrickwieth Jun 1, 2025
1e47b65
made cardleading work
lxgr-linux Jul 14, 2025
7cc8056
made userview work
lxgr-linux Jul 14, 2025
c2feadd
fixed voting
lxgr-linux Jul 14, 2025
5ef3a7b
fixed galleryComponent warnings
lxgr-linux Jul 14, 2025
8768387
fixed eslint config with prettier
lxgr-linux Jul 14, 2025
9f9d19b
linted
lxgr-linux Jul 14, 2025
c024794
fixed eslintrc
lxgr-linux Jul 15, 2025
b8651d0
upped browserlist
lxgr-linux Jul 15, 2025
2ccfc51
made gallery filters filter
lxgr-linux Jul 15, 2025
8d042c3
Merge branch 'master' of github.com:DecentralCardGame/frontend into f…
lxgr-linux Jul 15, 2025
720ccfc
fixed gallery filter queries
lxgr-linux Jul 15, 2025
0440953
removed unneeded modal stuff
lxgr-linux Jul 15, 2025
1a4d402
safeartwork works now
lxgr-linux Jul 15, 2025
951d93a
added byte arr util
lxgr-linux Jul 15, 2025
527963c
fixes to encounter creator
lxgr-linux Jul 15, 2025
cc6f16c
Added published cardchain client
lxgr-linux Jul 16, 2025
65b9bcc
Adjusted deps
lxgr-linux Jul 16, 2025
93d8daf
added http api
lxgr-linux Jul 16, 2025
2117160
fixed: added https tendermint ws
lxgr-linux Jul 17, 2025
7be1771
maybe fixed aminos
lxgr-linux Jul 18, 2025
b7aaec3
fixed import path
lxgr-linux Jul 18, 2025
f1d0572
upped package json
lxgr-linux Jul 18, 2025
e3a268d
reinstalled shit
lxgr-linux Jul 18, 2025
cc4b1dc
auto signer in ts-gen
lxgr-linux Jul 18, 2025
8889f8e
fixed faucet port
lxgr-linux Jul 24, 2025
e96c78f
fix development env and add encounter draw mode
patrickwieth Jul 30, 2025
7fce8d8
Merge branch 'feat/v50_der_gnade' of github.com:DecentralCardGame/fro…
lxgr-linux Jul 30, 2025
376bfbe
Made encounters ACKSHUALLY work now
lxgr-linux Jul 30, 2025
3538dcc
Added types to encounter creator
lxgr-linux Jul 30, 2025
33cb734
fix: made edit encounter work
lxgr-linux Jul 30, 2025
d8ab3b2
Merge pull request #345 from DecentralCardGame/encounterParams
lxgr-linux Jul 30, 2025
9da4f2a
make changing of encounter pic via ui possible
patrickwieth Jan 5, 2026
5b43ee6
Merge pull request #348 from DecentralCardGame/encounterParams
patrickwieth Jan 7, 2026
bce3fb6
chore: browser list
lxgr-linux Feb 1, 2026
1e5bb01
fix: Authentication error with wrong Permissions
lxgr-linux Feb 1, 2026
7b9c35c
feat: v0.0.41
lxgr-linux Feb 2, 2026
82696cb
fix: fixed navbar on mobile
lxgr-linux Feb 2, 2026
c6844c7
fix: Real fix for navbar
lxgr-linux Feb 2, 2026
012a12d
fix: Navigiation links
lxgr-linux Feb 2, 2026
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 .env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ VITE_APP_FAUCET="https://cardchain.crowdcontrol.network/faucet/claimTokens"

VITE_APP_FAUCET_SITEKEY="ea68532a-a9e6-4f99-9361-db90a3071b72"
VITE_APP_ADDRESS_PREFIX=cc
VITE_APP_CHAIN_ID="cardtestnet-13"
VITE_APP_CHAIN_ID="cardtestnet-14"
VITE_APP_CHAIN_NAME="Cardchain"
VITE_APP_CARDIMG_MAXKB=500
VITE_APP_CARDIMG_SIZE_X=840
Expand Down
8 changes: 4 additions & 4 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VITE_APP_CHAIN_ID="carddevnet-12"
VITE_APP_CHAIN_ID="cardtestnet-14"

VITE_API_COSMOS="http://lxgr.xyz:1317"
VITE_WS_TENDERMINT="http://lxgr.xyz:26657"
VITE_APP_FAUCET="http://lxgr.xyz:4500/claimTokens"
VITE_API_COSMOS="https://lxgr.xyz:1318"
VITE_WS_TENDERMINT="https://lxgr.xyz:26658"
VITE_APP_FAUCET="https://lxgr.xyz:4501/claimTokens"
2 changes: 1 addition & 1 deletion .env.localhost
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_CHAIN_ID="carddevnet-2"
VITE_APP_CHAIN_ID="cardtestnet-14"

VITE_API_COSMOS="http://localhost:1317"
VITE_WS_TENDERMINT="http://localhost:26657"
Expand Down
86 changes: 46 additions & 40 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,60 @@ module.exports = {
env: {
node: true,
},
extends: ["plugin:vue/vue3-recommended", "eslint:recommended"],
plugins: ["vue"],
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "prettier"],
plugins: ["unused-imports", "vue"],
parserOptions: {
parser: "@typescript-eslint/parser",
ecmaVersion: 2020,
sourceType: "module",
"vue/no-parsing-error": ["error", {
"abrupt-closing-of-empty-comment": true,
"absence-of-digits-in-numeric-character-reference": true,
"cdata-in-html-content": true,
"character-reference-outside-unicode-range": true,
"control-character-in-input-stream": true,
"control-character-reference": true,
"eof-before-tag-name": true,
"eof-in-cdata": true,
"eof-in-comment": true,
"eof-in-tag": true,
"incorrectly-closed-comment": true,
"incorrectly-opened-comment": true,
"invalid-first-character-of-tag-name": true,
"missing-attribute-value": true,
"missing-end-tag-name": true,
"missing-semicolon-after-character-reference": true,
"missing-whitespace-between-attributes": true,
"nested-comment": true,
"noncharacter-character-reference": true,
"noncharacter-in-input-stream": true,
"null-character-reference": true,
"surrogate-character-reference": true,
"surrogate-in-input-stream": true,
"unexpected-character-in-attribute-name": true,
"unexpected-character-in-unquoted-attribute-value": true,
"unexpected-equals-sign-before-attribute-name": true,
"unexpected-null-character": true,
"unexpected-question-mark-instead-of-tag-name": true,
"unexpected-solidus-in-tag": true,
"unknown-named-character-reference": true,
"end-tag-with-attributes": true,
"duplicate-attribute": true,
"end-tag-with-trailing-solidus": true,
"non-void-html-element-start-tag-with-trailing-solidus": false,
"x-invalid-end-tag": true,
"x-invalid-namespace": true
}]
"vue/no-parsing-error": [
"error",
{
"abrupt-closing-of-empty-comment": true,
"absence-of-digits-in-numeric-character-reference": true,
"cdata-in-html-content": true,
"character-reference-outside-unicode-range": true,
"control-character-in-input-stream": true,
"control-character-reference": true,
"eof-before-tag-name": true,
"eof-in-cdata": true,
"eof-in-comment": true,
"eof-in-tag": true,
"incorrectly-closed-comment": true,
"incorrectly-opened-comment": true,
"invalid-first-character-of-tag-name": true,
"missing-attribute-value": true,
"missing-end-tag-name": true,
"missing-semicolon-after-character-reference": true,
"missing-whitespace-between-attributes": true,
"nested-comment": true,
"noncharacter-character-reference": true,
"noncharacter-in-input-stream": true,
"null-character-reference": true,
"surrogate-character-reference": true,
"surrogate-in-input-stream": true,
"unexpected-character-in-attribute-name": true,
"unexpected-character-in-unquoted-attribute-value": true,
"unexpected-equals-sign-before-attribute-name": true,
"unexpected-null-character": true,
"unexpected-question-mark-instead-of-tag-name": true,
"unexpected-solidus-in-tag": true,
"unknown-named-character-reference": true,
"end-tag-with-attributes": true,
"duplicate-attribute": true,
"end-tag-with-trailing-solidus": true,
"non-void-html-element-start-tag-with-trailing-solidus": false,
"x-invalid-end-tag": true,
"x-invalid-namespace": true,
},
],
},
rules: {
"unused-imports/no-unused-imports": "warn",
"no-console": "off",
"no-debugger": "off",
"no-unused-vars": "off",
quotes: [1, "double"],
semi: [1, "always"],
},
};
7 changes: 0 additions & 7 deletions .fleet/settings.json

This file was deleted.

21 changes: 10 additions & 11 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ name: Node.js CI

on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand All @@ -20,11 +19,11 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm run build --if-present
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm i
- run: npm run build --if-present
2 changes: 1 addition & 1 deletion .github/workflows/test_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
# Setting an environment variable with the value of a configuration variable
LABEL: ${{
contains(github.event.pull_request.labels.*.name, 'deploy_5173') && 'deploy_5173' ||
contains(github.event.pull_request.labels.*.name, 'deploy_5173') && 'deploy_5173' ||
(contains(github.event.pull_request.labels.*.name, 'deploy_5174') && 'deploy_5174' || 'none')
}}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ TypeScript cannot handle type information for `.vue` imports by default, so we r
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:

1. Disable the built-in TypeScript Extension
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.

## Customize configuration
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
Loading