Skip to content

Commit

Permalink
Merge pull request #1 from JSalmon11/dev
Browse files Browse the repository at this point in the history
dev
  • Loading branch information
JSalmon11 authored Apr 8, 2022
2 parents b552912 + 2a17636 commit 3fd04cb
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 16 deletions.
6 changes: 0 additions & 6 deletions .vscode/CHANGELOG.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CHANGELOG

## [1.0.0] - 2022-04-08
- Initial release

[1.0.0]: https://github.com/JSalmon11/Generador-de-Contrasenias/compare/b552912c04419d8d2ae5d9fd9bb7f315145f46d8...1.0.0
30 changes: 20 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
## Getting Started
# Generador de contraseñas

Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code.
## Introducción

## Folder Structure
Esta es un aplicación sencilla que genera contraseñas seguras aleatorias.

The workspace contains two folders by default, where:
### Comenzando

- `src`: the folder to maintain sources
- `lib`: the folder to maintain dependencies
Puedes decargar el ejecutable de la versión que desees.

Meanwhile, the compiled output files will be generated in the `bin` folder by default.
### Pre-requisitos 📋

> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there.
-Tener instalado el Java jre mínimo necesario, el [jre1.8.0_321](https://www.java.com/es/download/ie_manual.jsp).

## Dependency Management
### Instalación 🔧

The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies).
Con Java en tu ordenador solo tendrás que ejecutar el archivo .exe o .jar.

## Ejecución ⚙️

Al ejecutar el programa se pide la longitud deseada de la contraseña, una vez elegida pulsa el botón mostrar y aparecerá una contraseña segura, pulsa copiar para ponerla en el portapapeles y poder pegarla donde quieras.

### Autor ✍️
https://github.com/JSalmon11

## Construido con 🛠️

* [Visual studio code](https://code.visualstudio.com/downloadl)
Binary file modified bin/App$1.class
Binary file not shown.
Binary file modified bin/App$2.class
Binary file not shown.
Binary file modified bin/App.class
Binary file not shown.
Binary file added bin/img/icon.ico
Binary file not shown.
Binary file added bin/img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.layout.Pane;
import javafx.scene.layout.StackPane;
import javafx.scene.text.Font;
Expand All @@ -26,6 +27,7 @@ public static void main(String[] args) {

@Override
public void start(Stage stage) {
stage.getIcons().add(new Image(App.class.getResourceAsStream("/img/icon.png")));
stage.setResizable(false);
stage.setTitle("Generador de contraseñas");
Text textLongitud = new Text("Longitud:");
Expand Down
Binary file added src/img/icon.ico
Binary file not shown.
Binary file added src/img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3fd04cb

Please sign in to comment.