Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions packages/desktop/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 packages/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
},
"homepage": "https://github.com/TryQuiet",
"@comment version": "To build new version for specific platform, just replace platform in version tag to one of following linux, mac, windows",
"version": "7.3.4",
"version": "7.3.5",
"description": "Decentralized team chat",
"main": "dist/main/main.js",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ const BreakingChangesWarning = () => {

const title = 'Update available'
const message =
'Quiet’s next release makes joining communities faster and more reliable by letting people join when the owner is offline! 🎉 However, these changes are not backwards compatible, so you must re-install Quiet from tryquiet.org and re-create or re-join your community. 😥 This version of Quiet will no longer receive any updates or security fixes, so please re-install soon. We apologize for the inconvenience.'
'Quiet 8.0 includes significant improvements to notifications and joining speed that are not backwards compatible, so you must re-install Quiet from tryquiet.org and re-create or re-join your community. This version of Quiet (7.x) will no longer receive any updates or security fixes, so please re-install soon. We apologize for the inconvenience.'

const updateAction = useCallback(() => {
shell.openExternal(`${Site.MAIN_PAGE}#Downloads`)
}, [])

useEffect(() => {
modal.handleOpen() // Open modal once per app start
}, [])

const updateButton = (
<Button
variant='contained'
Expand All @@ -35,7 +39,7 @@ const BreakingChangesWarning = () => {
}}
fullWidth
>
Install Quiet 2.x
Install Quiet 8.x
</Button>
)

Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ android {
applicationId = "com.quietmobile"
minSdkVersion(rootProject.ext.minSdkVersion)
targetSdkVersion(rootProject.ext.targetSdkVersion)
versionCode 628
versionName "7.3.4"
versionCode 636
versionName "7.3.5"
resValue("string", "build_config_package", "com.quietmobile")
testBuildType = System.getProperty("testBuildType", "debug")
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/ios/Quiet/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>7.3.4</string>
<string>7.3.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>581</string>
<string>589</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false />
<key>LSRequiresIPhoneOS</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>7.3.4</string>
<string>7.3.5</string>
<key>CFBundleVersion</key>
<string>61</string>
<string>65</string>
<key>FirebaseAppDelegateProxyEnabled</key>
<false />
<key>NSAppTransportSecurity</key>
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/ios/QuietTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>7.3.4</string>
<string>7.3.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>575</string>
<string>577</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions packages/mobile/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 packages/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiet/mobile",
"version": "7.3.4",
"version": "7.3.5",
"scripts": {
"build": "tsc -p tsconfig.build.json --noEmit",
"storybook-android": "react-native run-android --mode=storybookDebug --appIdSuffix=storybook.debug",
Expand Down
Loading