Remove useless files and Update README.md

This commit is contained in:
Agampreet Singh
2021-11-01 23:36:06 +05:30
parent 5be99e3ef5
commit de4957ed5b
5 changed files with 11 additions and 51 deletions

View File

@@ -1,2 +0,0 @@
---
enabled: false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 KiB

View File

@@ -61,7 +61,7 @@ Supported Platforms
4. Arch/Manjaro Linux based distributions (PKG.TAR.ZST File)
5. All Distributions supporting AppImage (AppImage File)
Not uploaded Arch/Manjaro Linux based distributions build to AUR.<br>
Arch Linux builds are now on AUR!<br>
Mac OS supported now with builds for both M1 And Intel Chips . See the instructions how to install below<br>
# Windows
@@ -110,19 +110,23 @@ For Installing in Red Hat/Fedora based distribution :-
### Arch/Manjaro Linux based distribution installation
I currently have not uploaded the package to AUR (and maybe won't cause i don't have that much time, i'll try tho) but you can install it this way :-
Arch Linux builds have been published to "AUR" now!
1) Go to the [Releases](https://github.com/agam778/Microsoft-Office-Electron/releases) page
2) Scroll down and click the `.pkg.tar.zst` file to download it.
3) Now open terminal and run `sudo pacman -U ./microsoft-office-electron-x.y.z-x86_64.pkg.tar.xz` (Replace x.y.z with version number)
1. Install any AUR helper like [`yay`](https://github.com/Jguer/yay)
2. The package name is `ms-office-electron-git`, so run `yay -Sy ms-office-electron-git`
3. Wait for it to install and tada! The app is installed.
If you find any issues in using the AUR Builds, please create a [New Issue](https://github.com/agam778/MS-Office-Electron/issues/new) and i'll try to fix that as soon as possible :D
## 📸 Ubuntu Preview
[Click Here](https://github.com/agam778/Microsoft-Office-Electron/blob/main/Preview/Ubuntu%20Preview.png?raw=true)
## 📸 Fedora Preview
[Click Here](https://raw.githubusercontent.com/agam778/Microsoft-Office-Electron/main/Preview/Fedora%20Preview.png)
# 📃 MIT License

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -1,42 +0,0 @@
matrix:
include:
- os: osx
osx_image: xcode12.5
language: node_js
node_js: "16"
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- os: linux
services: docker
language: generic
dist: focal
cache:
yarn: true
directories:
- node_modules
- $HOME/.cache/electron
- $HOME/.cache/electron-builder
script:
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
docker run --rm \
-e GH_TOKEN=$GH_TOKEN \
-v ${PWD}:/project \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "yarn --link-duplicates --pure-lockfile && yarn dist --x64 --linux --win --publish always"
else
npm run dist --x64; npm run dist --arm64
fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"