mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
Customize author/description is still broken #501
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @AykutToprak on GitHub (May 28, 2020).
Originally assigned to: @GregorBiswanger on GitHub.
try to customize author and description as below (as mentioned in #310 )
"executable": "Test",
"splashscreen": {
"imageFile": ""
},
"author": "Test author",
"description": "Test description"
But author is still "Gregor Biswanger" and description is still "Electron-Host for Electron.NET."
@GregorBiswanger commented on GitHub (May 29, 2020):
I tested it again and it works for me?!
What operating system do you have and where do you read other information?
{ "executable": "ElectronNETIssue419", "splashscreen": { "imageFile": "" }, "name": "ElectronNETIssue419", "author": "Max Mustermann", "description": "Only a test description.", "singleInstance": false, ...@MarkBQE commented on GitHub (May 29, 2020):
Greg,
I have the same issue. manifest file has no affect, I am using Windows 10. Also I am using it with Blazor server side.
@AykutToprak commented on GitHub (May 29, 2020):
My operating system is Windows 10. as @MarkBQE said manifest file has no affect. i used custom package.json for work around as
electronize build /target win /package-json "./package.json"to solve problem.@GregorBiswanger commented on GitHub (May 29, 2020):
@MarkBQE Is this the build version? Or with electronize start?
Which version of Node.js and Electron.NET do you have?
@MarkBQE commented on GitHub (May 29, 2020):
This is electronize start, in build it works as expected.
Node -6.13.6
.Net Core v3.1.4
Electron.NET 8.31.2
@GregorBiswanger commented on GitHub (May 29, 2020):
ahh okay, that explains a lot :) it only works with the finished build version...
Isn't that really relevant during development?!
@MarkBQE commented on GitHub (May 29, 2020):
I realized that it works in build after I posted this. I am OK with it the way it is as of now. I appreciate you looking into this. Keep up with the good work.