-
Notifications
You must be signed in to change notification settings - Fork 548
516 compatibility PR 2: the revenge of Node.js #37501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
d3athrow
merged 55 commits into
vgstation-coders:Bleeding-Edge
from
ShiftyRail:516_but_it_will_work_this_time
May 6, 2025
Merged
Changes from 53 commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
d06e227
Part 1: fix tgui
ShiftyRail dcf3f74
Fix overdark layering
ShiftyRail dbbe7ac
Vector code rework
ShiftyRail 909c739
misc. tgui things
ShiftyRail 5b07bcd
final DM side fixes
ShiftyRail 7f2166e
TGUI try to fix #1
ShiftyRail 5738c90
Nuclear option. Bring all TGUI files. Will begin UNTGification in lat…
ShiftyRail 876b33c
Untgify: callback
ShiftyRail 6de8e35
untgify : config flags & config datums
ShiftyRail ba693e7
Fixes GLOBAL_VAR_INIT
ShiftyRail b19c4f3
Purge HASTRAIT
ShiftyRail 08ad4bd
.dme cleanup
ShiftyRail f2c6b39
file by file: status_alert.dm
ShiftyRail 2c78dc5
file by file : preference datums + remove unused content
ShiftyRail fadc21e
file by file : tgui_input/text.dm
ShiftyRail 8bbca54
file by file : fixes asset_cache_client.dm
ShiftyRail 8ee5a00
file by file : tgui_panel / external.dm
ShiftyRail 9ecd309
file by file : tgui / external.dm
ShiftyRail 0947c37
file by file : tgui / states.dm
ShiftyRail c476030
file by file : subsystems/assets.dm [unused return type]
ShiftyRail e2e941d
file by file : subsystems/tgui.dm [tg-macro for process()]
ShiftyRail 92910e5
file by file : asset_cache_item.dm [minor proc call fix]
ShiftyRail 1c4f268
file by file : fixes a mistype for datum/asset_cache_item
ShiftyRail 965b408
file by file : removes bugs and unimplemented features in asset_list.dm
ShiftyRail 0d19474
multifile : some more work on asset manager
ShiftyRail 94c2aea
File deleted : spirtesheet tg_assets. Don't need them
ShiftyRail 12c8829
Remove unused TG content, fix asset_list.dm
ShiftyRail ebb8f44
Fixes a few issues with wrong type paths.
ShiftyRail 9ad59bb
remove tgui_panel : this is for tgchat/stat2, which we don't use
ShiftyRail a2e028c
fix thing
ShiftyRail 2e0f9c5
misc changes to tgui.dm. Defining QDELETED macro
ShiftyRail f7d7de1
final TGui fix
ShiftyRail fa48740
TGUI file convert : camera console and religion screen
ShiftyRail e93844e
Works
ShiftyRail 6e6af71
GPS fixed + fontAwesome fixed
ShiftyRail 7624083
Mecha console control
ShiftyRail af5c770
Fixes blurry icons
ShiftyRail 7624c65
fixes iconbase64 regression
ShiftyRail ff4dea9
Misc bug/runtimes fixes
ShiftyRail 71bfb0a
Fixes runtime funtime
ShiftyRail ed493c6
Add merch computer TGUI
ShiftyRail 6470217
Fixes TGUI ticking interfaces + MSGS
ShiftyRail b2438c6
PCMC
ShiftyRail f6085f7
Power Monitor working
ShiftyRail 961d6b8
Power monitor
ShiftyRail 151bfcf
Bugfixes + robot console
ShiftyRail df22bcd
Fixes mecha messages
ShiftyRail 1ac290e
Spess dot TV
ShiftyRail 1d247c8
TEG
ShiftyRail b8e0beb
Syndicate Uplink
ShiftyRail 62cf911
Bump defines and connection warning
ShiftyRail 7771134
fix?
ShiftyRail 7a485fb
Fucking highscores
ShiftyRail eb0ac94
Fixes mistakes
ShiftyRail 4c90072
Merge branch 'Bleeding-Edge' into 516_but_it_will_work_this_time
west3436 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//Returns true if the cooldown has run its course, false otherwise | ||
#define COOLDOWN_FINISHED(cd_source, cd_index) (cd_source.cd_index <= world.time) | ||
|
||
#define COOLDOWN_TIMELEFT(cd_source, cd_index) (max(0, cd_source.cd_index - world.time)) | ||
|
||
#define COOLDOWN_START(cd_source, cd_index, cd_time) (cd_source.cd_index = world.time + (cd_time)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ | |
#define QDEL_LIST_ASSOC_NULL(L) QDEL_LIST_ASSOC(L); L = null | ||
#define QDEL_LIST_CUT(L) QDEL_LIST(L); L.Cut() | ||
#define QDEL_LIST_ASSOC_CUT(L) QDEL_LIST_ASSOC(L); L.Cut() | ||
|
||
// QDEL macros borrowed from TG | ||
#define QDELETED(X) (!X || !X || X.gcDestroyed) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
/datum | ||
var/list/datum_components | ||
var/list/active_timers | ||
var/list/open_uis | ||
|
||
/datum/proc/initialize() | ||
return TRUE | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To fix before merge