Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:

env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.7.x' || 'test.quiet' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.8.x' || 'test.quiet' }}
CHECKSUM_PATH: ${{ github.event.action == 'released' && 'packages/desktop/dist/latest-linux.yml' || 'packages/desktop/dist/alpha-linux.yml' }}

steps:
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:

env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.7.x' || 'test.quiet' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.8.x' || 'test.quiet' }}

steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -413,7 +413,7 @@ jobs:

env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.7.x' || 'test.quiet' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.8.x' || 'test.quiet' }}

steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -564,7 +564,7 @@ jobs:
startsWith(github.ref, 'refs/tags/@quiet/desktop')

env:
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.7.x' || 'test.quiet' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.8.x' || 'test.quiet' }}
MAC_UPDATE_CHANNEL_FILE: ${{ github.event.action == 'released' && 'latest-mac.yml' || 'alpha-mac.yml' }}

steps:
Expand Down Expand Up @@ -653,7 +653,7 @@ jobs:

env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.7.x' || 'test.quiet' }}
S3_BUCKET: ${{ github.event.action == 'released' && 'quiet.8.x' || 'test.quiet' }}

steps:
- uses: actions/checkout@v5
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [unreleased]
## [8.0.0]

### Features

Expand All @@ -25,6 +25,8 @@
* Include team ID and createdAt in message encryption and validate on consume [#3304](https://github.com/TryQuiet/quiet/issues/3304)
* Require team ID on invite links, use team ID for all chain operations, and hash team name on sigchains [#3296](https://github.com/TryQuiet/quiet/issues/3296)
* Use randomly generated Base58 usernames on sigchain [#3321](https://github.com/TryQuiet/quiet/issues/3321)
* Update install directories for 8.x [#3338](https://github.com/TryQuiet/quiet/issues/3338)
* Update S3 bucket for 8.x release binaries [#3346](https://github.com/TryQuiet/quiet/issues/3346as)

## [7.3.0]

Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/const.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const DESKTOP_DEV_DATA_DIR = 'Quietdev'
export const DESKTOP_DATA_DIR = 'Quiet7'
export const DESKTOP_DATA_DIR = 'Quiet8'

export enum Site {
DOMAIN = 'tryquiet.org',
Expand Down
28 changes: 28 additions & 0 deletions packages/desktop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [8.0.0]

### Features

* Allow all users to create private channels [#3277](https://github.com/TryQuiet/quiet/issues/3277)
* Allow channel members to add members to private channels [#3300](https://github.com/TryQuiet/quiet/issues/3300)

### Fixes

* Don't send deletion message for private channels [#3273](https://github.com/TryQuiet/quiet/issues/3273)
* Ensure notification registration waits for auth handshake [#3289](https://github.com/TryQuiet/quiet/issues/3289)
* Fixed a race condition that can cause stale data to remain after leaving community [#3253](https://github.com/TryQuiet/quiet/issues/3253)
* Temporarily disable private channels
* Validate user ID on decrypted message matches the signature [#3334](https://github.com/TryQuiet/quiet/issues/3334)

### Chores

* Enable QSS on prod
* Add script for cleaning compiled/generated code directories

### Breaking

* Include team ID and createdAt in message encryption and validate on consume [#3304](https://github.com/TryQuiet/quiet/issues/3304)
* Require team ID on invite links, use team ID for all chain operations, and hash team name on sigchains [#3296](https://github.com/TryQuiet/quiet/issues/3296)
* Use randomly generated Base58 usernames on sigchain [#3321](https://github.com/TryQuiet/quiet/issues/3321)
* Update install directories for 8.x [#3338](https://github.com/TryQuiet/quiet/issues/3338)
* Update S3 bucket for 8.x release binaries [#3346](https://github.com/TryQuiet/quiet/issues/3346as)

## [7.3.0]

### Features
Expand Down
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.0",
"version": "8.0.0",
"description": "Decentralized team chat",
"main": "dist/main/main.js",
"scripts": {
Expand Down
28 changes: 28 additions & 0 deletions packages/mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [8.0.0]

### Features

* Allow all users to create private channels [#3277](https://github.com/TryQuiet/quiet/issues/3277)
* Allow channel members to add members to private channels [#3300](https://github.com/TryQuiet/quiet/issues/3300)

### Fixes

* Don't send deletion message for private channels [#3273](https://github.com/TryQuiet/quiet/issues/3273)
* Ensure notification registration waits for auth handshake [#3289](https://github.com/TryQuiet/quiet/issues/3289)
* Fixed a race condition that can cause stale data to remain after leaving community [#3253](https://github.com/TryQuiet/quiet/issues/3253)
* Temporarily disable private channels
* Validate user ID on decrypted message matches the signature [#3334](https://github.com/TryQuiet/quiet/issues/3334)

### Chores

* Enable QSS on prod
* Add script for cleaning compiled/generated code directories

### Breaking

* Include team ID and createdAt in message encryption and validate on consume [#3304](https://github.com/TryQuiet/quiet/issues/3304)
* Require team ID on invite links, use team ID for all chain operations, and hash team name on sigchains [#3296](https://github.com/TryQuiet/quiet/issues/3296)
* Use randomly generated Base58 usernames on sigchain [#3321](https://github.com/TryQuiet/quiet/issues/3321)
* Update install directories for 8.x [#3338](https://github.com/TryQuiet/quiet/issues/3338)
* Update S3 bucket for 8.x release binaries [#3346](https://github.com/TryQuiet/quiet/issues/3346as)

## [7.3.0]

### Features
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 630
versionName "7.3.0"
versionCode 634
versionName "8.0.0"
resValue("string", "build_config_package", "com.quietmobile")
testBuildType = System.getProperty("testBuildType", "debug")
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private static void deleteBackendData() {

Context context = reactContext.getApplicationContext();
try {
FileUtils.deleteDirectory(new File(context.getFilesDir(), "backend/files7"));
FileUtils.deleteDirectory(new File(context.getFilesDir(), "backend/files8"));
} catch (IOException e) {
Log.e("CommunicationModule", e.toString());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import kotlin.coroutines.suspendCoroutine

object Utils {
fun createDirectory(context: Context): String {
val dataDirectory = File(context.filesDir, "backend/files7")
val dataDirectory = File(context.filesDir, "backend/files8")
dataDirectory.mkdirs()

return dataDirectory.absolutePath
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/ios/DataDirectory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class DataDirectory: NSObject {
let paths = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
let documentsDirectory = paths[0]
let docURL = URL(string: documentsDirectory)!
let dataPath = docURL.appendingPathComponent("backend/files7")
let dataPath = docURL.appendingPathComponent("backend/files8")
if !FileManager.default.fileExists(atPath: dataPath.path) {
do {
try FileManager.default.createDirectory(atPath: dataPath.path, withIntermediateDirectories: true, attributes: nil)
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.0</string>
<string>8.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>583</string>
<string>587</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.0</string>
<string>8.0.0</string>
<key>CFBundleVersion</key>
<string>59</string>
<string>63</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.0</string>
<string>8.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>571</string>
<string>575</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.0",
"version": "8.0.0",
"scripts": {
"build": "tsc -p tsconfig.build.json --noEmit",
"storybook-android": "react-native run-android --mode=storybookDebug --appIdSuffix=storybook.debug",
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/src/utils/shareAllData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { createLogger } from './logger'

const logger = createLogger('shareAllData')

const DATA_DIR = RNFS.DocumentDirectoryPath + '/backend/files7'
const DATA_DIR = RNFS.DocumentDirectoryPath + '/backend/files8'
const LOGS_DIR = RNFS.DocumentDirectoryPath + '/logs'
const SHARE_DIR = RNFS.CachesDirectoryPath + '/quiet-data-share'
const SUPPORT_EMAIL = 'logs@tryquiet.org'
Expand Down
Loading