Skip to content

Commit

Permalink
🟣 Release 5.2.2
Browse files Browse the repository at this point in the history
Merge pull request #6310 from ikprk/release/5.2.2
  • Loading branch information
ikprk authored May 21, 2024
2 parents 05a23ca + ec951bb commit 66fcc81
Show file tree
Hide file tree
Showing 147 changed files with 8,140 additions and 7,374 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.2.2] - 2024-05-21

### Added

- Segment metrics
- New landing page

### Fixed

- Meta server fix
- CRT UI/UX fixes


## [5.2.1] - 2024-05-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"typescript": "^5.1.6"
"typescript": "5.1.6"
},
"resolutions": {
"@polkadot/api": "10.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/atlas-meta-server/src/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const generateVideoSchemaTagsHtml = (
{
type: 'regular',
prop: 'isFamilyFriendly',
value: (!(video.isExplicit ?? true)).toString(),
value: (!(video.isExplicit ?? false)).toString(),
},
{
type: 'regular',
Expand Down
2 changes: 1 addition & 1 deletion packages/atlas/atlas.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ general:
appOgImgPath: '/og-image.webp' # Path to the open graph image - used in open graph meta tags in HTML
pioneerMemberUrlPrefix: 'https://dao.joystream.org/#/members' # URL prefix for Pioneer member profile page - used to link to member details
joystreamLandingPageUrl: 'https://www.joystream.org' # URL for Joystream landing page - used in the footer and in "Learn more" links
joystreamDiscordUrl: 'https://discord.gg/DE9UN3YpRP' # URL for Joystream Discord - used for support when errors occur
joystreamDiscordUrl: 'https://discord.gg/joystream' # URL for Joystream Discord - used for support when errors occur
appContentFocus: 'web3 & crypto' # Content focus of given app. Provide a string, for example `web & crypto` or `sport`
crtMaintenanceMode: false
storage:
Expand Down
6 changes: 3 additions & 3 deletions packages/atlas/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@joystream/atlas",
"description": "UI for consuming Joystream - a user governed video platform",
"version": "5.2.1",
"version": "5.2.2",
"license": "GPL-3.0",
"scripts": {
"start": "vite",
Expand Down Expand Up @@ -32,7 +32,7 @@
"madge:unused": "madge --orphans ./src/* --ts-config ./tsconfig.json --extensions ts,tsx --exclude '.stories.tsx$'"
},
"dependencies": {
"@apollo/client": "^3.7.2",
"@apollo/client": "3.7.2",
"@elastic/apm-rum": "^5.12.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
Expand Down Expand Up @@ -60,7 +60,7 @@
"blake3": "2.1.7",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"comlink": "^4.3.1",
"comlink": "4.3.1",
"cropperjs": "^1.5.13",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/atlas/src/api/hooks/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export const useFollowChannel = (opts?: MutationHookOptions<FollowChannelMutatio
id,
}),
fields: {
followsNum: () => mutationResult.data?.followChannel.follows,
followsNum: () => mutationResult.data?.followChannel.follows ?? 0,
},
})
},
Expand Down Expand Up @@ -195,7 +195,7 @@ export const useUnfollowChannel = (opts?: MutationHookOptions<UnfollowChannelMut
id,
}),
fields: {
followsNum: () => mutationResult.data?.unfollowChannel.follows,
followsNum: () => mutationResult.data?.unfollowChannel.follows ?? 0,
},
})
},
Expand Down
2 changes: 1 addition & 1 deletion packages/atlas/src/api/hooks/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const useAddVideoView = (opts?: Omit<MutationHookOptions<AddVideoViewMuta
id: mutationResult.data?.addVideoView.videoId,
}),
fields: {
viewsNum: () => mutationResult.data?.addVideoView.viewsNum,
viewsNum: () => mutationResult.data?.addVideoView.viewsNum ?? 0,
},
})
},
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions packages/atlas/src/assets/roadmap/community.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/atlas/src/assets/roadmap/content.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/atlas/src/assets/roadmap/creator-tokens.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions packages/atlas/src/assets/roadmap/dollar-sign.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/atlas/src/assets/roadmap/gear.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 66fcc81

Please sign in to comment.