From a15e6249e1a1dc096d158cd080ad8d98cb3aa424 Mon Sep 17 00:00:00 2001 From: Fabio Date: Fri, 7 Aug 2020 17:27:25 +0200 Subject: [PATCH] chore: dependabot interval and minor changes in README.md --- .github/dependabot.yml | 2 +- README.md | 4 ++-- package.json | 19 +++---------------- src/renderer/components/BaseVirtualScroll.vue | 2 +- 4 files changed, 7 insertions(+), 20 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2a7cf49d..0e343ecc 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,4 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "daily" + interval: "weekly" diff --git a/README.md b/README.md index dbd8afd8..70473cec 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ ![GitHub package.json version](https://img.shields.io/github/package-json/v/estarium/antares) [![Build Status](https://travis-ci.com/EStarium/antares.svg?branch=master)](https://travis-ci.com/EStarium/antares) ![GitHub All Releases](https://img.shields.io/github/downloads/estarium/antares/total) ![GitHub](https://img.shields.io/github/license/estarium/antares) -Antares is an SQL client based on Electron.js and Vue.js that aims to become a useful tool, especially for developers. +Antares is an SQL client based on [Electron.js](https://github.com/electron/electron) and [Vue.js](https://github.com/vuejs/vue) that aims to become a useful tool, especially for developers. My target is to support as many databases as possible, and all major operating systems, including the ARM versions. -At the moment this application is in a development state, it lacks many features, and is'nt ready as a main SQL client. However i'm actively working on it, hoping to provide all essential features as soon as possible. +**At the moment this application is in a development state, it lacks many features, and is'nt ready as a main SQL client**. However i'm actively working on it, hoping to provide all essential features as soon as possible. If you are curious to try this early state of Antares you can download and install the [latest release](https://github.com/EStarium/antares/releases), and stay tuned for updates. At moment i'm testing only on Windows. diff --git a/package.json b/package.json index f4d69278..408705de 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "productName": "Antares", "version": "0.0.4", "description": "A cross-platform easy to use SQL client.", - "main": "src/main/index.js", "license": "MIT", "repository": "https://github.com/EStarium/antares.git", "scripts": { @@ -11,20 +10,13 @@ "compile": "electron-webpack", "build": "cross-env NODE_ENV=production npm run compile && electron-builder", "release": "standard-version", - "release:pre": "npm run release -- --prerelease alpha" + "release:pre": "npm run release -- --prerelease alpha", + "lint": "eslint ." }, "author": "Fabio Di Stasio ", "build": { - "npmRebuild": false, - "asar": true, "appId": "com.estarium.antares", "artifactName": "${productName}-${version}-${os}_${arch}.${ext}", - "files": [ - "dist/**/*", - "src/**/*", - "node_modules/**/*", - "package.json" - ], "dmg": { "contents": [ { @@ -39,11 +31,6 @@ } ] }, - "win": { - "target": [ - "nsis" - ] - }, "linux": { "target": [ "deb", @@ -87,7 +74,7 @@ "electron-devtools-installer": "^3.1.1", "electron-webpack": "^2.8.2", "electron-webpack-vue": "^2.4.0", - "eslint": "^6.8.0", + "eslint": "^7.6.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.0", "eslint-plugin-node": "^11.1.0", diff --git a/src/renderer/components/BaseVirtualScroll.vue b/src/renderer/components/BaseVirtualScroll.vue index 61c7af0a..44c35469 100644 --- a/src/renderer/components/BaseVirtualScroll.vue +++ b/src/renderer/components/BaseVirtualScroll.vue @@ -48,7 +48,7 @@ export default { checkScrollPosition () { }, - updateWindow (e) { + updateWindow (e) { // TODO: no timeout on first render const visibleItemsCount = Math.ceil(this.$el.clientHeight / this.itemHeight); const totalScrollHeight = this.items.length * this.itemHeight; const offset = 50;