mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-12-23 10:38:55 +00:00
Hiding menu bar by default
This commit is contained in:
parent
4089cd36cb
commit
329d82a18c
@ -158,6 +158,14 @@ Width of the packaged application, defaults to `1280px`.
|
|||||||
|
|
||||||
Height of the packaged application, defaults to `800px`.
|
Height of the packaged application, defaults to `800px`.
|
||||||
|
|
||||||
|
#### [show-menu-bar]
|
||||||
|
|
||||||
|
```
|
||||||
|
-m, --show-menu-bar
|
||||||
|
```
|
||||||
|
|
||||||
|
Specifies if the menu bar should be shown.
|
||||||
|
|
||||||
#### [user-agent]
|
#### [user-agent]
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,5 +4,6 @@
|
|||||||
"badge": false,
|
"badge": false,
|
||||||
"width": 1280,
|
"width": 1280,
|
||||||
"height": 800,
|
"height": 800,
|
||||||
|
"showMenuBar": false,
|
||||||
"showDevTools": false
|
"showDevTools": false
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,7 @@ app.on('ready', function () {
|
|||||||
{
|
{
|
||||||
width: appArgs.width || 1280,
|
width: appArgs.width || 1280,
|
||||||
height: appArgs.height || 800,
|
height: appArgs.height || 800,
|
||||||
|
'auto-hide-menu-bar': ! appArgs.showMenuBar,
|
||||||
'web-preferences': {
|
'web-preferences': {
|
||||||
javascript: true,
|
javascript: true,
|
||||||
plugins: true,
|
plugins: true,
|
||||||
|
@ -31,7 +31,7 @@ function buildApp(options, callback) {
|
|||||||
|
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
callback => {
|
callback => {
|
||||||
copyPlaceholderApp(options.dir, tmpPath, options.name, options.targetUrl, options.badge, options.counter, options.width, options.height, options.userAgent, callback);
|
copyPlaceholderApp(options.dir, tmpPath, options.name, options.targetUrl, options.badge, options.counter, options.width, options.height, options.showMenuBar, options.userAgent, callback);
|
||||||
},
|
},
|
||||||
|
|
||||||
(tempDir, callback) => {
|
(tempDir, callback) => {
|
||||||
@ -64,10 +64,11 @@ function buildApp(options, callback) {
|
|||||||
* @param {boolean} counter
|
* @param {boolean} counter
|
||||||
* @param {number} width
|
* @param {number} width
|
||||||
* @param {number} height
|
* @param {number} height
|
||||||
|
* @param {boolean} showMenuBar
|
||||||
* @param {string} userAgent
|
* @param {string} userAgent
|
||||||
* @param {tempDirCallback} callback
|
* @param {tempDirCallback} callback
|
||||||
*/
|
*/
|
||||||
function copyPlaceholderApp(srcAppDir, tempDir, name, targetURL, badge, counter, width, height, userAgent, callback) {
|
function copyPlaceholderApp(srcAppDir, tempDir, name, targetURL, badge, counter, width, height, showMenuBar, userAgent, callback) {
|
||||||
const loadedPackageJson = packageJson;
|
const loadedPackageJson = packageJson;
|
||||||
copy(srcAppDir, tempDir, function(error) {
|
copy(srcAppDir, tempDir, function(error) {
|
||||||
if (error) {
|
if (error) {
|
||||||
@ -83,6 +84,7 @@ function copyPlaceholderApp(srcAppDir, tempDir, name, targetURL, badge, counter,
|
|||||||
counter: counter,
|
counter: counter,
|
||||||
width: width,
|
width: width,
|
||||||
height: height,
|
height: height,
|
||||||
|
showMenuBar: showMenuBar,
|
||||||
userAgent: userAgent,
|
userAgent: userAgent,
|
||||||
nativefierVersion: loadedPackageJson.version
|
nativefierVersion: loadedPackageJson.version
|
||||||
};
|
};
|
||||||
|
@ -27,6 +27,7 @@ function main(program) {
|
|||||||
program.counter,
|
program.counter,
|
||||||
program.width,
|
program.width,
|
||||||
program.height,
|
program.height,
|
||||||
|
program.showMenuBar,
|
||||||
program.userAgent,
|
program.userAgent,
|
||||||
program.honest,
|
program.honest,
|
||||||
callback);
|
callback);
|
||||||
@ -40,7 +41,6 @@ function main(program) {
|
|||||||
console.error(error);
|
console.error(error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`App built to ${appPath}`);
|
console.log(`App built to ${appPath}`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -64,6 +64,7 @@ if (require.main === module) {
|
|||||||
.option('-i, --icon <value>', 'the icon file to use as the icon for the app (should be a .icns file on OSX)')
|
.option('-i, --icon <value>', 'the icon file to use as the icon for the app (should be a .icns file on OSX)')
|
||||||
.option('-w, --width <value>', 'set window width, defaults to 1280px', parseInt)
|
.option('-w, --width <value>', 'set window width, defaults to 1280px', parseInt)
|
||||||
.option('-h, --height <value>', 'set window height, defaults to 800px', parseInt)
|
.option('-h, --height <value>', 'set window height, defaults to 800px', parseInt)
|
||||||
|
.option('-m, --show-menu-bar', 'set menu bar visible, defaults to false')
|
||||||
.option('-u, --user-agent <value>', 'set the user agent string for the app')
|
.option('-u, --user-agent <value>', 'set the user agent string for the app')
|
||||||
.option('--honest', 'prevent the nativefied app from changing the user agent string to masquerade as a regular chrome browser')
|
.option('--honest', 'prevent the nativefied app from changing the user agent string to masquerade as a regular chrome browser')
|
||||||
.parse(process.argv);
|
.parse(process.argv);
|
||||||
|
@ -23,6 +23,7 @@ function optionsFactory(name,
|
|||||||
counter = false,
|
counter = false,
|
||||||
width = 1280,
|
width = 1280,
|
||||||
height = 800,
|
height = 800,
|
||||||
|
showMenuBar = false,
|
||||||
userAgent,
|
userAgent,
|
||||||
honest = false,
|
honest = false,
|
||||||
callback) {
|
callback) {
|
||||||
@ -63,6 +64,7 @@ function optionsFactory(name,
|
|||||||
counter: counter,
|
counter: counter,
|
||||||
width: width,
|
width: width,
|
||||||
height: height,
|
height: height,
|
||||||
|
showMenuBar: showMenuBar,
|
||||||
userAgent: userAgent
|
userAgent: userAgent
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user