Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb9f13a0bc | ||
|
|
e800be509d | ||
|
|
c492241e6d | ||
|
|
375cd03901 | ||
|
|
bd4454334c | ||
|
|
89668ce6b6 |
2
.github/workflows/build.yml
vendored
@@ -23,5 +23,5 @@ jobs:
|
||||
run: |
|
||||
export GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
||||
yarn install
|
||||
yarn dist
|
||||
yarn dist -c.snap.publish=github
|
||||
shell: bash
|
||||
|
||||
3
.gitignore
vendored
@@ -2,4 +2,5 @@
|
||||
/.idea/
|
||||
/release/
|
||||
.DS_Store
|
||||
/assets/generated
|
||||
flatpak-node-generator.py
|
||||
generated-sources.json
|
||||
14
README.md
@@ -96,6 +96,10 @@ For Installing this app on Mac :-
|
||||
|
||||
## 💿 Linux Installation
|
||||
|
||||
<a href="https://snapcraft.io/ms-office-electron">
|
||||
<img alt="Get it from the Snap Store" src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" />
|
||||
</a>
|
||||
|
||||
### Ubuntu/Debian based distribution installation
|
||||
|
||||
For Installing in Ubuntu/Debian based distribution :-
|
||||
@@ -156,17 +160,15 @@ yarn install
|
||||
```bash
|
||||
$ yarn run
|
||||
yarn run v1.22.18
|
||||
info Commands available from binary scripts: asar, dircompare, ejs, electron, electron-builder, electron-icon-maker, electron-osx-flat, electron-osx-sign, extract-zip, icon-gen, install-app-deps, is-ci, jake, js-yaml, json5, mime, mkdirp, phantomjs, pixelmatch, rc, resolve, rimraf, semver, sshpk-conv, sshpk-sign, sshpk-verify, svg2png, uuid, which
|
||||
info Commands available from binary scripts: asar, dircompare, ejs, electron, electron-builder, electron-osx-flat, electron-osx-sign, extract-zip, install-app-deps, is-ci, jake, js-yaml, json5, mime, mkdirp, node-which, rc, rimraf, semver
|
||||
info Project commands
|
||||
- dist
|
||||
yarn genicon && electron-builder
|
||||
- genicon
|
||||
rm -rf ./assets/generated && electron-icon-maker --input=assets/icon.png --output=assets/generated
|
||||
electron-builder
|
||||
- pack
|
||||
yarn genicon && electron-builder --dir
|
||||
electron-builder --dir
|
||||
- start
|
||||
electron .
|
||||
question Which command would you like to run?:
|
||||
question Which command would you like to run?:
|
||||
```
|
||||
|
||||
To start the app, run `yarn start`<br>
|
||||
|
||||
BIN
assets/generated/icons/mac/icon.icns
Normal file
BIN
assets/generated/icons/png/1024x1024.png
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
assets/generated/icons/png/128x128.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
assets/generated/icons/png/16x16.png
Normal file
|
After Width: | Height: | Size: 642 B |
BIN
assets/generated/icons/png/24x24.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/generated/icons/png/256x256.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
assets/generated/icons/png/32x32.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/generated/icons/png/48x48.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
assets/generated/icons/png/512x512.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
assets/generated/icons/png/64x64.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
assets/generated/icons/win/icon.ico
Normal file
|
After Width: | Height: | Size: 353 KiB |
14
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ms-office-electron",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.2",
|
||||
"description": "An Unofficial Microsoft Office Online Desktop Client. Free of Cost.",
|
||||
"main": "main.js",
|
||||
"repository": {
|
||||
@@ -46,9 +46,11 @@
|
||||
"executableName": "ms-office-electron",
|
||||
"maintainer": "Agampreet Singh <agam778@zohomail.in>",
|
||||
"target": [
|
||||
"snap",
|
||||
"deb",
|
||||
"rpm",
|
||||
"AppImage"
|
||||
"AppImage",
|
||||
"tar.gz"
|
||||
]
|
||||
},
|
||||
"directories": {
|
||||
@@ -57,13 +59,12 @@
|
||||
},
|
||||
"scripts": {
|
||||
"start": "electron .",
|
||||
"genicon": "rm -rf ./assets/generated && electron-icon-maker --input=assets/icon.png --output=assets/generated",
|
||||
"pack": "yarn genicon && electron-builder --dir",
|
||||
"dist": "yarn genicon && electron-builder"
|
||||
"pack": "electron-builder --dir",
|
||||
"dist": "electron-builder"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"electron": "^18.2.3",
|
||||
"electron": "^18.2.4",
|
||||
"electron-builder": "^23.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -72,7 +73,6 @@
|
||||
"discord-rpc": "^4.0.1",
|
||||
"electron-context-menu": "^3.1.1",
|
||||
"electron-dl": "^3.3.1",
|
||||
"electron-icon-maker": "0.0.5",
|
||||
"electron-log": "^4.4.7",
|
||||
"electron-store": "^8.0.1",
|
||||
"electron-updater": "^5.0.1",
|
||||
|
||||