-
released this
2025-01-27 19:35:36 +01:00 | 3 commits to master since this releaseWe are excited to announce version 1.1.1, which introduces a requested feature to download PDF instructions directly from Rebrickable. This update adds new functionality to both the instructions and set pages.
New Features
- PDF Instructions Download:
- You can now easily download PDF instructions for your sets directly from Rebrickable.
- A new Download instructions from Rebrickable button has been added to both the Instructions Page and the Set Page.
- A list of available instructions will be displayed, and you can select which ones to download.
- Please note that sets older than 20 years may not have available instructions for download.
Docker Update
- Docker Update:
- When using Docker, ensure you are pulling the image with the
1.1.1
orlatest
tag for the new release.
- When using Docker, ensure you are pulling the image with the
Downloads
- PDF Instructions Download:
-
released this
2025-01-24 19:29:33 +01:00 | 23 commits to master since this releaseBrickTracker has made it to version 1.1.0, which is packed with improvements to deduplicate sets, enable custom checkboxes, and streamline database management. This update includes significant changes across the database, code, UI, and documentation to make the platform more robust and user-friendly.
Major Changes
⚠️ Important: After updating to the latest version, the application will display a splash screen indicating a database error and prompting an update. This behavior is expected and part of the upgrade process.
-
Before proceeding, it is strongly recommended to download a backup of the database to ensure your data is safe in case of any migration issues.
-
Finally, press "Upgrade the Database" to complete the process.
Following these steps will ensure a smooth transition to the updated database structure.
Highlights
Database
- Set Deduplication:
- Rebrickable sets are now unique in the database.
- Multiple BrickTracker sets can now map to a single Rebrickable set.
- Upgrade/Migration Tool: A smoother process for forward-only database migrations with checks for outdated versions.
Docs
- Removed unnecessary
<br>
tags for better Gitea Markdown compatibility. - Added a comprehensive DOCS.md for easier navigation and setup guidance.
- Documented database upgrades and checkbox management.
Code Updates
This release introduces tighter, more efficient code with enhancements like customizable checkboxes, unified update routes, and deduplicated set handling. We’ve also improved SQL practices, streamlined database migrations, and refined the admin views for better maintainability. Key workflows and record processes have been consolidated, while stricter Python function definitions ensure robustness.
UI Enhancements
Checkboxes
- Toggle visibility of checkboxes in the grid while keeping them accessible in set details.
- Full management support for custom checkboxes.
Set Grid
- New filters to search by selected or unselected checkboxes.
Wishlist
- Added a Rebrickable link badge for sets (thanks @matthew!).
Database
- Integrated migration tools into the UI for seamless upgrades.
Tables
- Fixed table searches to properly index content inside link pills.
This release represents a significant step forward in performance, flexibility, and usability. Thank you to @gregoo's amazing work!
Downloads
-
released this
2025-01-19 09:47:15 +01:00 | 80 commits to master since this releaseBrickTracker v1.0.0 Release Notes
Major Changes
BrickTracker has undergone a complete rewrite (thanks for gregoo) with significant improvements to both functionality and design. You can preview the new interface in the documentation.
⚠️ Important: This update includes changes to the application structure and configuration. Please follow the migration steps carefully to ensure your data remains intact.
Environment Configuration
You can configure environment variables in two ways:
- In the
compose.yaml
file under theenvironment
section - In a separate
.env
file referenced byenv_file
Choose the method that best suits your deployment needs. All variables can be used in either location.
Migration Guide
Option 1: Local Installation (Git + Docker Build)
For users who installed via
git clone
and usebuild: .
in their Docker configuration:-
Update the repository:
cd BrickTracker git pull
-
Restructure your static directories:
mv static/instructions . mv static/sets . mv static/parts . mv static/minifigs .
-
Create data directory:
mkdir data mv app.db data/
-
Replace your
compose.yaml
with:services: bricktracker: container_name: BrickTracker restart: unless-stopped build: . ports: - "3333:3333" volumes: - ./data:/data/ - ./instructions:/app/static/instructions/ - ./minifigures:/app/static/minifigures/ - ./parts:/app/static/parts/ - ./sets:/app/static/sets/ environment: BK_DATABASE_PATH: /data/app.db BK_RETIRED_SETS_PATH: /data/retired_sets.csv BK_THEMES_PATH: /data/themes.csv env_file: ".env"
Note: You can move any environment variables from the
.env
file to theenvironment
section above, or vice versa. -
Update environment configuration:
mv .env .env.backup mv .env.sample .env
Then edit
.env
to include your API key and any desired customizations.Note: Make sure
BK_RETIRED_SETS_PATH
andBK_THEMES_PATH
are set correctly to match your volume mappings. -
Rebuild and restart:
docker compose build docker compose up -d
Option 2: Pre-built Docker Image
For users who prefer using the pre-built Docker image:
-
Create data directory:
mkdir data mv app.db data/
-
Update your
compose.yaml
:services: bricktracker: container_name: BrickTracker restart: unless-stopped image: gitea.baerentsen.space/frederikbaerentsen/bricktracker:1.0.0 ports: - "3333:3333" volumes: - ./parts:/app/static/parts - ./instructions:/app/static/instructions - ./minifigs:/app/static/minifigs - ./sets:/app/static/sets - ./data:/data/ env_file: ".env"
Note: You can add an
environment
section to specify variables directly in the compose file instead of using.env
. -
Configure environment:
Either download the sample configuration:wget -O .env https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker/raw/branch/master/.env.sample
Or update your existing
.env
with these required fields:BK_REBRICKABLE_API_KEY=<your_api_key> BK_DOMAIN_NAME=http://localhost:3331 BK_DATABASE_PATH=/data/app.db BK_RETIRED_SETS_PATH=/data/retired_sets.csv BK_THEMES_PATH=/data/themes.csv
-
Deploy:
docker compose pull docker compose up -d
Post-Installation Steps
- Access BrickTracker at
http://localhost:3333
- Visit
http://localhost:3333/admin
- Update default images, themes, and retired sets using the provided buttons
Additional Notes
- The new
.env
file includes numerous customization options. Review it thoroughly to optimize your setup. - Ensure all volume mappings in your
compose.yaml
are correct before starting the container. - Back up your data before performing the migration.
- Environment variables can be configured either in the
compose.yaml
file or in the.env
file, providing flexibility in how you manage your configuration.
Downloads
- In the