Use company name on Developed by phrase #175

Closed
opened 2026-01-07 00:03:54 +08:00 by soareseneves · 3 comments
soareseneves commented 2026-01-07 00:03:54 +08:00 (Migrated from github.com)

Hello, I have a situation which I need a Custom Application Name that will be different than Company Name, for example, RustInstaller, and my company is JohnsCar, if I build it as it is it will generate RustInstaller.exe and then in the rustdesk app it will show "Developed by RustInstaller" instead of JohnsCar, is it possible to change that behaviour?

Hello, I have a situation which I need a Custom Application Name that will be different than Company Name, for example, RustInstaller, and my company is JohnsCar, if I build it as it is it will generate RustInstaller.exe and then in the rustdesk app it will show "Developed by RustInstaller" instead of JohnsCar, is it possible to change that behaviour?
bryangerlach commented 2026-01-07 05:41:46 +08:00 (Migrated from github.com)

Where does it say "Developed by RustInstaller"? I'm not sure where this is. Are you referring to where it says "Powered by xxx"?

Where does it say "Developed by RustInstaller"? I'm not sure where this is. Are you referring to where it says "Powered by xxx"?
soareseneves commented 2026-01-07 19:41:19 +08:00 (Migrated from github.com)

Sorry about that, mistranslation, I think you are right, it is the "Powered by xxx", here is a picture

Image
Sorry about that, mistranslation, I think you are right, it is the "Powered by xxx", here is a picture <img width="274" height="55" alt="Image" src="https://github.com/user-attachments/assets/4dc03ba8-d95f-459c-93b7-d4f3e6ef15de" />
soareseneves commented 2026-01-07 20:36:55 +08:00 (Migrated from github.com)

I managed to do it by adding 3 lines to generator-windows.yml file, right after line 197:

line 197 # ./src/lang/en.rs
if [ ! -z "${{ fromJson(inputs.extras).compname }}" ]; then
  find ./src/lang -name "*.rs" -exec sed -i '/powered_by_me/s|RustDesk|${{ fromJson(inputs.extras).compname }}|g' {} \;
fi
I managed to do it by adding 3 lines to generator-windows.yml file, right after line 197: ``` line 197 # ./src/lang/en.rs if [ ! -z "${{ fromJson(inputs.extras).compname }}" ]; then find ./src/lang -name "*.rs" -exec sed -i '/powered_by_me/s|RustDesk|${{ fromJson(inputs.extras).compname }}|g' {} \; fi ```
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 3344/rdgen#175