Git Product home page Git Product logo

signalyourlove-app's Introduction

Signal Your Love

The desktop app allows to display statistics of your Signal Desktop chats. The app is ideal for long-distance couples, friends, and anyone who wants to cherish their chat history with essential people. The app is built with ElectronJS and React.

Signal Your Love app main screen

The Signal Desktop app must be installed. The Signal Your Love app can only read messages that are present in Signal Desktop.

Your conversation history never leaves your computer. The app works offline with your local Signal Desktop database. No data is sent to us. If you are interested in technical details, please, read the article.

The official website: https://signalyourlove.app

MacOS

Signing the app

Available documentation:

Check entitelments for signed app

$ codesign --display --entitlements :- Signal\ Your\ Love.app

Check if app is notarized

$ spctl -a -vvv -t install out/Signal\ Your\ Love-darwin-arm64/Signal\ Your\ Love.app

signalyourlove-app's People

Stargazers

 avatar

Watchers

 avatar  avatar

signalyourlove-app's Issues

Add total number of calls that took place (accepted, etc.)

The calls can be found in the messages table. Each call has a type of "call-history". Most of the information regarding call is stored in the json column of the table.

We should only count calls that were not declined ($.callHistoryDetails.wasDeclined == false). Ideally we should also ensure that even accepted calls took a place (e.g, where not dropped right away due to network or other errors).

There are two types of calls, incoming ("You called") and outgoing ("I called"). They can be found in json column via query $.callHistoryDetails.wasIncoming.

The incoming call JSON looks like this:

{
   "conversationId":"44",
   "type":"call-history",
   "sent_at":1647888307356,
   "received_at":66722,
   "received_at_ms":1647888307356,
   "readStatus":0,
   "callHistoryDetails":{
      "callMode":"Direct",
      "wasIncoming":true,
      "wasVideoCall":false,
      "wasDeclined":false,
      "endedTime":1647888307356
   },
   "id":"55",
   "schemaVersion":10,
   "attachments":[
      
   ],
   "hasAttachments":0,
   "contact":[
      
   ],
   "seenStatus":0
}

The outgoing call JSON looks like this:

{
   "conversationId":"44",
   "type":"call-history",
   "sent_at":1647789536680,
   "received_at":65851,
   "received_at_ms":1647789536680,
   "readStatus":0,
   "callHistoryDetails":{
      "callMode":"Direct",
      "wasIncoming":false,
      "wasVideoCall":true,
      "wasDeclined":false,
      "acceptedTime":1647785450766,
      "endedTime":1647789536680
   },
   "id":"55",
   "schemaVersion":10,
   "attachments":[
      
   ],
   "hasAttachments":0,
   "contact":[
      
   ],
   "seenStatus":0
}

Using json_extract function (docs), it is possible to efficiently query json in SQLite.

Looks like received_at is just an incremental counter and not an actual timestamp (code link).

Add description for calendar heatmap section

Currently, it might not be clear to users what a calendar heatmap means. Adding a name for the section and a short description would be good. For example, "How often have we texted each other" as a section title, and as a short description "Each cell represents a single day, hover over to see a number of messages".

Add donation dialog/text to the app

Now that we switched to the donations model (in VMois/signalyourlove-web#5), it would be good to have a link to the donation page in the "SelectConversation" view. It can be placed in the footer section.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.