Projects STRLCPY vucsa Commits 2dacb9bf
🤬
  • ■ ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 1 lines
    2 2   
    3 3  All notable changes to this project will are documented in this changelog file.
    4 4   
     5 +## [1.0.1] - 2023-06-02
     6 +### Added
     7 +- fixed macOS icon
     8 +- updated readme
     9 +- fixed url
     10 + 
    5 11  ## [1.0.0] - 2022-01-01
    6 12  ### Added
    7 13  - common functionality
    skipped 9 lines
  • ■ ■ ■ ■
    README.md
    skipped 11 lines
    12 12  6. Horizontal Access Control
    13 13  7. Vertical Access Control
    14 14   
    15  -If you want to know how to solve these challenges, take a look at the [PETEP website](http://petep.warxim.com/methodology/),
     15 +If you want to know how to solve these challenges, take a look at the [PETEP website](https://petep.warxim.com/methodology/),
    16 16  which describes how to use the open-source tool PETEP to exploit them.
    17 17   
    18 18  **Tip:** Before you start hacking, do not forget to check the data structure of messages bellow.
    skipped 26 lines
  • ■ ■ ■ ■ ■ ■
    build.gradle
    skipped 10 lines
    11 11  }
    12 12   
    13 13  dependencies {
    14  - compile project(":vucsa-common")
    15  - compile project(":vucsa-client")
    16  - compile project(":vucsa-server")
     14 + project(":vucsa-common")
     15 + project(":vucsa-client")
     16 + project(":vucsa-server")
    17 17  }
    18 18   
    19 19  distributions {
    skipped 27 lines
  • ■ ■ ■ ■ ■
    vucsa-client/src/main/java/com/warxim/vucsa/client/gui/dialog/AboutDialog.java
    skipped 26 lines
    27 27  import javafx.scene.layout.GridPane;
    28 28  import javafx.stage.Stage;
    29 29   
    30  -import java.awt.*;
    31  -import java.io.IOException;
    32  -import java.net.URI;
    33  -import java.net.URISyntaxException;
    34 30  import java.util.logging.Level;
    35 31  import java.util.logging.Logger;
    36 32   
    skipped 37 lines
    74 70   link.setOnAction(AboutDialog::onWebClick);
    75 71   
    76 72   // Copyright
    77  - var copyrightLabel = new Label("Copyright (C) Michal Valka, 2022, all rights reserved.");
     73 + var copyrightLabel = new Label("Copyright (C) Michal Valka, 2023, all rights reserved.");
    78 74   
    79 75   // Grid
    80 76   var grid = new GridPane();
    skipped 36 lines
  • ■ ■ ■ ■ ■ ■
    vucsa-common/src/main/java/com/warxim/vucsa/common/Constant.java
    skipped 19 lines
    20 20   * Global constants.
    21 21   */
    22 22  public final class Constant {
    23  - public static final String VERSION = "1.0.0";
    24  - public static final String WEB = "http://vucsa.warxim.com";
     23 + public static final String VERSION = "1.0.1";
     24 + public static final String WEB = "https://vucsa.warxim.com";
    25 25   
    26 26   public static final String DEFAULT_SERVER_HOST = "127.0.0.1";
    27 27   public static final int DEFAULT_SERVER_PORT = 8765;
    skipped 6 lines
Please wait...
Page is in error, reload to recover