Compare commits

..

12 Commits

Author SHA1 Message Date
Agampreet Singh
e68f15b6fb v0.3.2
Former-commit-id: 252e02cecc1fc8ea324ce87c7fdf4d74b8ae37a0
2021-10-16 12:49:11 +05:30
Agampreet Singh
2e0dcfe283 Merge remote-tracking branch 'origin/main' into main
Former-commit-id: bc417bd606954942e2122f0112663d8d180a6f18
2021-10-13 18:46:41 +05:30
Agampreet Singh
95253ce88c v0.3.1
trial release

trial release

Update not.travis.yml
Add New Intro Image
Delete Intro Image.png
Add files via upload
Delete Intro Image.png
Add files via upload
Update README.md
Delete Intro-Image.png
Add files via upload
Update README.md

Former-commit-id: f1b2195b2f
2021-10-13 18:45:57 +05:30
Agampreet Singh
dcd03c5ad9 Update README.md
Former-commit-id: 324fcc5382ed6eeb1e6d4af94f511cbe70ebcdb4
2021-10-13 18:40:47 +05:30
Agampreet Singh
3808356a16 Add files via upload
Former-commit-id: 32dd661f4ccb331ed7978be4103d7530d3a30804
2021-10-13 18:40:33 +05:30
Agampreet Singh
c6f2df4c23 Delete Intro-Image.png
Former-commit-id: edcf69216c56b018c518ca4ae0bc8eb452fbfc26
2021-10-13 18:40:14 +05:30
Agampreet Singh
7de47a699d Update README.md
Former-commit-id: fd98cdae85145ca52a4ea04ec3caa352c5f1c88f
2021-10-13 18:39:48 +05:30
Agampreet Singh
de0940527a Add files via upload
Former-commit-id: 472c5aa5057b7ea7bd17d0cb7763a36d0a312889
2021-10-13 18:39:23 +05:30
Agampreet Singh
4f3adc36fc Delete Intro Image.png
Former-commit-id: 451b46319e77d7b2b9c36bb9d27b6aeb753c0a2c
2021-10-13 18:38:40 +05:30
Agampreet Singh
fa05f75c92 Add files via upload
Former-commit-id: fd1c562ee60b37dee3bd8157b0f62ac311ae4e54
2021-10-13 18:38:16 +05:30
Agampreet Singh
3c63b630c5 Delete Intro Image.png
Former-commit-id: 51cd39f6507274d2f6b61e7f7a7e0412f2043688
2021-10-13 18:37:24 +05:30
Agampreet Singh
02ba39a57d Add New Intro Image
Former-commit-id: fa34638aaaaaffcf3c3b50f67b37dee69eb2dfee
2021-10-13 18:15:19 +05:30
7 changed files with 2138 additions and 28 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

BIN
Intro_Image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

View File

@@ -18,5 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.

View File

@@ -1,4 +1,4 @@
<p align="center"><img src="https://github.com/agam778/Microsoft-Office-Electron/blob/main/Intro%20Image.png?raw=true" alt="Intro Image"></p>
<p align="center"><img src="https://github.com/agam778/Microsoft-Office-Electron/blob/main/Intro_Image.png?raw=true" alt="Intro Image"></p>
<p align="center">An Unofficial Microsoft Office Online Desktop Client made with Electron. Free of Cost.</p>

25
main.js
View File

@@ -1,10 +1,13 @@
const { app, Menu, BrowserWindow, globalShortcut } = require("electron");
const { dialog } = require("electron");
const {
app,
Menu,
BrowserWindow,
globalShortcut,
electron,
dialog,
} = require("electron");
const openAboutWindow = require("about-window").default;
const join = require("path").join;
const isMac = process.platform === "darwin";
const path = require("path");
const electron = require("electron");
const { autoUpdater } = require("electron-updater");
const isOnline = require("is-online");
@@ -39,10 +42,10 @@ const template = [
icon_path:
"https://github.com/agam778/MS-Office-Electron/blob/main/icon2.png?raw=true",
product_name: "MS Office - Electron",
copyright: "Copyright (c) 2021 Agampreet Singh Bajaj",
copyright: "Copyright (c) 2021 Agampreet Singh",
package_json_dir: __dirname,
bug_report_url:
"https://github.com/agam778/Microsoft-Office-Electron/issues/",
"https://github.com/agam778/MS-Office-Electron/issues/",
bug_link_text: "Report an issue",
adjust_window_size: "2",
show_close_button: "Close",
@@ -158,10 +161,6 @@ app.on("activate", () => {
}
});
try {
require("electron-reloader")(module);
} catch (_) {}
app.on("ready", function () {
isOnline().then((online) => {
if (online) {
@@ -177,9 +176,7 @@ app.on("ready", function () {
"Please check your Internet Connectivity. This app cannot run without an Internet Connection!",
};
dialog.showMessageBox(null, options, (response, checkboxChecked) => {
console.log(response);
});
dialog.showMessageBox(null, options);
}
});
autoUpdater.checkForUpdatesAndNotify();

View File

@@ -1,6 +1,6 @@
{
"name": "ms-office-electron",
"version": "0.3.1",
"version": "0.3.2",
"description": "An Unofficial Microsoft Office Online Desktop Client. Free of Cost.",
"main": "main.js",
"repository": {
@@ -9,14 +9,12 @@
},
"build": {
"extraFiles": [
"Intro Image.png",
"icon.png",
"icon.ico",
"license.txt",
"icon2.png"
],
"appId": "com.agampreet.ms-office-electron",
"productName": "ms-office-electron",
"productName": "MS-Office-Electron",
"linux": {
"category": "Office",
"desktop": {
@@ -29,7 +27,7 @@
},
"icon": "icon.png",
"artifactName": "MS-Office-Electron-Setup-${version}-x86_64.${ext}",
"executableName": "MS Office - Electron",
"executableName": "MS-Office-Electron",
"maintainer": "Agampreet Singh <agam778@zohomail.in>",
"target": [
"deb",
@@ -50,7 +48,7 @@
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"license": "license.txt",
"license": "LICENSE",
"artifactName": "MS-Office-Electron-Setup-${version}-x86_64.${ext}"
},
"win": {
@@ -69,18 +67,17 @@
},
"author": {
"name": "Agampreet Singh",
"email": "agam778singh@outlook.com",
"email": "agam778@zohomail.in",
"url": "https://agam778.is-a.dev/"
},
"license": "MIT",
"devDependencies": {
"electron": "^15.1.1",
"electron-builder": "^22.11.7"
"electron": "^15.2.0",
"electron-builder": "^22.13.1"
},
"dependencies": {
"about-window": "^1.15.0",
"electron-updater": "^4.3.9",
"is-online": "^9.0.1",
"node-notifier": "^10.0.0"
"is-online": "^9.0.1"
}
}

2116
yarn.lock Normal file

File diff suppressed because it is too large Load Diff