Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set product name and company #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/Info.dev.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleName</key>
<string>My Product</string>
<string>Comet</string>
<key>CFBundleExecutable</key>
<string>comet</string>
<key>CFBundleIdentifier</key>
Expand Down
2 changes: 1 addition & 1 deletion build/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleName</key>
<string>My Product</string>
<string>Comet</string>
<key>CFBundleExecutable</key>
<string>comet</string>
<key>CFBundleIdentifier</key>
Expand Down
8 changes: 4 additions & 4 deletions build/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"info": {
"0000": {
"ProductVersion": "0.1.0",
"CompanyName": "My Company",
"FileDescription": "My Product Description",
"LegalCopyright": "© now, My Company",
"ProductName": "My Product",
"CompanyName": "NODE-TEC",
"FileDescription": "Comet Description",
"LegalCopyright": "© now, NODE-TEC",
"ProductName": "Comet",
"Comments": "This is a comment"
}
}
Expand Down
4 changes: 2 additions & 2 deletions build/nsis/wails_tools.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
!define INFO_PROJECTNAME "comet"
!endif
!ifndef INFO_COMPANYNAME
!define INFO_COMPANYNAME "My Company"
!define INFO_COMPANYNAME "NODE-TEC"
!endif
!ifndef INFO_PRODUCTNAME
!define INFO_PRODUCTNAME "My Product"
!define INFO_PRODUCTNAME "Comet"
!endif
!ifndef INFO_PRODUCTVERSION
!define INFO_PRODUCTVERSION "0.1.0"
Expand Down