Skip to content

Commit

Permalink
Merge pull request #1457 from TryQuiet/develop
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
Kacper-RF committed Apr 18, 2023
2 parents d61bfdd + 6ffbc2a commit a392299
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 15 deletions.
8 changes: 8 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.2.0-alpha.27](https://github.com/TryQuiet/backend/compare/@quiet/[email protected]...@quiet/[email protected]) (2023-04-18)

**Note:** Version bump only for package @quiet/backend





# [1.2.0-alpha.26](https://github.com/TryQuiet/backend/compare/@quiet/[email protected]...@quiet/[email protected]) (2023-04-17)

**Note:** Version bump only for package @quiet/backend
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/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/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiet/backend",
"version": "1.2.0-alpha.26",
"version": "1.2.0-alpha.27",
"description": "tlg-manager",
"types": "lib/index.d.ts",
"type": "module",
Expand Down
5 changes: 3 additions & 2 deletions packages/backend/src/libp2p/connectionsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,16 +257,17 @@ export class ConnectionsManager extends EventEmitter {
if ([ServiceState.LAUNCHING, ServiceState.LAUNCHED].includes(this.communityState)) return
this.communityState = ServiceState.LAUNCHING
}

const registrarData = await this.localStorage.get(LocalDBKeys.REGISTRAR)
if (registrarData) {
if ([ServiceState.LAUNCHING, ServiceState.LAUNCHED].includes(this.registrarState)) return
this.registrarState = ServiceState.LAUNCHING
await this.registration.launchRegistrar(registrarData)
}
if (community) {
await this.launchCommunity(community)
}
if (registrarData) {
await this.registration.launchRegistrar(registrarData)
}
}

public async closeAllServices(options: {saveTor: boolean} = { saveTor: false }) {
Expand Down
8 changes: 8 additions & 0 deletions packages/desktop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.2.0-alpha.30](https://github.com/TryQuiet/quiet/compare/[email protected]@1.2.0-alpha.30) (2023-04-18)

**Note:** Version bump only for package quiet





# [1.2.0-alpha.29](/compare/[email protected]@1.2.0-alpha.29) (2023-04-17)

**Note:** Version bump only for package quiet
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 @@ -80,7 +80,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": "1.2.0-alpha.29",
"version": "1.2.0-alpha.30",
"description": "Decentralized team chat",
"main": "dist/main/main.js",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions packages/mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.2.0-alpha.29](https://github.com/TryQuiet/quiet/compare/@quiet/[email protected]...@quiet/[email protected]) (2023-04-18)

**Note:** Version bump only for package @quiet/mobile





# [1.2.0-alpha.28](/compare/@quiet/[email protected]...@quiet/[email protected]) (2023-04-17)

**Note:** Version bump only for package @quiet/mobile
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 @@ -164,8 +164,8 @@ android {
applicationId "com.quietmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 257
versionName "1.2.0-alpha.28"
versionCode 258
versionName "1.2.0-alpha.29"
resValue "string", "build_config_package", "com.quietmobile"
ndk {
abiFilters "arm64-v8a"
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/ios/Quiet/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>251</string>
<string>252</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false />
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/ios/QuietTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>252</string>
<string>253</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion packages/mobile/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiet/mobile",
"version": "1.2.0-alpha.28",
"version": "1.2.0-alpha.29",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"storybook-android": "ENVFILE=.env.storybook react-native run-android --variant=storybookDebug --appIdSuffix=storybook.debug",
Expand All @@ -22,7 +22,7 @@
},
"dependencies": {
"@peculiar/webcrypto": "^1.1.7",
"@quiet/backend": "^1.2.0-alpha.26",
"@quiet/backend": "^1.2.0-alpha.27",
"@quiet/common": "^1.2.0-alpha.22",
"@quiet/identity": "^1.2.0-alpha.21",
"@quiet/state-manager": "^1.2.0-alpha.24",
Expand Down

0 comments on commit a392299

Please sign in to comment.