-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[feat] displayName for package #8109
Comments
Hope it will be implemented. Have the same problem here for a Windows app |
x3, waiting for this feature. |
Hi, I have created a PR to this issue, please try and let me know if it works for you! |
Is there any progress? I really need this function |
The PR is linked right above your comment -> #9375 |
…rgo name (#9375) * refactor(cli&bundler): avoid renaming main executable and reserve cargo name closes #8109 closes #8349 * fix bundler * fix test * Discard changes to core/tauri-build/Cargo.toml * revert Cargo.toml changes * Discard changes to Cargo.lock * Discard changes to tooling/cli/Cargo.lock * lock file * use product name for installers * only warn for sign on windows --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
Just a note that we have decided to add |
Describe the problem
This is probably nitpicking, but I am looking to have two separate "names" for my Tauri application. Right now, I understand that in
tauri.conf.json
I can definepackage
->productName
. This is what is used to name installers, exe's, log files (if using the plugin), etc.But it also is what is used for the "user-facing" display name, for example what it is called in the Start Menu on Windows. So for
my-app
, if I want the user to have a "user-friendly" name to search for, I need to setproductName
toMy App
. But then the underlying executable is calledMy App.exe
, which just kind of irks me lol. I think it should bemy-app.exe
. It just seems more professional, and more in line with what I see in other apps I have installed on my system.Describe the solution you'd like
Keep
productName
as the default way of naming your app. But add an option inpackage
calleddisplayName
, which determines the "user-facing" name of the application, while keeping file-system friendlyproductName
for .exe's, etc.Alternatives considered
I am thinking that this would be an app manifest thing on Windows. Not sure about Linux and Mac.
Additional context
No response
The text was updated successfully, but these errors were encountered: