diff --git a/packages/desktop/package-lock.json b/packages/desktop/package-lock.json index 11c6d6e4ac..99b586a26c 100644 --- a/packages/desktop/package-lock.json +++ b/packages/desktop/package-lock.json @@ -1,12 +1,12 @@ { "name": "@quiet/desktop", - "version": "7.3.4", + "version": "7.3.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@quiet/desktop", - "version": "7.3.4", + "version": "7.3.5", "license": "GPL-3.0-or-later", "dependencies": { "@dotenvx/dotenvx": "1.39.0", diff --git a/packages/desktop/package.json b/packages/desktop/package.json index f1395bd6c8..f8e7bfda71 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -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": { diff --git a/packages/desktop/src/renderer/containers/widgets/breakingChangesWarning/BreakingChangesWarning.tsx b/packages/desktop/src/renderer/containers/widgets/breakingChangesWarning/BreakingChangesWarning.tsx index 3fa2cb67cb..c8fd0b226e 100644 --- a/packages/desktop/src/renderer/containers/widgets/breakingChangesWarning/BreakingChangesWarning.tsx +++ b/packages/desktop/src/renderer/containers/widgets/breakingChangesWarning/BreakingChangesWarning.tsx @@ -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 = ( ) diff --git a/packages/mobile/android/app/build.gradle b/packages/mobile/android/app/build.gradle index e0d9ed2b89..6e44e27067 100644 --- a/packages/mobile/android/app/build.gradle +++ b/packages/mobile/android/app/build.gradle @@ -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" diff --git a/packages/mobile/ios/Quiet/Info.plist b/packages/mobile/ios/Quiet/Info.plist index f7246d118a..0851ecb17b 100644 --- a/packages/mobile/ios/Quiet/Info.plist +++ b/packages/mobile/ios/Quiet/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 7.3.4 + 7.3.5 CFBundleSignature ???? CFBundleURLTypes @@ -34,7 +34,7 @@ CFBundleVersion - 581 + 589 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS diff --git a/packages/mobile/ios/QuietNotificationServiceExtension/Info.plist b/packages/mobile/ios/QuietNotificationServiceExtension/Info.plist index 344d093fd6..9b065b72cf 100644 --- a/packages/mobile/ios/QuietNotificationServiceExtension/Info.plist +++ b/packages/mobile/ios/QuietNotificationServiceExtension/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 7.3.4 + 7.3.5 CFBundleVersion - 61 + 65 FirebaseAppDelegateProxyEnabled NSAppTransportSecurity diff --git a/packages/mobile/ios/QuietTests/Info.plist b/packages/mobile/ios/QuietTests/Info.plist index 6e7776c69f..77d5d6d45c 100644 --- a/packages/mobile/ios/QuietTests/Info.plist +++ b/packages/mobile/ios/QuietTests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 7.3.4 + 7.3.5 CFBundleSignature ???? CFBundleVersion - 575 + 577 diff --git a/packages/mobile/package-lock.json b/packages/mobile/package-lock.json index 7ed660aa94..e7844c9ffc 100644 --- a/packages/mobile/package-lock.json +++ b/packages/mobile/package-lock.json @@ -1,12 +1,12 @@ { "name": "@quiet/mobile", - "version": "7.3.4", + "version": "7.3.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@quiet/mobile", - "version": "7.3.4", + "version": "7.3.5", "dependencies": { "@d11/react-native-fast-image": "8.11.1", "@hcaptcha/react-native-hcaptcha": "^2.1.0", diff --git a/packages/mobile/package.json b/packages/mobile/package.json index ec91e8d73f..6a2e789465 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -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",