diff --git a/.gitignore b/.gitignore index 5ff6309..440bf0d 100644 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,6 @@ build/ .vscode/ ### Mac OS ### -.DS_Store \ No newline at end of file +.DS_Store +.idea/aws.xml +/out/ diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index 0158f27..d5c8fdd 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -1,8 +1,22 @@ +// Copyright 2024 Serhii Kushnerov +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at serhiikushnerov@gmail.com +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + module FileSorter { + requires javafx.controls; requires javafx.graphics; requires javafx.fxml; opens ua.skushnerov; // Экспорт пакета org.example opens ua.skushnerov.controller to javafx.fxml; -} \ No newline at end of file +} diff --git a/src/main/java/ua/skushnerov/controller/FileSorterController.java b/src/main/java/ua/skushnerov/controller/FileSorterController.java index 33cbd3d..596aa89 100644 --- a/src/main/java/ua/skushnerov/controller/FileSorterController.java +++ b/src/main/java/ua/skushnerov/controller/FileSorterController.java @@ -11,7 +11,6 @@ // See the License for the specific language governing permissions and // limitations under the License. package ua.skushnerov.controller; - import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.TextField; diff --git a/src/main/resources/components/theme.js b/src/main/resources/components/theme.js index 53719fc..0c0460c 100644 --- a/src/main/resources/components/theme.js +++ b/src/main/resources/components/theme.js @@ -1,3 +1,15 @@ +// Copyright 2024 Serhii Kushnerov +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at serhiikushnerov@gmail.com +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. export const theme = createTheme({ palette: { primary: { @@ -13,52 +25,4 @@ export const theme = createTheme({ // grey: '#6B6C6F', }, }, - typography: { - fontFamily: ['Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'].join(','), - h1: { - fontSize: 64, - fontWeight: 800, - lineHeight: '96px', - }, - h2: { - fontSize: 48, - fontWeight: 700, - lineHeight: '58px', - }, - h3: { - fontSize: 36, - fontWeight: 700, - lineHeight: '44px', - }, - h4: { - fontSize: 28, - fontWeight: 700, - lineHeight: '28px', - }, - h5: { - fontSize: 24, - fontWeight: 700, - lineHeight: '24px', - }, - h6: { - fontSize: 20, - fontWeight: 700, - lineHeight: '24px', - }, - subtitle1: { - fontSize: 14, - fontWeight: 700, - lineHeight: '18px', - }, - }, - - breakpoints: { - values: { - xs: 0, - sm: 600, - md: 900, - lg: 1200, - xl: 1536, - }, - }, });