lua wiki URL

This commit is contained in:
rusefillc 2021-10-19 10:51:59 -04:00
parent d70537c8cd
commit cd457b465a
2 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20211015;
public static final int CONSOLE_VERSION = 20211019;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -6,6 +6,7 @@ import com.rusefi.config.generated.Fields;
import com.rusefi.ui.MessagesPanel;
import com.rusefi.ui.UIContext;
import com.rusefi.ui.storage.Node;
import com.rusefi.ui.util.URLLabel;
import com.rusefi.ui.widgets.AnyCommand;
import javax.swing.*;
@ -42,6 +43,7 @@ public class LuaScriptPanel {
upperPanel.add(writeButton);
upperPanel.add(resetButton);
upperPanel.add(command.getContent());
upperPanel.add(new URLLabel("Lua Wiki", "https://github.com/rusefi/rusefi/wiki/Lua-Scripting"));
// Center panel - script editor and log
JPanel scriptPanel = new JPanel(new BorderLayout());