Ubuntu – How to rename an application while developing with Quickly

application-developmentgtkpygipythonquickly

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?

Best Answer

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.