-
-
Notifications
You must be signed in to change notification settings - Fork 114
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
Allow development builds and stable builds to be installed simultaneously #1427
Comments
I hard-coded a different app id in the Files Gtk4 branch but this sound more elegant. |
My suggestion for implementing this is for the main executable to be just a thin wrapper that launches the default build. For example: Edit: For distinguishing between code-rel and code-dev during runtime you could just load |
You can run a different uninstalled branch of Code by editing To be able to install two version you would have to temporarily change the meson project name so that the executables etc are distinct. However you could end up with lots of versions that would be a pain to uninstall. You could try changing the install directory too I guess. Not sure how much of this could (or should) be automatic. Be aware that uninstalled versions of Code would use the |
@colinkiama I can confirm that running two installed versions of Code (with different names) is possible but is difficult and causes problems. It is time consuming to remove the development version. I suggest you try setting up a VM running the same version of elementaryos as the host (Gnome Boxes works well and is very easy). You can then share the code folder between host and VM. Edit the code in the host but install it on the VM. |
Problem
When working on elementary Code in elementary Code, you currently need to restart the app whenever you build to see the latest changes.
For people who primarily use elementary Code as their code editor, you lose time restarting the app whenever you would like to preview your changes. Some changes may break the app and will result you in having to use another editor application or revert your changes to get the elementary Code working again.
Proposal
Set the
development
option in meson to true by default and use a different ID, icon and name to differentiate between stable builds and development builds.Prior Art (Optional)
GNOME apps for example:
The text was updated successfully, but these errors were encountered: