mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
15 lines
382 B
JavaScript
15 lines
382 B
JavaScript
imports.gi.versions.Gdk = '4.0';
|
|
imports.gi.versions.Gtk = '4.0';
|
|
|
|
const CLAPPER_PATH = '@importspath@';
|
|
imports.searchPath.unshift(CLAPPER_PATH);
|
|
|
|
const ClapperSrc = imports.clapper_src;
|
|
ClapperSrc.misc.clapperPath = CLAPPER_PATH;
|
|
ClapperSrc.misc.clapperVersion = '@PACKAGE_VERSION@';
|
|
|
|
var { App } = ClapperSrc.app;
|
|
var { Widget } = ClapperSrc.widget;
|
|
|
|
imports.searchPath.shift();
|