Move plugin building to separate project that exposes binary

This commit is contained in:
Exidex 2023-07-30 10:44:46 +02:00
parent ceeca442d6
commit bd004d2399
14 changed files with 531 additions and 454 deletions

View file

@ -26,7 +26,7 @@ fn main() -> glib::ExitCode {
let (react_contexts, ui_contexts) = plugin_manager.create_all_contexts();
let app = gtk::Application::builder()
.application_id("org.gtk_rs.HelloWorld2")
.application_id("org.placeholdername.placeholdername") // TODO what is proper letter case here?
.build();
spawn_react_thread(react_contexts);

View file

@ -104,7 +104,7 @@ pub struct PluginLoader;
impl PluginLoader {
pub fn load_plugins(&self) -> Vec<Plugin> {
let project_dirs = ProjectDirs::from("org", "gtk_rs", "HelloWorld2").unwrap();
let project_dirs = ProjectDirs::from("org", "placeholdername", "placeholdername").unwrap();
let config_dir = project_dirs.config_dir();