Skip to content

Commit

Permalink
Release v4.1.0 (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfiven committed Aug 4, 2024
1 parent 2fbcbef commit 8a29f48
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 68 files
+1 −1 .github/workflows/prod-deploy.yml
+14 −12 README.md
+2 −2 package-lock.json
+1 −1 package.json
+86 −0 src/app/components/BackRouteHandler.tsx
+22 −33 src/app/components/RenderMessageContent.tsx
+6 −1 src/app/components/editor/autocomplete/RoomMentionAutocomplete.tsx
+33 −5 src/app/components/editor/input.ts
+13 −4 src/app/components/editor/output.ts
+2 −0 src/app/components/editor/slate.d.ts
+5 −1 src/app/components/editor/utils.ts
+5 −6 src/app/components/message/RenderBody.tsx
+11 −9 src/app/components/page/Page.tsx
+15 −4 src/app/components/page/style.css.ts
+3 −1 src/app/components/room-card/RoomCard.tsx
+2 −1 src/app/components/url-preview/UrlPreviewCard.tsx
+30 −9 src/app/features/join-before-navigate/JoinBeforeNavigate.tsx
+67 −34 src/app/features/lobby/LobbyHeader.tsx
+26 −29 src/app/features/message-search/SearchResultGroup.tsx
+8 −11 src/app/features/room-nav/RoomNavItem.tsx
+2 −1 src/app/features/room/Room.tsx
+5 −5 src/app/features/room/RoomInput.tsx
+35 −32 src/app/features/room/RoomTimeline.tsx
+2 −2 src/app/features/room/RoomTombstone.tsx
+4 −0 src/app/features/room/RoomView.tsx
+142 −138 src/app/features/room/RoomViewHeader.tsx
+7 −25 src/app/features/room/message/Message.tsx
+14 −0 src/app/hooks/router/useSearchParamsViaServers.ts
+0 −31 src/app/hooks/useDeviceList.js
+35 −0 src/app/hooks/useDeviceList.ts
+43 −0 src/app/hooks/useMentionClickHandler.ts
+14 −7 src/app/hooks/useRoomNavigate.ts
+14 −0 src/app/hooks/useSpoilerClickHandler.ts
+3 −2 src/app/molecules/space-add-existing/SpaceAddExisting.jsx
+2 −2 src/app/pages/Router.tsx
+1 −1 src/app/pages/auth/AuthFooter.tsx
+3 −2 src/app/pages/auth/AuthLayout.tsx
+4 −4 src/app/pages/client/ClientNonUIFeatures.tsx
+11 −1 src/app/pages/client/SidebarNav.tsx
+1 −1 src/app/pages/client/WelcomePage.tsx
+33 −0 src/app/pages/client/direct/DirectCreate.tsx
+2 −2 src/app/pages/client/direct/RoomProvider.tsx
+1 −0 src/app/pages/client/direct/index.ts
+18 −1 src/app/pages/client/explore/Featured.tsx
+27 −9 src/app/pages/client/explore/Server.tsx
+10 −2 src/app/pages/client/home/RoomProvider.tsx
+24 −7 src/app/pages/client/home/Search.tsx
+24 −6 src/app/pages/client/inbox/Invites.tsx
+52 −35 src/app/pages/client/inbox/Notifications.tsx
+7 −12 src/app/pages/client/sidebar/SpaceTabs.tsx
+24 −0 src/app/pages/client/sidebar/UnverifiedTab.css.ts
+49 −0 src/app/pages/client/sidebar/UnverifiedTab.tsx
+1 −0 src/app/pages/client/sidebar/index.ts
+10 −2 src/app/pages/client/space/RoomProvider.tsx
+24 −7 src/app/pages/client/space/Search.tsx
+7 −13 src/app/pages/client/space/Space.tsx
+4 −1 src/app/pages/client/space/SpaceProvider.tsx
+13 −0 src/app/pages/pathSearchParam.ts
+8 −0 src/app/pages/paths.ts
+84 −0 src/app/plugins/matrix-to.ts
+124 −53 src/app/plugins/react-custom-html-parser.tsx
+65 −0 src/app/plugins/via-servers.ts
+1 −1 src/app/state/room/roomToParents.ts
+8 −0 src/app/utils/dom.ts
+8 −6 src/app/utils/keyboard.ts
+7 −10 src/app/utils/matrix.ts
+1 −1 src/client/state/cons.js
+1 −57 src/util/matrixUtil.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.0.3",
"version": "4.1.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.0.3"
version = "4.1.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.0.3"
"version": "4.1.0"
},
"build": {
"distDir": "../cinny/dist",
Expand Down

0 comments on commit 8a29f48

Please sign in to comment.