Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
d1d72c4
Add gui elements
realSquidCoder Mar 14, 2025
87b5e4a
create info panel
realSquidCoder Mar 14, 2025
4c4b8f9
merge commit
realSquidCoder Mar 14, 2025
ef6e66a
finish info panel rewrite
realSquidCoder Mar 15, 2025
71e399c
Remove unneeded code
realSquidCoder Mar 15, 2025
fac4a72
update configs
realSquidCoder Mar 15, 2025
aaf5828
didnt mean to put that here
realSquidCoder Mar 15, 2025
b988bdf
Fix on linux
realSquidCoder Mar 15, 2025
b6b0530
fix the default tab state
realSquidCoder Mar 15, 2025
665a9a2
fix the info panel outline not being lined up
realSquidCoder Mar 15, 2025
bbf4ce1
Greatly rework the guipanel and make it all function
realSquidCoder Mar 25, 2025
d0cffc2
remove debug code and unused vars
realSquidCoder Mar 25, 2025
03e9ef4
Clean up
realSquidCoder Mar 25, 2025
f3896c5
Fix signed issues
realSquidCoder Mar 25, 2025
aadcaa9
Contain the announcements in the box
realSquidCoder Mar 26, 2025
763552b
missed a few casts
realSquidCoder Mar 26, 2025
c9973fc
remove mouse rclick to move and add scroll handling
realSquidCoder Mar 26, 2025
ad27333
Add new settings
realSquidCoder Mar 26, 2025
654ace5
Merge remote-tracking branch 'upstream/master' into squid-guipanel
realSquidCoder Mar 26, 2025
128fd6b
Fix the bright bool
realSquidCoder Mar 26, 2025
52a4fba
fix the cast
realSquidCoder Mar 26, 2025
4841ad6
Apply some changes from code review
realSquidCoder Mar 26, 2025
936609e
apply more code review stuff
realSquidCoder Mar 26, 2025
52cf67b
Code review
realSquidCoder Mar 26, 2025
58fbf1f
code review
realSquidCoder Mar 26, 2025
edc76eb
fix missing cast
realSquidCoder Mar 27, 2025
f100c9d
Update to use safer bitmap load and filepath
realSquidCoder Mar 27, 2025
d9a57fb
Fix the filesystem usage and put back the removed code (bug)
realSquidCoder Mar 27, 2025
1fb07d4
fix silly bug
realSquidCoder Mar 27, 2025
c795d65
fix it better
realSquidCoder Mar 27, 2025
b65ecc8
make it work again
realSquidCoder Mar 27, 2025
c444dc0
Fix up the force track mode
realSquidCoder Mar 27, 2025
096df53
apply code review things
realSquidCoder Mar 27, 2025
31d6b5d
Use the real curses (later switch to call the real data path)
realSquidCoder Mar 28, 2025
1261cd2
Fix the tabs not sitting flush with the edge
realSquidCoder Mar 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class Config {
int animation_step = 196;
bool verbose_logging = false;
trackingmode track_mode = TRACKING_CENTER;
bool force_track = true;
bool track_zoom = true;
bool invert_mouse_z = false;
bool follow_DFcursor = true;
bool show_creature_names = false;
Expand All @@ -46,6 +48,7 @@ class Config {
bool names_use_nick = true;
bool names_use_species = true;
bool show_osd = false;
bool show_info_panel = false;
bool cache_images = false;
bool show_stockpiles = true;
bool show_zones = true;
Expand Down
Loading