✅ Mise à jour du gitignore pour exclure le dossier "bin/"
This commit is contained in:
parent
8772e6475e
commit
a7f30467ed
3
.gitignore
vendored
3
.gitignore
vendored
@ -149,4 +149,5 @@ tags
|
||||
|
||||
### Java
|
||||
*.class
|
||||
.jar
|
||||
.jar
|
||||
bin/
|
@ -15,7 +15,7 @@ if (-not (Test-Path $outputDir)) {
|
||||
Set-Location $projectPath
|
||||
|
||||
# Compiler tous les fichiers Java en spécifiant le dossier de sortie pour les fichiers .class et en utilisant UTF-8 pour l'encodage
|
||||
javac -d $outputDir -encoding UTF-8 (Get-ChildItem -Path $projectPath -Recurse -Filter *.java).FullName
|
||||
# javac -d $outputDir -encoding UTF-8 (Get-ChildItem -Path $projectPath -Recurse -Filter *.java).FullName
|
||||
|
||||
# Copier les ressources dans le répertoire de sortie
|
||||
if (-not (Test-Path $resourcesOutputDir)) {
|
||||
|
@ -1,14 +0,0 @@
|
||||
package com.charpentierbalocchi.dorfjavatik.main;
|
||||
|
||||
import com.charpentierbalocchi.dorfjavatik.view.FenetreDemarrage;
|
||||
|
||||
public class DorfJavaTik {
|
||||
public static void main(String[] args) {
|
||||
// Lancer la fenêtre de démarrage
|
||||
javax.swing.SwingUtilities.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new FenetreDemarrage();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
@ -13,7 +13,7 @@ public class AffichageTuile extends JPanel {
|
||||
|
||||
public AffichageTuile(Tuile tuile) {
|
||||
this.tuile = tuile;
|
||||
setPreferredSize(new Dimension(100, 100)); // Taille préférée du panel pour afficher la tuile
|
||||
setPreferredSize(new Dimension(125, 125)); // Taille préférée du panel pour afficher la tuile
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -38,7 +38,7 @@ public class FenetreDemarrage extends JFrame {
|
||||
try {
|
||||
int taille = Integer.parseInt(textField.getText());
|
||||
if (taille == 1) {
|
||||
String gifPath = "src/com/charpentierbalocchi/dorfjavatik/resources/image.gif";
|
||||
String gifPath = "/com/charpentierbalocchi/dorfjavatik/resources/image.gif";
|
||||
|
||||
ImageIcon gifIcon = new ImageIcon(gifPath);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user