Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Go to file
Manav 8990f12140 Use a template task bar icon on macOS
On macOS, Electron supports providing a "template" icon that the system will
then automatically color appropriately depending on the light / dark theme.

> Template images consist of black and an alpha channel. Template images are not
  intended to be used as standalone images and are usually mixed with other
  content to create the desired final appearance.
>
>
> The most common case is to use template images for a menu bar icon, so it can
  adapt to both light and dark menu bars.
>
> Note: Template image is only supported on macOS.
>
> To mark an image as a template image, its filename should end with the word Template.

Maybe the same icon can also be used in other platforms, but I'm not aware of
why the existing icon is white, so I've added a separate file so that the rest
of the platforms remain untouched, and only macOS gets this light / dark mode
fix.

References:

* https://www.electronjs.org/docs/latest/api/tray
* https://www.electronjs.org/docs/latest/api/native-image#template-image
2022-12-09 13:17:04 +05:30
.github update node version to v16 2022-11-14 10:26:31 +05:30
.husky setup husky 2022-06-14 11:48:30 +05:30
build Use a template task bar icon on macOS 2022-12-09 13:17:04 +05:30
src Use a template task bar icon on macOS 2022-12-09 13:17:04 +05:30
thirdparty revert submodule next-electron-server to before merging master 2022-09-02 14:07:07 +05:30
ui@5e486434ad update UI 2022-12-02 11:47:40 +05:30
.eslintrc update eslint configuration 2022-06-14 12:13:25 +05:30
.gitignore added web app as submodule 2022-07-13 12:51:37 +05:30
.gitmodules update submodule to follow release branch 2022-11-30 12:20:07 +05:30
.prettierrc.json update prettier config 2021-12-19 11:53:24 +05:30
LICENSE Create LICENSE 2021-04-03 16:44:58 +05:30
package.json v1.6.14 2022-12-02 11:48:15 +05:30
README.md Remove out of date user contributed ports 2022-09-28 15:06:19 +05:30
SECURITY.md Create SECURITY.md 2022-01-11 20:43:37 +05:30
sentry-symbols.js update sentry symbol js fix get electron version 2022-11-17 15:47:39 +05:30
sentry.properties remove sentry cli executable path as we are using next withSentryConfig and which has bundled its own cli and this path is not used and redundant 2022-09-23 16:02:17 +05:30
tsconfig.json rename root source-code directory to src 2022-08-13 13:54:27 +05:30
yarn.lock revert yarn module changes 2022-11-21 19:57:01 +05:30

bhari-frame (heavy-frame)

Desktop app for ente.io build with electron and loads of ❤️.

Disclaimer

We are aware that electron is a sub-optimal choice for building desktop applications.

The goal of this app was to

  1. provide a stable environment for customers to back up large amounts of data reliably
  2. export uploaded data from our servers to their local hard drives.

Electron was the best way to reuse our battle tested code from bada-frame that powers web.ente.io.

As an archival solution built by a small team, we are hopeful that this project will help us keep our stack lean, while ensuring a painfree life for our customers.

If you are running into issues with this app, please drop a mail to support@ente.io and we'll be very happy to help.

Download

Building from source

You'll need to have node (and yarn) installed on your machine. e.g. on macOS you can do brew install node. After that, you can run the following commands to fetch and build from source.

# Clone this repository
git clone https://github.com/ente-io/bhari-frame

# Go into the repository
cd bhari-frame

# Clone submodules (recursively)
git submodule update --init --recursive

# Install packages
yarn

# Run the app
yarn start

Re-compile automatically

To recompile automatically and to allow using electron-reload, run this in a separate terminal:

yarn watch