Can playback video with controls, need to fix performance and reducing window size
This commit is contained in:
23
gui/src/main/java/module-info.java
Normal file
23
gui/src/main/java/module-info.java
Normal file
@@ -0,0 +1,23 @@
|
||||
import com.github.gtache.autosubtitle.gui.spi.MainBundleProvider;
|
||||
import com.github.gtache.autosubtitle.gui.spi.MainBundleProviderImpl;
|
||||
import com.github.gtache.autosubtitle.gui.spi.SetupBundleProvider;
|
||||
import com.github.gtache.autosubtitle.gui.spi.SetupBundleProviderImpl;
|
||||
import com.github.gtache.autosubtitle.gui.spi.WorkBundleProvider;
|
||||
import com.github.gtache.autosubtitle.gui.spi.WorkBundleProviderImpl;
|
||||
|
||||
/**
|
||||
* GUI module for auto-subtitle
|
||||
*/
|
||||
module com.github.gtache.autosubtitle.gui {
|
||||
requires transitive com.github.gtache.autosubtitle.api;
|
||||
requires transitive dagger;
|
||||
requires transitive javax.inject;
|
||||
|
||||
exports com.github.gtache.autosubtitle.gui;
|
||||
exports com.github.gtache.autosubtitle.gui.spi;
|
||||
exports com.github.gtache.autosubtitle.modules.gui;
|
||||
|
||||
provides MainBundleProvider with MainBundleProviderImpl;
|
||||
provides SetupBundleProvider with SetupBundleProviderImpl;
|
||||
provides WorkBundleProvider with WorkBundleProviderImpl;
|
||||
}
|
||||
Reference in New Issue
Block a user