mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-24 04:56:00 +00:00
use link www.dbgate.io
This commit is contained in:
@@ -15,7 +15,7 @@ But there are also many advanced features like schema compare, visual query desi
|
|||||||
DbGate is licensed under GPL-3.0 license and is free to use for any purpose.
|
DbGate is licensed under GPL-3.0 license and is free to use for any purpose.
|
||||||
|
|
||||||
* Try it online - [demo.dbgate.org](https://demo.dbgate.org) - online demo application
|
* Try it online - [demo.dbgate.org](https://demo.dbgate.org) - online demo application
|
||||||
* **Download** application for Windows, Linux or Mac from [dbgate.io](https://dbgate.io/download/)
|
* **Download** application for Windows, Linux or Mac from [dbgate.io](https://www.dbgate.io/download/)
|
||||||
* Looking for DbGate Community? **Download** from [dbgate.org](https://dbgate.org/download/)
|
* Looking for DbGate Community? **Download** from [dbgate.org](https://dbgate.org/download/)
|
||||||
* Run web version as [NPM package](https://www.npmjs.com/package/dbgate-serve) or as [docker image](https://hub.docker.com/r/dbgate/dbgate)
|
* Run web version as [NPM package](https://www.npmjs.com/package/dbgate-serve) or as [docker image](https://hub.docker.com/r/dbgate/dbgate)
|
||||||
* Use nodeJs [scripting interface](https://docs.dbgate.io/scripting) ([API documentation](https://docs.dbgate.io/apidoc))
|
* Use nodeJs [scripting interface](https://docs.dbgate.io/scripting) ([API documentation](https://docs.dbgate.io/apidoc))
|
||||||
@@ -92,7 +92,7 @@ DbGate is licensed under GPL-3.0 license and is free to use for any purpose.
|
|||||||
Any contributions are welcome. If you want to contribute without coding, consider following:
|
Any contributions are welcome. If you want to contribute without coding, consider following:
|
||||||
|
|
||||||
* Tell your friends about DbGate or share on social networks - when more people will use DbGate, it will grow to be better
|
* Tell your friends about DbGate or share on social networks - when more people will use DbGate, it will grow to be better
|
||||||
* Purchase a [DbGate Premium](https://dbgate.io/purchase/premium/) liocense
|
* Purchase a [DbGate Premium](https://www.dbgate.io/purchase/premium/) license
|
||||||
* Write review on [Product Hunt](https://www.producthunt.com/products/dbgate) or [G2](https://www.g2.com/products/dbgate/reviews) - we offer [2-year PREMIUM license](https://dbgate.org/review/) for reviewers (time limited offer)
|
* Write review on [Product Hunt](https://www.producthunt.com/products/dbgate) or [G2](https://www.g2.com/products/dbgate/reviews) - we offer [2-year PREMIUM license](https://dbgate.org/review/) for reviewers (time limited offer)
|
||||||
* Create issue, if you find problem in app, or you have idea to new feature. If issue already exists, you could leave comment on it, to prioritise most wanted issues
|
* Create issue, if you find problem in app, or you have idea to new feature. If issue already exists, you could leave comment on it, to prioritise most wanted issues
|
||||||
* Create some tutorial video on [youtube](https://www.youtube.com/playlist?list=PLCo7KjCVXhr0RfUSjM9wJMsp_ShL1q61A)
|
* Create some tutorial video on [youtube](https://www.youtube.com/playlist?list=PLCo7KjCVXhr0RfUSjM9wJMsp_ShL1q61A)
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ const getChartExport = (title, config, imageFile, plugins) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
Exported from <a href='https://dbgate.io/' target='_blank'>DbGate</a>, powered by <a href='https://www.chartjs.org/' target='_blank'>Chart.js</a>
|
Exported from <a href='https://www.dbgate.io/' target='_blank'>DbGate</a>, powered by <a href='https://www.chartjs.org/' target='_blank'>Chart.js</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const getMapExport = (geoJson) => {
|
|||||||
leaflet
|
leaflet
|
||||||
.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||||
maxZoom: 19,
|
maxZoom: 19,
|
||||||
attribution: '<a href="https://dbgate.io" title="Exported from DbGate">DbGate</a> | © OpenStreetMap',
|
attribution: '<a href="https://www.dbgate.io" title="Exported from DbGate">DbGate</a> | © OpenStreetMap',
|
||||||
})
|
})
|
||||||
.addTo(map);
|
.addTo(map);
|
||||||
|
|
||||||
|
|||||||
@@ -60,4 +60,4 @@ export function chooseTopTables(tables: TableInfo[], count: number, tableFilter:
|
|||||||
|
|
||||||
export const DIAGRAM_ZOOMS = [0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1, 1.25, 1.5, 1.75, 2];
|
export const DIAGRAM_ZOOMS = [0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1, 1.25, 1.5, 1.75, 2];
|
||||||
|
|
||||||
export const DIAGRAM_DEFAULT_WATERMARK = 'Powered by [dbgate.io](https://dbgate.io)';
|
export const DIAGRAM_DEFAULT_WATERMARK = 'Powered by [dbgate.io](https://www.dbgate.io)';
|
||||||
|
|||||||
@@ -1046,7 +1046,7 @@ registerCommand({
|
|||||||
id: 'app.openWeb',
|
id: 'app.openWeb',
|
||||||
category: 'Application',
|
category: 'Application',
|
||||||
name: 'DbGate web',
|
name: 'DbGate web',
|
||||||
onClick: () => openWebLink('https://dbgate.io/'),
|
onClick: () => openWebLink('https://www.dbgate.io/'),
|
||||||
});
|
});
|
||||||
|
|
||||||
registerCommand({
|
registerCommand({
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
<FontIcon icon="mdi mdi-web color-icon-blue" /> Web: <Link href="https://dbgate.io">dbgate.io</Link>
|
<FontIcon icon="mdi mdi-web color-icon-blue" /> Web: <Link href="https://www.dbgate.io">dbgate.io</Link>
|
||||||
</div>
|
</div>
|
||||||
{#if isProApp()}
|
{#if isProApp()}
|
||||||
<div>
|
<div>
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
<!-- <div>
|
<!-- <div>
|
||||||
<FontIcon icon="mdi mdi-lightbulb color-icon-yellow" /> Give us feedback: <Link
|
<FontIcon icon="mdi mdi-lightbulb color-icon-yellow" /> Give us feedback: <Link
|
||||||
href="https://dbgate.io/feedback">dbgate.io/feedback</Link
|
href="https://www.dbgate.io/feedback">dbgate.io/feedback</Link
|
||||||
>
|
>
|
||||||
</div> -->
|
</div> -->
|
||||||
|
|
||||||
|
|||||||
@@ -45,13 +45,13 @@
|
|||||||
{#if !isProApp()}
|
{#if !isProApp()}
|
||||||
<FormStyledButton
|
<FormStyledButton
|
||||||
value="Download DbGate Premium"
|
value="Download DbGate Premium"
|
||||||
on:click={() => openWebLink('https://dbgate.io/download/')}
|
on:click={() => openWebLink('https://www.dbgate.io/download/')}
|
||||||
skipWidth
|
skipWidth
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
<FormStyledButton
|
<FormStyledButton
|
||||||
value="Purchase DbGate Premium"
|
value="Purchase DbGate Premium"
|
||||||
on:click={() => openWebLink('https://dbgate.io/purchase/premium/')}
|
on:click={() => openWebLink('https://www.dbgate.io/purchase/premium/')}
|
||||||
skipWidth
|
skipWidth
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<FormStyledButton on:click={() => openWebLink('https://dbgate.io/download')} value="Download" />
|
<FormStyledButton on:click={() => openWebLink('https://www.dbgate.io/download')} value="Download" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Purchase DbGate Premium</h2>
|
<h2>Purchase DbGate Premium</h2>
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<FormStyledButton on:click={() => openWebLink('https://dbgate.io/purchase/premium')} value="Purchase" />
|
<FormStyledButton on:click={() => openWebLink('https://www.dbgate.io/purchase/premium')} value="Purchase" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Get PREMIUM license for free</h2>
|
<h2>Get PREMIUM license for free</h2>
|
||||||
|
|||||||
Reference in New Issue
Block a user