Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
08d3d9e890 | ||
|
|
b26ab47f01 | ||
|
|
0377b299f2 | ||
|
|
e801319415 |
22
.github/workflows/archive.yml
vendored
Normal file
22
.github/workflows/archive.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: "Upload zip-archive"
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
zip-archive:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3.0.2
|
||||
with:
|
||||
submodules: true
|
||||
- name: Create zip including submodules
|
||||
run: |
|
||||
cd ..
|
||||
zip ${{ github.event.repository.name }}/${{ github.event.repository.name }}-${{ github.ref_name }}.zip ${{ github.event.repository.name }} -r
|
||||
- name: Upload zip to release
|
||||
uses: softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5
|
||||
with:
|
||||
files: |
|
||||
${{ github.event.repository.name }}-${{ github.ref_name }}.zip
|
||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -1,7 +1,7 @@
|
||||
name: "Build pull request"
|
||||
on:
|
||||
pull_request:
|
||||
types: ['opened', 'synchronize']
|
||||
#pull_request:
|
||||
#types: ['opened', 'synchronize']
|
||||
|
||||
jobs:
|
||||
publish-tauri:
|
||||
|
||||
2
cinny
2
cinny
Submodule cinny updated: d2b435618c...0b70c7e490
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cinny",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"description": "Yet another matrix client",
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
|
||||
81
resources/in.cinny.Cinny.appdata.xml
Normal file
81
resources/in.cinny.Cinny.appdata.xml
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright 2022 Ajay Bura <ajbura@gmail.com> -->
|
||||
<component type="desktop">
|
||||
<id>in.cinny.Cinny</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>MIT</project_license>
|
||||
<name>Cinny</name>
|
||||
<summary>Yet another matrix client</summary>
|
||||
|
||||
<description>
|
||||
<p>
|
||||
Cinny is a matrix client focusing primarily on simple, elegant and secure interface.
|
||||
</p>
|
||||
</description>
|
||||
|
||||
<provides>
|
||||
<binary>cinny</binary>
|
||||
</provides>
|
||||
|
||||
<developer_name>Ajay Bura</developer_name>
|
||||
<url type="homepage">https://cinny.in</url>
|
||||
<url type="bugtracker">https://github.com/ajbura/cinny/issues</url>
|
||||
<url type="donation">https://cinny.in/#sponsor</url>
|
||||
|
||||
<content_rating type="oars-1.1">
|
||||
<content_attribute id="violence-cartoon">none</content_attribute>
|
||||
<content_attribute id="violence-fantasy">none</content_attribute>
|
||||
<content_attribute id="violence-realistic">none</content_attribute>
|
||||
<content_attribute id="violence-bloodshed">none</content_attribute>
|
||||
<content_attribute id="violence-sexual">none</content_attribute>
|
||||
<content_attribute id="violence-desecration">none</content_attribute>
|
||||
<content_attribute id="violence-slavery">none</content_attribute>
|
||||
<content_attribute id="violence-worship">none</content_attribute>
|
||||
<content_attribute id="drugs-alcohol">none</content_attribute>
|
||||
<content_attribute id="drugs-narcotics">none</content_attribute>
|
||||
<content_attribute id="drugs-tobacco">none</content_attribute>
|
||||
<content_attribute id="sex-nudity">none</content_attribute>
|
||||
<content_attribute id="sex-themes">none</content_attribute>
|
||||
<content_attribute id="sex-homosexuality">none</content_attribute>
|
||||
<content_attribute id="sex-prostitution">none</content_attribute>
|
||||
<content_attribute id="sex-adultery">none</content_attribute>
|
||||
<content_attribute id="sex-appearance">none</content_attribute>
|
||||
<content_attribute id="language-profanity">intense</content_attribute>
|
||||
<content_attribute id="language-humor">none</content_attribute>
|
||||
<content_attribute id="language-discrimination">none</content_attribute>
|
||||
<content_attribute id="social-chat">none</content_attribute>
|
||||
<content_attribute id="social-info">none</content_attribute>
|
||||
<content_attribute id="social-audio">none</content_attribute>
|
||||
<content_attribute id="social-location">none</content_attribute>
|
||||
<content_attribute id="social-contacts">none</content_attribute>
|
||||
<content_attribute id="money-purchasing">none</content_attribute>
|
||||
<content_attribute id="money-gambling">none</content_attribute>
|
||||
</content_rating>
|
||||
|
||||
<custom>
|
||||
<value key="Purism::form_factor">workstation</value>
|
||||
<value key="Purism::form_factor">mobile</value>
|
||||
</custom>
|
||||
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://github.com/cinnyapp/cinny-desktop/media/branch/main/resources/screenshot1.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://github.com/cinnyapp/cinny-desktop/media/branch/main/resources/screenshot2.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://github.com/cinnyapp/cinny-desktop/media/branch/main/resources/screenshot3.png</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release version="2.0.0" date="2022-05-09">
|
||||
<description>
|
||||
<ul>
|
||||
<li>2.0.0 release.</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
</releases>
|
||||
</component>
|
||||
10
resources/in.cinny.Cinny.desktop
Normal file
10
resources/in.cinny.Cinny.desktop
Normal file
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Cinny
|
||||
Comment=A matrix client with focus on simple, elegant and secure interface.
|
||||
Exec=cinny
|
||||
Icon=cinny
|
||||
Terminal=false
|
||||
Categories=Network;InstantMessaging;
|
||||
Keywords=Matrix;matrix.org;chat;irc;communications;talk;riot;element;fractal;voip;
|
||||
X-Purism-FormFactor=Workstation;Mobile;
|
||||
BIN
resources/screenshot1.png
Normal file
BIN
resources/screenshot1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
BIN
resources/screenshot2.png
Normal file
BIN
resources/screenshot2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 266 KiB |
BIN
resources/screenshot3.png
Normal file
BIN
resources/screenshot3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 172 KiB |
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -277,7 +277,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "cinny"
|
||||
version = "1.8.2"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "cinny"
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
description = "Yet another matrix client"
|
||||
authors = ["Ajay Bura"]
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"package": {
|
||||
"productName": "cinny",
|
||||
"version": "2.0.0"
|
||||
"version": "2.0.1"
|
||||
},
|
||||
"build": {
|
||||
"distDir": "../cinny/dist",
|
||||
|
||||
Reference in New Issue
Block a user