You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, you can run hamster directly from a source checkout, but only when you have the gsettings schema installed (for example by installing the Debian package). If not, the README now links to a comment recommending to manuallly set up GSETTINGS_SCHEMA_DIR=./data to let gtk find the schema.
I would suggest we implement the above approach in the code automatically - if hamster.installed is false, then run glib-compile-schemas ./data and set GSETTINGS_SCHEMA_DIR=./data. This should make sure that running from the source tree always works, and always uses the correct schema version as well, making development just a little easier.
The text was updated successfully, but these errors were encountered:
Currently, you can run hamster directly from a source checkout, but only when you have the gsettings schema installed (for example by installing the Debian package). If not, the README now links to a comment recommending to manuallly set up
GSETTINGS_SCHEMA_DIR=./data
to let gtk find the schema.I would suggest we implement the above approach in the code automatically - if
hamster.installed
is false, then runglib-compile-schemas ./data
and setGSETTINGS_SCHEMA_DIR=./data
. This should make sure that running from the source tree always works, and always uses the correct schema version as well, making development just a little easier.The text was updated successfully, but these errors were encountered: