From b0cc79154d6e66ca330f901c926e7291c588b1ac Mon Sep 17 00:00:00 2001 From: Joe <49767913+joebudi@users.noreply.github.com> Date: Sun, 10 Jan 2021 10:09:47 +0000 Subject: [PATCH 1/4] Updated the design of the items within the component dropdown Icons were a little hard to make out. Increased the size and visability. The icons are not ideal, but I will tackle this another day - Budi Icons! --- .../components/common/Dropdowns/DropdownItem.svelte | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/builder/src/components/common/Dropdowns/DropdownItem.svelte b/packages/builder/src/components/common/Dropdowns/DropdownItem.svelte index 66a384fc90..f6f1ec2d12 100644 --- a/packages/builder/src/components/common/Dropdowns/DropdownItem.svelte +++ b/packages/builder/src/components/common/Dropdowns/DropdownItem.svelte @@ -11,7 +11,9 @@ on:click class:big={subtitle != null} {...$$restProps}> - {#if icon}{/if} + {#if icon} + + {/if}
{title}
{#if subtitle != null} @@ -56,7 +58,7 @@ } .title { - font-weight: 400; + font-weight: 500; } .subtitle { @@ -65,6 +67,10 @@ } i { - font-size: 16px; + padding: 0.5rem; + background-color: var(--grey-2); + font-size: 24px; + border-radius: var(--border-radius-s); + color: var(--ink); } From 009d3a6ac7e915a690f6b7c9b48d49c83ae97cf7 Mon Sep 17 00:00:00 2001 From: Joe <49767913+joebudi@users.noreply.github.com> Date: Wed, 20 Jan 2021 11:39:11 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f1eeda2588..95e012f3dd 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Build internal tools 50x faster

- Budibase is an open-source low-code platform that helps developers and IT professionals build, automate and ship internal tools 50x faster. + Budibase is an open-source low-code platform, helping developers and IT professionals build, automate, and ship internal tools 50x faster on their own infrastructure.

@@ -61,7 +61,7 @@ When other platforms chose the closed source route, we decided to go open source - **Open source and extensable.** Budibase is open-source. The builder is licensed AGPL v3, the server is GPL v3, and the client is MPL. This should fill you with confidence that Budibase will always be around. You can also code against Budibase or fork it and make changes as you please, providing a developer-friendly experience. -- **Load data or start from scratch.** Budibase pulls in data from multiple sources, whether it’s a CSV, an external database (coming very soon), or a REST API. And unlike other platforms, with Budibase you can start from scratch and create business apps with no data sources. [Request new data sources](https://github.com/Budibase/budibase/discussions?discussions_q=category%3AIdeas). +- **Load data or start from scratch.** Budibase pulls in data from multiple sources, including MongoDB, CouchDB, PostgreSQL, mySQL, Airtable, Google Sheets, S3, DyanmoDB, or a REST API. And unlike other platforms, with Budibase you can start from scratch and create business apps with no data sources. [Request new data sources](https://github.com/Budibase/budibase/discussions?discussions_q=category%3AIdeas). - **Design and build apps with powerful pre-made components.** Budibase comes out of the box with beautifully designed, powerful components which you can use like building blocks to build your UI. We also expose a lot of your favourite CSS styling options so you can go that extra creative mile. [Request new components](https://github.com/Budibase/budibase/discussions?discussions_q=category%3AIdeas). @@ -85,7 +85,7 @@ Currently, you can host your apps using Docker. The documentation for self-hosti - [x] Alpha: We are demoing Budibase to users and receiving feedback - [x] Private Beta: We are testing Budibase with a closed set of customers - [x] Public Beta: Anyone can [sign-up and use Budibase](https://portal.budi.live/signup). -- [ ] Official Launch: Production-ready +- [ ] Official Launch Watch "releases" of this repo to get notified of major updates, and give the star button a click whilst you're there. From 29d099087418bea2eeec76091a6226f2144912ce Mon Sep 17 00:00:00 2001 From: Joe <49767913+joebudi@users.noreply.github.com> Date: Wed, 20 Jan 2021 11:39:30 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95e012f3dd..bc2e10e69e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

- Build internal tools 50x faster + Build internal tools 50x faster on your own infrastructure

Budibase is an open-source low-code platform, helping developers and IT professionals build, automate, and ship internal tools 50x faster on their own infrastructure. From 08747b30cb90053ec5fcc078a6b6b4dde2d4f608 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Wed, 20 Jan 2021 13:23:06 +0000 Subject: [PATCH 4/4] Fix postgres integration schema credentials --- packages/server/src/integrations/postgres.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/integrations/postgres.js b/packages/server/src/integrations/postgres.js index cd87e20a64..f295066a78 100644 --- a/packages/server/src/integrations/postgres.js +++ b/packages/server/src/integrations/postgres.js @@ -18,7 +18,7 @@ const SCHEMA = { default: "postgres", required: true, }, - username: { + user: { type: "string", default: "root", required: true,