mirror of
https://github.com/Codeux-Software/Textual.git
synced 2026-06-16 13:24:32 +00:00
This is a work in progress to move Standard Release and Debug build schemes to sandboxed environment. To accomplish this, the group identifier has changed to com.codeux.apps.textual-common so that it does not clash with the bundle identifier of the app. Because of this change, all contents from the previous group container has to be migrated. TPCResourceManager has been extended to accomplish this. TPCResourceManager will automatically copy files to the new group container then prompt the user asking if they want to delete the old. File migration is tuned so that failure to copy one file does not stop the entire operation. It will also migrate preference keys. TPCResourceManager will also be setup to migrate Mac App Store installations at a later date using nearly the same logic patterns. That is not implemented yet.
15 lines
653 B
Plaintext
15 lines
653 B
Plaintext
|
|
// The main project of Textual, its extensions, and its XPC services
|
|
// all inherit one of these configuration files to allow them to
|
|
// selectively disable code based on which features are enabled.
|
|
|
|
// These macros that are used to disable and enable the inclusion
|
|
// of certain segments of code. Toggling one of these flags does not
|
|
// guarantee that the toggled feature will work. These only toggle the code.
|
|
// Not add additional resource files that the code may be dependent on.
|
|
// To add new feature flags, modify UpdateFeatureFlags.sh
|
|
|
|
TEXTUAL_BUILT_INSIDE_SANDBOX=1
|
|
TEXTUAL_BUILT_WITH_ADVANCED_ENCRYPTION=1
|
|
TEXTUAL_BUILT_WITH_LICENSE_MANAGER=1
|