docs: add my credits;style: change the window size

This commit is contained in:
gtxzsxxk 2023-07-30 01:15:35 +08:00
parent 47c18d82f3
commit c686ade8a9
3 changed files with 15 additions and 16 deletions

View File

@ -7,21 +7,18 @@
* Modified Menu class, setting up a new abstract method so that the hotkey can be sync via the gui
* Modified MenuFile MenuEdit MenuSimulate to implement that abstract method
* After my modification, 11 menuitem in the menu-bar are now available in hotkey settings. Changes will be updated
immediately.
The 11 menuitem are as follows.
* Auto-Propagate
* Reset Simulation
* Single-Step Propagation
* Manual Tick Half Cycle
* Manual Tick Full Cycle
* Auto-Tick Enabled
* Undo
* Redo
* Export
* Print
* Quit
* I'd like to insert more hotkeys to make logisim-evolution more fun.
* Such as press *SPACE* to rotate the component to be placed on.
immediately.
* Also, after modified more classes, which can be clearly
viewed in the FILE CHANGED, I added 26 other hotkey bindings, supporting changing the hotkeys
for component rotation/direction, auto-labeler and gate-modifier.
* With more options added, I use JScrollPane to get them all in.
* And there are some important key bindings that have clear meanings
and are accepted by nearly each person, I set them as uneditable.
* However uneditable, people can treat this tab as a
key-binding reference.
* In addition, I'd like to insert more hotkeys to make logisim-evolution more fun.
* Such as press *SPACE* to flip a splitter or transistor,
getting their image along the Y axis.
* @dev (????-??-??)
* Added support for scanning 7-segment display on FPGA-boards

View File

@ -29,6 +29,8 @@ The following people and institutions actively contributed to further developmen
* [Haute École Spécialisée Bernoise](http://www.bfh.ch/), Switzerland
* [Haute École du paysage, d'ingénierie et d'architecture de Genève](http://hepia.hesge.ch/), Switzerland
* [Haute École d'Ingénierie et de Gestion du Canton de Vaud](http://www.heig-vd.ch/), Switzerland
* [Zhao Hanyuan](https://github.com/gtxzsxxk),
[Tsinghua University](https://www.tsinghua.edu.cn/), P.R.C
If you feel that your name should be in this list, please feel free
to [open a ticket](https://github.com/logisim-evolution/logisim-evolution/issues).

View File

@ -167,7 +167,7 @@ class HotkeyOptions extends OptionsPanel {
@Override
public Dimension getPreferredSize(){
int w=p.getWidth();
return new Dimension(800,400);
return new Dimension(800,500);
}
};