All checks were successful
Build and Test / build (pull_request) Successful in 32m17s
Copy QuickNav and ZTools source trees into reference/ for developer reference during the UI/UX rework. These are plain directories (not submodules) and are not included in the build. - reference/quicknav/ — QuickNav addon source - reference/ztools/ — ZTools addon source Part of the UI/UX rework preparation. See #346.
13 lines
404 B
Python
13 lines
404 B
Python
# ztools Addon Initialization
|
|
# This file runs at FreeCAD startup (before GUI)
|
|
|
|
import FreeCAD as App
|
|
|
|
# The Catppuccin Mocha theme is now provided as a Preference Pack.
|
|
# It will be automatically available in:
|
|
# Edit > Preferences > General > Preference packs > CatppuccinMocha
|
|
#
|
|
# No manual installation is required - FreeCAD's addon system handles it.
|
|
|
|
App.Console.PrintLog("ztools addon loaded\n")
|