Skip to content

Commit

Permalink
refactor, version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-sita committed Nov 25, 2018
1 parent 0621f7f commit d3f484b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>pl.ksitarski.xis</groupId>
<artifactId>XIS</artifactId>
<version>0.2</version>
<version>0.2.1</version>

<dependencies>
<!-- pdfbox for opening pdfs-->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static void main(String[] args) {
public void start(Stage stage) throws Exception{
var res = getClass().getResource("sections/main/mainView.fxml");
Parent root = FXMLLoader.load(res);
stage.setTitle("XIS 0.2");
stage.setTitle("XIS 0.2.1");
stage.setScene(new Scene (root, 1280, 800));
stage.setMinHeight(480);
stage.setMinWidth(800);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
import sections.Notifier;
import sections.NotifierFactory;
import sections.UserFeedback;
import sections.highpassfilter.HighPassFilterConverter;
import sections.main.MainViewController;
import toolset.imagetools.BufferedImageConvert;
import toolset.imagetools.BufferedImageScale;
import toolset.imagetools.HighPassFilterConverter;
import toolset.io.GuiFileIO;
import toolset.io.PdfIO;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sections/automatedfilter/PdfFilter.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package sections.automatedfilter;

import sections.UserFeedback;
import sections.highpassfilter.HighPassFilterConverter;
import toolset.imagetools.HighPassFilterConverter;
import toolset.io.PdfIO;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import sections.main.MainViewController;
import toolset.imagetools.BufferedImageConvert;
import toolset.imagetools.BufferedImageScale;
import toolset.imagetools.HighPassFilterConverter;
import toolset.io.GuiFileIO;

import java.awt.image.BufferedImage;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
package sections.highpassfilter;

import toolset.imagetools.BufferedImageBlur;
import toolset.imagetools.BufferedImageColorPalette;
import toolset.imagetools.BufferedImageLayers;
import toolset.imagetools.BufferedImageVarious;
package toolset.imagetools;

import java.awt.image.BufferedImage;
import java.awt.image.Kernel;
Expand Down

0 comments on commit d3f484b

Please sign in to comment.