Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kfiven committed Oct 27, 2023
1 parent ecb6984 commit 32e9805
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cinny
Submodule cinny updated 37 files
+1 −1 .github/workflows/build-pull-request.yml
+2 −2 .github/workflows/deploy-pull-request.yml
+2 −2 .github/workflows/netlify-dev.yml
+2 −2 .github/workflows/prod-deploy.yml
+2 −2 package-lock.json
+1 −1 package.json
+4 −0 src/app/components/editor/Editor.css.ts
+76 −19 src/app/components/editor/Toolbar.tsx
+105 −47 src/app/components/editor/input.ts
+16 −1 src/app/components/editor/keyboard.ts
+35 −6 src/app/components/editor/output.ts
+10 −0 src/app/components/editor/utils.ts
+8 −4 src/app/components/emoji-board/EmojiBoard.tsx
+9 −6 src/app/components/message/Reply.tsx
+1 −1 src/app/components/message/layout/layout.css.ts
+1 −0 src/app/components/typing-indicator/TypingIndicator.tsx
+2 −2 src/app/hooks/useRoomLatestRenderedEvent.ts
+1 −1 src/app/organisms/room/MembersDrawer.tsx
+17 −23 src/app/organisms/room/RoomInput.tsx
+29 −10 src/app/organisms/room/RoomTimeline.tsx
+2 −1 src/app/organisms/room/message/AudioContent.tsx
+10 −4 src/app/organisms/room/message/Message.tsx
+23 −13 src/app/organisms/room/message/MessageEditor.tsx
+1 −1 src/app/organisms/room/message/Reactions.tsx
+8 −0 src/app/organisms/room/message/styles.css.ts
+0 −13 src/app/organisms/room/msgContent.ts
+14 −8 src/app/organisms/settings/Settings.jsx
+55 −21 src/app/plugins/react-custom-html-parser.tsx
+3 −3 src/app/state/settings.ts
+2 −2 src/app/styles/CustomHtml.css.ts
+4 −4 src/app/templates/client/Client.jsx
+237 −60 src/app/utils/markdown.ts
+7 −0 src/app/utils/regex.ts
+5 −1 src/app/utils/room.ts
+10 −1 src/app/utils/sanitize.ts
+1 −1 src/client/state/cons.js
+1 −1 src/index.scss
2 changes: 1 addition & 1 deletion 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": "3.0.0",
"version": "3.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 = "3.0.0"
version = "3.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": "3.0.0"
"version": "3.1.0"
},
"build": {
"distDir": "../cinny/dist",
Expand Down

0 comments on commit 32e9805

Please sign in to comment.