2017-03-10 18:34:56 +00:00
|
|
|
using Dino.Entities;
|
|
|
|
using Dino.Ui;
|
|
|
|
|
|
|
|
namespace Dino {
|
|
|
|
|
|
|
|
void main(string[] args) {
|
2017-03-12 12:19:04 +00:00
|
|
|
try{
|
2017-03-12 13:42:04 +00:00
|
|
|
string? exec_path = args.length > 0 ? args[0] : null;
|
|
|
|
if (exec_path != null && exec_path.contains(Path.DIR_SEPARATOR_S)) {
|
|
|
|
string bindir = Path.get_dirname(exec_path);
|
|
|
|
if (FileUtils.test(Path.build_filename(bindir, "gschemas.compiled"), FileTest.IS_REGULAR)) {
|
|
|
|
Environment.set_variable("GSETTINGS_SCHEMA_DIR", Path.get_dirname(exec_path), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Plugins.Loader loader = new Plugins.Loader(exec_path);
|
2017-03-12 12:19:04 +00:00
|
|
|
Gtk.init(ref args);
|
|
|
|
Dino.Ui.Application app = new Dino.Ui.Application();
|
|
|
|
foreach (string plugin in new string[]{"omemo", "openpgp"}) {
|
|
|
|
try {
|
|
|
|
loader.load(plugin, app);
|
|
|
|
} catch (Error e) {
|
|
|
|
print(@"Error loading plugin $plugin: $(e.message)\n");
|
|
|
|
}
|
2017-03-10 18:34:56 +00:00
|
|
|
}
|
2017-03-12 12:19:04 +00:00
|
|
|
app.run(args);
|
|
|
|
loader.shutdown();
|
|
|
|
} catch (Error e) {
|
|
|
|
print(@"Fatal error: $(e.message)\n");
|
2017-03-10 18:34:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|