File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const isBuilding = process.env.NATIVEPHP_BUILDING;
88const appAuthor = process . env . NATIVEPHP_APP_AUTHOR ;
99const fileName = process . env . NATIVEPHP_APP_FILENAME ;
1010const appVersion = process . env . NATIVEPHP_APP_VERSION ;
11+ const appCopyright = process . env . NATIVEPHP_APP_COPYRIGHT ;
1112const deepLinkProtocol = process . env . NATIVEPHP_DEEPLINK_SCHEME ;
1213
1314// Since we do not copy the php executable here, we only need these for building
@@ -46,6 +47,7 @@ if (isBuilding) {
4647export default {
4748 appId : appId ,
4849 productName : appName ,
50+ copyright : appCopyright ,
4951 directories : {
5052 buildResources : 'build' ,
5153 output : isBuilding ? join ( process . env . APP_PATH , 'dist' ) : undefined ,
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ protected function getEnvironmentVariables(): array
141141 'NATIVEPHP_APP_NAME ' => config ('app.name ' ),
142142 'NATIVEPHP_APP_ID ' => config ('nativephp.app_id ' ),
143143 'NATIVEPHP_APP_VERSION ' => config ('nativephp.version ' ),
144+ 'NATIVEPHP_APP_COPYRIGHT ' => config ('nativephp.copyright ' ),
144145 'NATIVEPHP_APP_FILENAME ' => Str::slug (config ('app.name ' )),
145146 'NATIVEPHP_APP_AUTHOR ' => config ('nativephp.author ' ),
146147 'NATIVEPHP_UPDATER_CONFIG ' => json_encode (Updater::builderOptions ()),
You can’t perform that action at this time.
0 commit comments