mirror of
https://github.com/Fabio286/antares.git
synced 2025-04-15 10:37:28 +02:00
chore: dependabot interval and minor changes in README.md
This commit is contained in:
parent
bbde2bd994
commit
a15e6249e1
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@ -8,4 +8,4 @@ updates:
|
|||||||
- package-ecosystem: "npm"
|
- package-ecosystem: "npm"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "weekly"
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
 [](https://travis-ci.com/EStarium/antares)  
|
 [](https://travis-ci.com/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.
|
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.
|
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.
|
||||||
|
|
||||||
|
19
package.json
19
package.json
@ -3,7 +3,6 @@
|
|||||||
"productName": "Antares",
|
"productName": "Antares",
|
||||||
"version": "0.0.4",
|
"version": "0.0.4",
|
||||||
"description": "A cross-platform easy to use SQL client.",
|
"description": "A cross-platform easy to use SQL client.",
|
||||||
"main": "src/main/index.js",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/EStarium/antares.git",
|
"repository": "https://github.com/EStarium/antares.git",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -11,20 +10,13 @@
|
|||||||
"compile": "electron-webpack",
|
"compile": "electron-webpack",
|
||||||
"build": "cross-env NODE_ENV=production npm run compile && electron-builder",
|
"build": "cross-env NODE_ENV=production npm run compile && electron-builder",
|
||||||
"release": "standard-version",
|
"release": "standard-version",
|
||||||
"release:pre": "npm run release -- --prerelease alpha"
|
"release:pre": "npm run release -- --prerelease alpha",
|
||||||
|
"lint": "eslint ."
|
||||||
},
|
},
|
||||||
"author": "Fabio Di Stasio <fabio286@gmail.com>",
|
"author": "Fabio Di Stasio <fabio286@gmail.com>",
|
||||||
"build": {
|
"build": {
|
||||||
"npmRebuild": false,
|
|
||||||
"asar": true,
|
|
||||||
"appId": "com.estarium.antares",
|
"appId": "com.estarium.antares",
|
||||||
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
|
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
|
||||||
"files": [
|
|
||||||
"dist/**/*",
|
|
||||||
"src/**/*",
|
|
||||||
"node_modules/**/*",
|
|
||||||
"package.json"
|
|
||||||
],
|
|
||||||
"dmg": {
|
"dmg": {
|
||||||
"contents": [
|
"contents": [
|
||||||
{
|
{
|
||||||
@ -39,11 +31,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"win": {
|
|
||||||
"target": [
|
|
||||||
"nsis"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"linux": {
|
"linux": {
|
||||||
"target": [
|
"target": [
|
||||||
"deb",
|
"deb",
|
||||||
@ -87,7 +74,7 @@
|
|||||||
"electron-devtools-installer": "^3.1.1",
|
"electron-devtools-installer": "^3.1.1",
|
||||||
"electron-webpack": "^2.8.2",
|
"electron-webpack": "^2.8.2",
|
||||||
"electron-webpack-vue": "^2.4.0",
|
"electron-webpack-vue": "^2.4.0",
|
||||||
"eslint": "^6.8.0",
|
"eslint": "^7.6.0",
|
||||||
"eslint-config-standard": "^14.1.1",
|
"eslint-config-standard": "^14.1.1",
|
||||||
"eslint-plugin-import": "^2.22.0",
|
"eslint-plugin-import": "^2.22.0",
|
||||||
"eslint-plugin-node": "^11.1.0",
|
"eslint-plugin-node": "^11.1.0",
|
||||||
|
@ -48,7 +48,7 @@ export default {
|
|||||||
checkScrollPosition () {
|
checkScrollPosition () {
|
||||||
|
|
||||||
},
|
},
|
||||||
updateWindow (e) {
|
updateWindow (e) { // TODO: no timeout on first render
|
||||||
const visibleItemsCount = Math.ceil(this.$el.clientHeight / this.itemHeight);
|
const visibleItemsCount = Math.ceil(this.$el.clientHeight / this.itemHeight);
|
||||||
const totalScrollHeight = this.items.length * this.itemHeight;
|
const totalScrollHeight = this.items.length * this.itemHeight;
|
||||||
const offset = 50;
|
const offset = 50;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user