Installation
Bases Improvements can be installed through several methods. Choose the one that works best for you.
📦 Method 1: Community Plugins (Recommended)
Once approved, Bases Improvements will be available in the Obsidian Community Plugins directory:
- Open Settings → Community plugins
- Click Browse to open the community plugins browser
- Search for "Bases Improvements"
- Click Install
- Click Enable to activate the plugin
🔧 Method 2: BRAT (Beta Testing)
For early access to new features and beta versions:
- Install the BRAT plugin if you haven't already
- Open Settings → BRAT
- Click Add Beta Plugin
- Enter the repository URL:
Real1tyy/BasesImprovements - Click Add Plugin
- The plugin will appear in your Community Plugins list
- Enable it from there
📥 Method 3: Manual Installation
For manual installation from GitHub releases:
- Download the latest
main.js,manifest.json, andstyles.cssfrom the Releases page - Navigate to your vault's
.obsidian/plugins/folder - Create a new folder named
bases-improvements - Copy the downloaded files into this folder
- Reload Obsidian or restart the app
- Enable the plugin in Settings → Community plugins
🛠️ Method 4: From Source (Development)
For developers who want to build from source:
-
Clone the repository into your vault's
.obsidian/plugins/directory:cd /path/to/vault/.obsidian/plugins/
git clone https://github.com/Real1tyy/BasesImprovements.git bases-improvements
cd bases-improvements -
Install dependencies:
pnpm install -
Build the plugin:
pnpm build -
Reload Obsidian or restart the app
-
Enable the plugin in Settings → Community plugins
Development Mode
For active development with hot reload:
pnpm dev
This will watch for file changes and automatically rebuild the plugin.
✅ Verification
After installation, verify everything is working:
- Open Settings → Community plugins
- Confirm Bases Improvements is listed and enabled
- You should see a Bases Improvements settings tab in the main Settings page
- Create a test note with a base block:
```base
FROM notes
SELECT title
```
- You should see a search input appear above the base block
🔄 Updating
Community Plugins
Updates will be available automatically through the Community Plugins interface. Simply click Update when a new version is available.
BRAT
BRAT will automatically check for updates. You can manually check by:
- Opening Settings → BRAT
- Clicking Check for updates
- Updating if a new version is available
Manual Installation
Download the latest release files and replace the existing files in your plugin folder.
From Source
Pull the latest changes and rebuild:
git pull
pnpm install
pnpm build
🐛 Troubleshooting
If you encounter issues during installation:
- Plugin not appearing: Make sure you've restarted Obsidian after installation
- Settings tab missing: Check that the plugin is enabled in Community Plugins
- Search inputs not appearing: Verify that the Bases plugin is installed and you have base blocks in your note
- Errors in console: Check the Developer Console (Ctrl/Cmd + Shift + I) for error messages
For more help, see the Troubleshooting Guide or open an issue on GitHub.
📋 Prerequisites
Before using Bases Improvements, make sure you have:
- Obsidian 1.4.16+ installed
- Bases Plugin installed and enabled (this plugin enhances Bases, so you need it!)
🎯 Next Steps
Once installed, check out the Quick Start Guide to configure and start using Bases Improvements!