Skip to content

Commit

Permalink
Release v4.2.0 (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfiven authored Sep 11, 2024
1 parent 8a29f48 commit db5a2db
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cinny
Submodule cinny updated 74 files
+2 −2 .github/workflows/build-pull-request.yml
+1 −1 .github/workflows/cla.yml
+1 −1 .github/workflows/docker-pr.yml
+1 −1 .github/workflows/prod-deploy.yml
+1 −2 .npmrc
+128 −0 CODE_OF_CONDUCT.md
+1 −0 contrib/nginx/cinny.domain.tld.conf
+8 −4 docker-nginx.conf
+6 −1 netlify.toml
+3,271 −329 package-lock.json
+8 −3 package.json
+7 −0 public/locales/de.json
+7 −0 public/locales/en.json
+4 −1 src/app/components/editor/Elements.tsx
+4 −1 src/app/components/editor/autocomplete/EmoticonAutocomplete.tsx
+6 −1 src/app/components/editor/autocomplete/UserMentionAutocomplete.tsx
+2 −2 src/app/components/editor/output.ts
+61 −53 src/app/components/emoji-board/EmojiBoard.tsx
+5 −2 src/app/components/event-readers/EventReaders.tsx
+4 −2 src/app/components/image-viewer/ImageViewer.tsx
+5 −3 src/app/components/message/Reaction.tsx
+19 −0 src/app/components/message/Reply.css.ts
+48 −31 src/app/components/message/Reply.tsx
+15 −5 src/app/components/message/content/AudioContent.tsx
+32 −17 src/app/components/message/content/FileContent.tsx
+13 −5 src/app/components/message/content/ImageContent.tsx
+17 −8 src/app/components/message/content/ThumbnailContent.tsx
+17 −5 src/app/components/message/content/VideoContent.tsx
+0 −23 src/app/components/message/content/util.ts
+5 −3 src/app/components/room-card/RoomCard.tsx
+4 −2 src/app/components/room-intro/RoomIntro.tsx
+4 −1 src/app/components/url-preview/UrlPreviewCard.tsx
+4 −1 src/app/features/lobby/LobbyHeader.tsx
+4 −1 src/app/features/lobby/LobbyHero.tsx
+6 −3 src/app/features/lobby/RoomItem.tsx
+6 −3 src/app/features/lobby/SpaceItem.tsx
+15 −12 src/app/features/message-search/SearchResultGroup.tsx
+3 −1 src/app/features/room-nav/RoomNavItem.tsx
+10 −7 src/app/features/room/MembersDrawer.tsx
+1 −2 src/app/features/room/Room.tsx
+28 −18 src/app/features/room/RoomInput.tsx
+26 −37 src/app/features/room/RoomTimeline.tsx
+4 −2 src/app/features/room/RoomViewHeader.tsx
+47 −45 src/app/features/room/message/Message.tsx
+3 −0 src/app/features/room/message/Reactions.tsx
+9 −4 src/app/features/room/reaction-viewer/ReactionViewer.tsx
+10 −0 src/app/hooks/useMediaAuthentication.ts
+5 −11 src/app/hooks/useParsedLoginFlows.ts
+31 −0 src/app/i18n.ts
+129 −91 src/app/molecules/image-pack/ImagePack.jsx
+11 −1 src/app/organisms/invite-user/InviteUser.jsx
+20 −4 src/app/organisms/profile-editor/ProfileEditor.jsx
+5 −1 src/app/organisms/profile-viewer/ProfileViewer.jsx
+1 −1 src/app/pages/auth/AuthFooter.tsx
+65 −45 src/app/pages/auth/SSOLogin.tsx
+1 −3 src/app/pages/auth/login/Login.tsx
+1 −4 src/app/pages/auth/register/Register.tsx
+5 −2 src/app/pages/client/ClientNonUIFeatures.tsx
+1 −1 src/app/pages/client/WelcomePage.tsx
+3 −1 src/app/pages/client/inbox/Invites.tsx
+15 −9 src/app/pages/client/inbox/Notifications.tsx
+21 −17 src/app/pages/client/sidebar/SpaceTabs.tsx
+4 −2 src/app/pages/client/sidebar/UserTab.tsx
+23 −6 src/app/plugins/react-custom-html-parser.tsx
+3 −1 src/app/state/room/roomInputDrafts.ts
+37 −0 src/app/utils/matrix.ts
+28 −13 src/app/utils/room.ts
+1 −5 src/client/action/room.js
+1 −1 src/client/initMatrix.ts
+1 −1 src/client/state/cons.js
+24 −0 src/index.tsx
+47 −0 src/sw.ts
+2 −1 tsconfig.json
+23 −4 vite.config.js
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cinny",
"version": "4.1.0",
"version": "4.2.0",
"description": "Yet another matrix client",
"main": "index.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "cinny"
version = "4.1.0"
version = "4.2.0"
description = "Yet another matrix client"
authors = ["Ajay Bura"]
license = "AGPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Cinny",
"version": "4.1.0"
"version": "4.2.0"
},
"build": {
"distDir": "../cinny/dist",
Expand Down

0 comments on commit db5a2db

Please sign in to comment.