Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
c653128
refactor: Migrate CreateSingleItemModal class component to a function…
cyaiox Sep 3, 2025
1671675
feat: Update getEmoteData to return a new property secondaryArmature …
cyaiox Sep 7, 2025
43596ad
feat: Enhance item types with new EmoteData structure and outcomes
cyaiox Sep 7, 2025
99d28ea
fix: Get metrics from getEmoteData method
cyaiox Sep 7, 2025
88310d0
feat: Refactor CreateSingleItemModal state to a reducer pattern
cyaiox Sep 7, 2025
bbc2b13
feat: Refactor CreateSingleItemModal into smaller components
cyaiox Sep 7, 2025
b8e4fef
feat: Add Outcomes section to the Emotes Details
cyaiox Sep 7, 2025
28dcf2c
fix: Add missing import
cyaiox Sep 7, 2025
fe31c3c
fix: Send outcomes for Social Emotes
cyaiox Sep 17, 2025
60b6821
fix: Use local types
cyaiox Sep 17, 2025
4f7a400
fix: Local types
cyaiox Sep 17, 2025
48745c1
fix: Button loading state
cyaiox Sep 17, 2025
8725377
chore: Update dcl-catalyst-client
cyaiox Sep 25, 2025
42ca63b
feat: Update emote metadata handling outcome types
cyaiox Sep 25, 2025
9407681
fix: Use types from @dcl/schemas
cyaiox Sep 25, 2025
f1a4c70
feat: Build emote entity metadata using ADR287 schema
cyaiox Sep 25, 2025
14db231
fix: Update social emote structure
cyaiox Sep 25, 2025
ef29bd4
fix: catalyst-client lib
cyaiox Sep 25, 2025
5b1129d
fix: Animation data
cyaiox Sep 26, 2025
1dcd306
chore: Use AP1 catalyst server
cyaiox Sep 26, 2025
cbdff8f
chore: test vercel command
cyaiox Sep 29, 2025
4acd06c
fix: vercel json
cyaiox Sep 29, 2025
a464eb8
fix: types
cyaiox Sep 29, 2025
c16a5ea
feat: Add DynamicInput component
cyaiox Oct 1, 2025
2c00c5b
chore: Update @dcl/schemas package
cyaiox Oct 1, 2025
abe52e8
fix: Refactor buildEmoteMetadata to properly handle outcomeType
cyaiox Oct 1, 2025
a4a58d1
feat: Add panels to edit social emote outcomes in the RightPanel
cyaiox Oct 1, 2025
adfdde9
feat: Add translations
cyaiox Oct 1, 2025
1f08c52
fix: Autocomplete social emote data
cyaiox Oct 1, 2025
e8e3799
fix: Remove unused var
cyaiox Oct 1, 2025
1a610e3
fix: Add empty option for audio
cyaiox Oct 1, 2025
689b41e
fix: Remove unused translation
cyaiox Oct 1, 2025
212fa8c
fix: Optional value for audio and animations
cyaiox Oct 1, 2025
add5acd
fix: Send outcomeType to the metadata
cyaiox Oct 13, 2025
1deff3e
chore: Update CI/CD node version to 22
cyaiox Oct 13, 2025
2677925
chore: Remove custom install command
cyaiox Oct 13, 2025
05a757e
fix: Dyanmic input
cyaiox Oct 15, 2025
ad46b87
fix: Autocomplete animations logic
cyaiox Oct 22, 2025
72409a2
fix: tests
cyaiox Oct 22, 2025
ed571bd
feat: Add AnimationControls component to select a social emote clip
cyaiox Nov 4, 2025
3b3e2a6
fix: Pass startAnimation and outcomes properties to EmoteDataADR74
cyaiox Nov 4, 2025
a733a61
feat: Send startAnimation to the createSingleItemModal reducer
cyaiox Nov 4, 2025
9421942
feat: Pass startAnimation and outcomes to the WearablePreview emote m…
cyaiox Nov 4, 2025
b03b563
fix: Types and use emoteDataADR74
cyaiox Nov 4, 2025
7eacb8d
chore: Upgrade decentraland-ui2 package
cyaiox Nov 6, 2025
d57cb90
fix: Update types reference
cyaiox Nov 6, 2025
fa63e10
fix: type import
cyaiox Nov 6, 2025
0dbec30
fix: Send Emote Data to adr287
cyaiox Nov 13, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
- uses: actions/checkout@v2
- name: Use Node.js 22.x
uses: actions/setup-node@v4.0.1
with:
node-version: 20.x
node-version: 22.x
cache: 'npm'
- name: Upgrade npm
run: npm i -g npm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
- uses: actions/checkout@v2
- name: Use Node.js 22.x
uses: actions/setup-node@v4.0.1
with:
node-version: 20.x
node-version: 22.x
cache: 'npm'
- name: Set package.json version
uses: decentraland/oddish-action@master
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v1
- uses: actions/checkout@v2
- name: Use Node.js 22.x
uses: actions/setup-node@v4.0.1
with:
node-version: 20.x
node-version: 22.x
- name: Install
run: npm ci --legacy-peer-deps
- name: Test
Expand Down
Loading
Loading