I've been developing an application using PyGI and Quickly, and I now need to rename it. Is there any quick way to change all of the app name references in a Quickly application, or will I just need to do it by hand?
Asked
Active
Viewed 636 times
2 Answers
3
I had to do this for my appshowdown application, and I would not try to do it all by hand.
What I did was make a new project with the correct name, and then paste in my custom code, and change a couple references to the old name in there. I then copied over the files for the gui, and did a find and replace on those for the new name.
It depends on how your code is organized. For me, the majority of my code was in a single file, so it was not too bad to get my application up and running after copying in the files for the interface.
Jobi Carter
- 539
- 3
- 8
2
You will most likely have to do it all by hand. If you would like to see everything you can do in quickly you just need to open a terminal and run:
$: quickly commands
Zane Swafford
- 136