mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-08-12 20:40:59 +00:00
Merge branch prefs into master
The changes have been squashed as the commit history and messages were not very carefully crafted. There isn't that much value in preserving random commit messages. Also due to diverging branches, rebasing or merging it was difficult.
This commit is contained in:
@@ -1,16 +1,19 @@
|
||||
import io.xpipe.app.browser.action.BrowserAction;
|
||||
import io.xpipe.app.ext.ActionProvider;
|
||||
import io.xpipe.app.ext.DataStoreProvider;
|
||||
import io.xpipe.ext.base.InMemoryStoreProvider;
|
||||
import io.xpipe.ext.base.action.*;
|
||||
import io.xpipe.ext.base.browser.*;
|
||||
import io.xpipe.ext.base.script.ScriptGroupStoreProvider;
|
||||
import io.xpipe.ext.base.script.SimpleScriptStoreProvider;
|
||||
import io.xpipe.ext.base.store.StorePauseAction;
|
||||
import io.xpipe.ext.base.store.StoreStartAction;
|
||||
import io.xpipe.ext.base.store.StoreStopAction;
|
||||
|
||||
open module io.xpipe.ext.base {
|
||||
exports io.xpipe.ext.base;
|
||||
exports io.xpipe.ext.base.action;
|
||||
exports io.xpipe.ext.base.script;
|
||||
exports io.xpipe.ext.base.store;
|
||||
|
||||
requires java.desktop;
|
||||
requires io.xpipe.core;
|
||||
@@ -21,8 +24,6 @@ open module io.xpipe.ext.base {
|
||||
requires static net.synedra.validatorfx;
|
||||
requires static io.xpipe.app;
|
||||
requires org.kordamp.ikonli.javafx;
|
||||
requires com.sun.jna;
|
||||
requires com.sun.jna.platform;
|
||||
requires atlantafx.base;
|
||||
|
||||
provides BrowserAction with
|
||||
@@ -46,10 +47,14 @@ open module io.xpipe.ext.base {
|
||||
NewItemAction,
|
||||
RenameAction,
|
||||
DeleteAction,
|
||||
DeleteLinkAction,
|
||||
UnzipAction,
|
||||
JavapAction,
|
||||
JarAction;
|
||||
provides ActionProvider with
|
||||
StoreStopAction,
|
||||
StoreStartAction,
|
||||
StorePauseAction,
|
||||
CloneStoreAction,
|
||||
RefreshStoreAction,
|
||||
ScanAction,
|
||||
@@ -60,6 +65,5 @@ open module io.xpipe.ext.base {
|
||||
BrowseStoreAction;
|
||||
provides DataStoreProvider with
|
||||
SimpleScriptStoreProvider,
|
||||
ScriptGroupStoreProvider,
|
||||
InMemoryStoreProvider;
|
||||
ScriptGroupStoreProvider;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user