Skip to content

Commit

Permalink
Updated icon and logo
Browse files Browse the repository at this point in the history
  • Loading branch information
notmedia committed Aug 13, 2022
1 parent 5e3e535 commit abeffe6
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
<br />
<div align="center">
<picture>
<img src="docs/logo.png" height="100px" align="center">
<img src="assets/icons/icon.png" height="200px" align="center">
</picture>
</div>
<br />

<div align="center">

[![Release](https://img.shields.io/github/v/release/getezy/ezy?color=brightgreen)](https://github.com/getezy/ezy/releases/latest)
[![Discord](https://img.shields.io/badge/Discord-7289DA?style=flat&logo=discord&logoColor=white)](https://discord.gg/r26ETPgj6R)
<!-- <br /> -->
<!-- [![Bitcoin](https://img.shields.io/badge/Bitcoin-000000?style=flat&logo=bitcoin&logoColor=white)]()
[![Ethereum](https://img.shields.io/badge/Ethereum-3C3C3D?style=flat&logo=Ethereum&logoColor=white)]() -->
<img src="docs/ezy.gif" align="center">

</div>
<br />

`Ezy` - desktop gRPC client.
`ezy` - desktop gRPC client.

⚠️ **WARNING!** This project is in beta phase and can get breaking changes at any time until it goes to v1. 🏗

Expand All @@ -33,6 +30,9 @@
✅ TLS (Server-side/Mutual) support.
✅ Good errors outptut.

# Preview
<img src="docs/preview.gif" align="center">

## Getting started
Install the latest version for your OS from [release page](https://github.com/getezy/ezy/releases/latest).

Expand Down
Binary file added assets/icons/icon.icns
Binary file not shown.
Binary file added assets/icons/icon.ico
Binary file not shown.
Binary file added assets/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/logo.png
Binary file not shown.
File renamed without changes
15 changes: 14 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
const path = require('path');
const { version } = require('./package.json');

const iconDir = path.resolve(__dirname, 'assets', 'icons');

const commonLinuxConfig = {
icon: {
scalable: path.resolve(iconDir, 'icon.svg'),
},
};

const config = {
packagerConfig: {
name: 'ezy',
executableName: 'ezy',
asar: true,
icon: path.resolve(__dirname, 'assets', 'icons', 'icon'),
},
makers: [
{
Expand All @@ -14,7 +24,8 @@ const config = {
name: 'ezy',
exe: 'ezy.exe',
noMsi: true,

// iconUrl: 'https://raw.githubusercontent.com/getezy/ezy/ /assets/icons/ezy.ico',
setupIcon: path.resolve(iconDir, 'icon.ico'),
setupExe: `ezy-${version}-win32-${arch}-setup.exe`,
}),
},
Expand All @@ -25,10 +36,12 @@ const config = {
{
name: '@electron-forge/maker-deb',
platforms: ['linux'],
config: commonLinuxConfig,
},
{
name: '@electron-forge/maker-rpm',
platforms: ['linux'],
config: commonLinuxConfig,
},
],
plugins: [
Expand Down

0 comments on commit abeffe6

Please sign in to comment.