diff --git a/README.md b/README.md index c9330150e8984b7f8669942df7984c5b846946a6..7315eb760561d5ab6975b9ca4d4c2c4b3f802d52 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,45 @@ -# pling-store +# Pling-Store -Pling store electron \ No newline at end of file +Pling-Store is a Content Management App for OCS-compatible websites like opendesktop.org, gnome-look.org, etc. +It allows to download and install applications, desktop themes, icon themes, wallpapers, or mouse cursors +under various desktop environments using the "Install"-button. + +Currently supported are these desktop environments: +KDE Plasma, Gnome, XFCE, Mate, Cinnamon, Budgie, LXQt, Elementary and Enlightenment. + +## Usage + +Using the Appimage package format, it should work on any distro like Ubuntu, Debian, Arch, Suse, Redhat and many more. + + +### Best with AppImageLauncher + +If you never used an Appimage before, we recommend this tool to make AppImages run, install/uninstall and update on your Linux OS: +https://www.pling.com/p/1228228/ + +*Please see if AppImageLauncher offers native packages for your distro, if not, you may request it in the issue section.* + +After installing AppImageLauncher, you can simply Double-Click on the Pling-Store Appimage to run or install it. + + +### Manual Run + +To try the Pling-Store without installing, you can simply [make it executable](https://youtu.be/nzZ6Ikc7juw?t=78) and (double-)click on it. + +## Development + +The Pling-Store is a regular electron app plus the [ocs-manager](https://git.opendesktop.org/akiraohgaki/ocs-manager/). The first acts as a presentation +layer and the second is the one who handles the intallation of the different products. + +### Project Setup + +``` +npm install +curl -fsSL -o node_modules/.bin/ocs-manager https://git.opendesktop.org/akiraohgaki/ocs-manager/uploads/d3dc42436b82d11360ebc96b38d4aaf4/ocs-manager-0.8.1-1-x86_64.AppImage +chmod +x node_modules/.bin/ocs-manager +``` + + +### AppImage Generation + +`./scripts/package appimage` diff --git a/app/main.js b/app/main.js index b0e72f03e35bc6cc3a9a85abf30298c575ee7757..4838b85935bd1dbf88ff690a3e713f4b2ec5930e 100644 --- a/app/main.js +++ b/app/main.js @@ -6,6 +6,9 @@ const ElectronStore = require('electron-store'); const {autoUpdater} = require('electron-updater'); const request = require('request'); +// Set configs dir +app.setPath("userData", app.getPath("appData") + "/OCS-Store") + const appPackage = require('../package.json'); const appConfig = require('./configs/application.json'); const ocsManagerConfig = require('./configs/ocs-manager.json'); @@ -192,9 +195,6 @@ app.on('web-contents-created', (event, webContents) => { } }); -// Set configs dir -app.setPath("userData", app.getPath("appData") + "/OCS-Store") - ipcMain.on('app', (event, key) => { const data = { package: appPackage,