Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 7a6f15c

Browse files
authored
Merge branch 'master' into features
2 parents f322e2d + 8a17780 commit 7a6f15c

File tree

4 files changed

+91
-16
lines changed

4 files changed

+91
-16
lines changed

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: raghavyuva
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: raghavyuva
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/builder.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Build
2+
on:
3+
push:
4+
tags:
5+
- v*
6+
7+
jobs:
8+
build_on_linux:
9+
runs-on: ubuntu-latest
10+
env:
11+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@master
16+
with:
17+
node-version: 17
18+
- name: install dependencies
19+
run: npm install
20+
- name: build
21+
run: npm run build
22+
- name: Release
23+
uses: softprops/action-gh-release@v1
24+
with:
25+
files: "release/*"
26+
27+
build_on_mac:
28+
runs-on: macos-latest
29+
env:
30+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
steps:
33+
- uses: actions/checkout@v2
34+
- uses: actions/setup-node@master
35+
with:
36+
node-version: 17
37+
- name: install dependencies
38+
run: npm install
39+
- name: build
40+
run: npm run build
41+
- name: Release
42+
uses: softprops/action-gh-release@v1
43+
with:
44+
files: "release/*"
45+
46+
build_on_win:
47+
runs-on: windows-latest
48+
env:
49+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51+
steps:
52+
- uses: actions/checkout@v2
53+
- uses: actions/setup-node@master
54+
with:
55+
node-version: 17
56+
- name: install dependencies
57+
run: npm install
58+
- name: build
59+
run: npm run build
60+
- name: Release
61+
uses: softprops/action-gh-release@v1
62+
with:
63+
files: "release/*"

electron-builder.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,12 @@ linux:
3737
icon: src/main/helpers/lucamail.png
3838
category: Development
3939
target:
40-
- AppImage
41-
- flatpak
42-
- pacman
43-
- deb
44-
- snap
45-
- rpm
46-
- apk
40+
- "AppImage"
41+
- "deb"
42+
- "rpm"
43+
- "snap"
44+
- "pacman"
45+
4746
directories:
48-
buildResources: resources
49-
output: release
47+
buildResources: "resources"
48+
output: "release"
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
export const constant = {
22
Banner: [
33
{
4-
title: "Awesome to be here,",
5-
tagline: "Spread the message",
6-
description: "Let world knows how you are and where you are, Might be your personnal,official or just an hangout! start sharing with your connections ",
7-
PromotebtnText: "Compose New"
4+
title: "It's awesome that you're here!",
5+
tagline: "Spread your messages all around the world!",
6+
description: "Let the world knows how you are and where you are! Whether it's your family,friends or just some people, start sharing your messages with them!",
7+
PromotebtnText: "Compose New Message"
88
}
99
],
1010
stats: [
1111
{
12-
title: "Hey",
13-
tagline: " it's time to see how your mail is working! explore now, to get to know your latest mails",
12+
title: "Hey ",
13+
tagline: "It's time to check your mail! Refresh LucaMail to check your most recent messages.",
1414
stat1: "Fetched Messages",
1515
stat2: "Unread Messages",
1616
stat3: "Starred Messages",
1717
}
1818
]
19-
}
19+
}

0 commit comments

Comments
 (0)