Compare commits

...

6 Commits

Author SHA1 Message Date
Krishan
e8837ef50e Release v4.3.0 (#414)
* Release v4.3.0

* update cinny submodule
2025-02-11 17:11:31 +11:00
⑆ Neveda ⑈
845e247003 Add ability to restore Cinny's window size and position (#327) 2025-02-11 13:56:37 +11:00
Krishan
2994608398 Fix typo 2025-01-18 15:34:22 +11:00
Krishan
9fa7c3eb40 Enable actions dependabot updates (#405) 2025-01-18 15:23:41 +11:00
Ajay Bura
de3191ecf6 Disable dependabot (#401) 2025-01-08 22:37:12 +11:00
Krishan
05ce94884a Release v4.2.3 (#391)
* Release v4.2.3

* update cinny submodule
2024-11-12 20:49:57 +11:00
8 changed files with 25 additions and 23 deletions

View File

@@ -2,14 +2,14 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
day: "tuesday"
time: "01:00"
timezone: "Asia/Kolkata"
open-pull-requests-limit: 15
# - package-ecosystem: npm
# directory: /
# schedule:
# interval: weekly
# day: "tuesday"
# time: "01:00"
# timezone: "Asia/Kolkata"
# open-pull-requests-limit: 15
- package-ecosystem: github-actions
directory: /
@@ -20,11 +20,11 @@ updates:
timezone: "Asia/Kolkata"
open-pull-requests-limit: 5
- package-ecosystem: cargo
directory: /src-tauri/
schedule:
interval: weekly
day: "tuesday"
time: "01:00"
timezone: "Asia/Kolkata"
open-pull-requests-limit: 5
# - package-ecosystem: cargo
# directory: /src-tauri/
# schedule:
# interval: weekly
# day: "tuesday"
# time: "01:00"
# timezone: "Asia/Kolkata"
# open-pull-requests-limit: 5

2
cinny

Submodule cinny updated: c110e64341...09d85d6c31

4
package-lock.json generated
View File

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

View File

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

2
src-tauri/Cargo.lock generated
View File

@@ -462,7 +462,7 @@ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
[[package]]
name = "cinny"
version = "4.2.2"
version = "4.3.0"
dependencies = [
"serde",
"serde_json",

View File

@@ -2,7 +2,7 @@
[package]
name = "cinny"
version = "4.2.2"
version = "4.3.0"
description = "Yet another matrix client"
authors = ["Ajay Bura"]
license = "AGPL-3.0-only"
@@ -19,6 +19,7 @@ serde_json = "1.0.109"
serde = { version = "1.0.193", features = ["derive"] }
tauri = { version = "1.8.0", features = ["api-all", "devtools", "updater"] }
tauri-plugin-localhost = "0.1.0"
tauri-plugin-window-state = "0.1.1"
[features]
# by default Tauri runs in production mode

View File

@@ -24,6 +24,7 @@ fn main() {
builder
.plugin(tauri_plugin_localhost::Builder::new(port).build())
.plugin(tauri_plugin_window_state::Builder::default().build())
.run(context)
.expect("error while building tauri application")
}

View File

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