MAJ
This commit is contained in:
parent
0b24b05237
commit
1b0f56fdb8
@ -22,7 +22,7 @@ public class commandes {
|
|||||||
public static nodeAC nodeACCSV = null;
|
public static nodeAC nodeACCSV = null;
|
||||||
|
|
||||||
//**version
|
//**version
|
||||||
public static String version ="V1.0.0"; // La version actuelle
|
public static String version ="V2.0.1"; // La version actuelle
|
||||||
public static String branch = "Origin";
|
public static String branch = "Origin";
|
||||||
public static String Annee ="2022";
|
public static String Annee ="2022";
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ public final class about extends JFrame {
|
|||||||
|
|
||||||
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
||||||
getContentPane().setLayout(null);
|
getContentPane().setLayout(null);
|
||||||
ImageIcon img = new ImageIcon(getClass().getResource("/evalwriter.png") );
|
ImageIcon img = new ImageIcon(about.class.getResource("/resources/evalcalc.png") );
|
||||||
setIconImage(img.getImage());
|
setIconImage(img.getImage());
|
||||||
|
|
||||||
JPanel contentPane = (JPanel) getContentPane();
|
JPanel contentPane = (JPanel) getContentPane();
|
||||||
@ -99,7 +99,7 @@ public final class about extends JFrame {
|
|||||||
btnNewButton.addActionListener(new ActionListener() {
|
btnNewButton.addActionListener(new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
try {
|
try {
|
||||||
String url = "https://forge.chapril.org/pablo/analyseWriter/releases";
|
String url = "https://forge.chapril.org/pablo/analyseCalc/releases";
|
||||||
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
||||||
}
|
}
|
||||||
catch (java.io.IOException e1) {
|
catch (java.io.IOException e1) {
|
||||||
|
@ -132,7 +132,7 @@ public final class create extends JFrame {
|
|||||||
setLocation(( (screenWidth) - getWidth()) / 2, (screenHeight - getHeight()) / 2);
|
setLocation(( (screenWidth) - getWidth()) / 2, (screenHeight - getHeight()) / 2);
|
||||||
|
|
||||||
ImageIcon img = new ImageIcon(mainApp.class.getResource("/resources/evalcalc.png"));
|
ImageIcon img = new ImageIcon(mainApp.class.getResource("/resources/evalcalc.png"));
|
||||||
setTitle(commandes.Titre + " " + commandes.version + " " + commandes.branch);
|
setTitle(commandes.Titre + " - " + commandes.version + " " + commandes.branch);
|
||||||
setIconImage(img.getImage());
|
setIconImage(img.getImage());
|
||||||
|
|
||||||
setLocationRelativeTo( null );
|
setLocationRelativeTo( null );
|
||||||
|
@ -66,9 +66,9 @@ public class evaluate extends JFrame {
|
|||||||
*/
|
*/
|
||||||
public evaluate() {
|
public evaluate() {
|
||||||
|
|
||||||
ImageIcon img = new ImageIcon(getClass().getResource("/evalwriter.png") );
|
ImageIcon img = new ImageIcon(mainApp.class.getResource("/resources/evalcalc.png"));
|
||||||
this.setIconImage(img.getImage());
|
this.setIconImage(img.getImage());
|
||||||
setTitle(calc.commandes.Titre + " " + calc.commandes.version + " " + calc.commandes.branch);
|
setTitle(calc.commandes.Titre + " - " + calc.commandes.version + " " + calc.commandes.branch);
|
||||||
|
|
||||||
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
|
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
|
||||||
setBounds(100, 100, 980, 700);
|
setBounds(100, 100, 980, 700);
|
||||||
@ -780,13 +780,12 @@ public class evaluate extends JFrame {
|
|||||||
|
|
||||||
@Override public void actionPerformed( ActionEvent e ) {
|
@Override public void actionPerformed( ActionEvent e ) {
|
||||||
try {
|
try {
|
||||||
String url = "https://www.youtube.com/channel/UCBSfItcCVnbRJdQbVE9ppjQ";
|
String url = "https://www.youtube.com/channel/UCG3tJWp_oZvOumH5kWUJ55g";
|
||||||
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
||||||
}
|
}
|
||||||
catch (java.io.IOException e1) {
|
catch (java.io.IOException e1) {
|
||||||
System.out.println(e1.getMessage());
|
System.out.println(e1.getMessage());
|
||||||
}
|
}
|
||||||
System.out.println( "Affiche les tutoriels." );
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ public class mainApp extends JFrame implements ActionListener{
|
|||||||
|
|
||||||
frmEvalwriter = new JFrame();
|
frmEvalwriter = new JFrame();
|
||||||
frmEvalwriter.setResizable(false);
|
frmEvalwriter.setResizable(false);
|
||||||
frmEvalwriter.setTitle(calc.commandes.Titre);
|
frmEvalwriter.setTitle(calc.commandes.Titre + " - " +calc.commandes.version + " "+ calc.commandes.branch);
|
||||||
frmEvalwriter.setBounds(100, 100, 500, 380);
|
frmEvalwriter.setBounds(100, 100, 500, 380);
|
||||||
int screenWidth = (int) java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds().getWidth();
|
int screenWidth = (int) java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds().getWidth();
|
||||||
int screenHeight = (int) java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds().getHeight();
|
int screenHeight = (int) java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds().getHeight();
|
||||||
@ -104,7 +104,7 @@ public class mainApp extends JFrame implements ActionListener{
|
|||||||
btnTutoriels.addActionListener(new ActionListener() {
|
btnTutoriels.addActionListener(new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
try {
|
try {
|
||||||
String url = "https://www.youtube.com/channel/UCBSfItcCVnbRJdQbVE9ppjQ";
|
String url = "https://www.youtube.com/channel/UCG3tJWp_oZvOumH5kWUJ55g";
|
||||||
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
|
||||||
}
|
}
|
||||||
catch (java.io.IOException e1) {
|
catch (java.io.IOException e1) {
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 3.0 KiB |
Loading…
x
Reference in New Issue
Block a user