Compare commits

..

5 Commits

Author SHA1 Message Date
Krishan
6f83708511 Release v3.2.1 2023-11-01 21:53:00 +11:00
Andrew Davidson
a63365b6b9 fixing directory path in README.md (#228)
the path in the build instructions was not quite correct.
2023-11-01 21:44:12 +11:00
renovate[bot]
c4a79926c7 fix(deps): update rust crate serde_json to 1.0.108 (#231)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-01 21:43:01 +11:00
renovate[bot]
64f2ce11a4 chore(deps): update tauri-apps/tauri-action action to v0.4.4 (#232)
* chore(deps): update tauri-apps/tauri-action action to v0.4.4

* Update tauri.yml

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
2023-11-01 21:41:53 +11:00
renovate[bot]
226f65b0e4 fix(deps): update rust crate serde to 1.0.190 (#230)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-01 21:40:30 +11:00
8 changed files with 16 additions and 16 deletions

View File

@@ -31,7 +31,7 @@ jobs:
- name: Install tauri dependencies
run: npm ci
- name: Build desktop app with Tauri
uses: tauri-apps/tauri-action@v0.3.1
uses: tauri-apps/tauri-action@v0.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
@@ -90,13 +90,13 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install cinny dependencies
run: cd cinny && npm ci
- name: Install tauri dependencies
run: npm ci
- name: Build desktop app with Tauri
uses: tauri-apps/tauri-action@v0.3.1
uses: tauri-apps/tauri-action@v0.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
@@ -151,7 +151,7 @@ jobs:
- name: Install tauri dependencies
run: npm ci
- name: Build desktop app with Tauri
uses: tauri-apps/tauri-action@v0.3.1
uses: tauri-apps/tauri-action@v0.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}

View File

@@ -35,6 +35,6 @@ jobs:
- name: Install tauri dependencies
run: npm ci
- name: Build desktop app with Tauri
uses: tauri-apps/tauri-action@v0.3.1
uses: tauri-apps/tauri-action@v0.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -27,7 +27,7 @@ Firstly, to setup Rust, NodeJS and build tools follow [Tauri documentation](http
Now, to setup development locally run the following commands:
* `git clone --recursive https://github.com/cinnyapp/cinny-desktop.git`
* `cd cinny`
* `cd cinny-desktop/cinny`
* `npm ci`
* `cd ..`
* `npm ci`

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "cinny",
"version": "3.2.0",
"version": "3.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cinny",
"version": "3.2.0",
"version": "3.2.1",
"license": "AGPL-3.0-only",
"dependencies": {
"@tauri-apps/api": "1.5.1"

View File

@@ -1,6 +1,6 @@
{
"name": "cinny",
"version": "3.2.0",
"version": "3.2.1",
"description": "Yet another matrix client",
"main": "index.js",
"engines": {

6
src-tauri/Cargo.lock generated
View File

@@ -424,7 +424,7 @@ dependencies = [
[[package]]
name = "cinny"
version = "3.2.0"
version = "3.2.1"
dependencies = [
"serde",
"serde_json",
@@ -2933,9 +2933,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.107"
version = "1.0.108"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
dependencies = [
"itoa 1.0.4",
"ryu",

View File

@@ -2,7 +2,7 @@
[package]
name = "cinny"
version = "3.2.0"
version = "3.2.1"
description = "Yet another matrix client"
authors = ["Ajay Bura"]
license = "AGPL-3.0-only"
@@ -15,8 +15,8 @@ rust-version = "1.61"
tauri-build = { version = "1.5.0", features = [] }
[dependencies]
serde_json = "1.0.91"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.108"
serde = { version = "1.0.190", features = ["derive"] }
tauri = { version = "1.5.2", features = ["api-all", "devtools", "system-tray", "updater"] }
[features]

View File

@@ -1,7 +1,7 @@
{
"package": {
"productName": "Cinny",
"version": "3.2.0"
"version": "3.2.1"
},
"build": {
"distDir": "../cinny/dist",