mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 18:11:47 +00:00
* Initial tgui-next commit * Improve dev server, slight changes to layout. * Add more components, fix dragging, finalize scrubber list * Complete an air alarm interface. * Multiple improvements based on feedback - LabeledList now has a "buttons" prop, where you can put buttons. - Improved Box and Flex components - Whole UI is now dimmable if non-interactive - Basic documentation of components (Box and Flex so far). - Icon and Box now accept a "color" prop. - Routing improved in "Layout" component, you can now specify whether an interface is scrollable. * Less harsh dimming * Redux, Toasts - Fixed inconsistent backend updates with Redux. - Added Toasts which are currently unused, but are functional. * acclimator + ai airlock ui * Add a progress bar component, implement resizing * Fix a zero in title bar * Add a linter to keep shit tidy, fix danger level mapping, add some more docs * better ai door interact ui * final ai airlock interface * Fix issues with code, enforce hard 120 line length cap, automerge binaries * Implement hot module reloading * Fix progress bar, add color support * Fix ProgressBar baseline alignment issues * Remove unwanted padding on the bottom of the LabeledList. * Component improvements - Fix baseline issues with Button and ProgressBar components - Box how inherits props from Box - Atomic colors and Button colors are now auto-generated, all range of colors supported * Chem Dispenser UI, animated numbers, more style fixes * Add an IE8 polyfill * Intermediate state of fixing IE8 * Lots of shimming and general misery * Fully working old TGUI chainloader for IE8, more pipeline improvements * Support title-less Sections * Delete Yarn, use Lerna for workspace management * Improve maths and animated numbers * Fix loss of focus for scrollable content, activate buttons with keyboard * Attempt to bust the cache, grab focus on keyboard presses too * Fix hot module replacement by manually pulling replaced modules. * backend logging un-nuke line endings changes without insane line endings * helper procs + href support * slight optimization * compiles * Redux, Hotkeys, Kitchen Sink (for UI testing), Tabs component * Push logs to backend, small kitchen sink changes, tab fixes * Update component reference in README * Small fixes * Next bunch of IE8 fixes, PureComponent optimization for Inferno * Delete old tgui html * Log the event of loading the old tgui * Enable tgui logging on server by default * Final solution * Extract routes into a separate file, fix ChemDispenser bug - Chem dispenser was needlessly disabling transfer amount buttons * Disable baseline alignment for vertical tabs * Fix tabs and box units - Tab content was not taking full page width - Box can now accepts strings as units, which will be treated as raw style values. * Fix tgui on Terry * Fix sending all logs with an "error" flag * Some macro UI component changes and improvements - Refer to README.md diff to see what's new * Tooltip component * Add support for themes, nanotrasen logo is back * Clockwork theme hotfix * Slight adjustment to logo positioning * Actually proper solution for logo positioning * Fix color maps * tgui-next thermomachine interface * tgui-next canister interface * Add icon_class_name proc to asset cache * Lots of stuff backported from actioninja's repo * Cleanup oopsies * Cargo UI adjustments * Nuke lodash * Minor fixes and cleanup - Remove local Inferno package in favor of upstream Inferno - Fix "initial" prop on AnimatedNumber - Force fancy=0 for IE8 - Click-through dimmer * Add a bat file for dummies * podlauncher interface fix * Update README, assert code dominance * Clarify usage of event handlers in Inferno * Document LabeledList.Divider * Fukken grammar * fixes cellular emporium readapt button not working * fixes incorrect action on button in atmos control interface * remove unneeded data from airlock electronics ui * Set +x mode on bin/tgui * Fix filename cases - They were untracked by git on windows * Ignore package lock, make batch more robust - package-lock.json is very random and unreliable as fuck. Yarn was better. * Build tgui-next in travis * bruh - fixes tgui error reporting * logging cleanup + always log
73 lines
2.2 KiB
Plaintext
73 lines
2.2 KiB
Plaintext
GLOBAL_VAR(log_directory)
|
|
GLOBAL_PROTECT(log_directory)
|
|
GLOBAL_VAR(world_game_log)
|
|
GLOBAL_PROTECT(world_game_log)
|
|
GLOBAL_VAR(world_runtime_log)
|
|
GLOBAL_PROTECT(world_runtime_log)
|
|
GLOBAL_VAR(world_qdel_log)
|
|
GLOBAL_PROTECT(world_qdel_log)
|
|
GLOBAL_VAR(world_attack_log)
|
|
GLOBAL_PROTECT(world_attack_log)
|
|
GLOBAL_VAR(world_href_log)
|
|
GLOBAL_PROTECT(world_href_log)
|
|
GLOBAL_VAR(round_id)
|
|
GLOBAL_PROTECT(round_id)
|
|
GLOBAL_VAR(config_error_log)
|
|
GLOBAL_PROTECT(config_error_log)
|
|
GLOBAL_VAR(sql_error_log)
|
|
GLOBAL_PROTECT(sql_error_log)
|
|
GLOBAL_VAR(world_pda_log)
|
|
GLOBAL_PROTECT(world_pda_log)
|
|
GLOBAL_VAR(world_telecomms_log)
|
|
GLOBAL_PROTECT(world_telecomms_log)
|
|
GLOBAL_VAR(world_manifest_log)
|
|
GLOBAL_PROTECT(world_manifest_log)
|
|
GLOBAL_VAR(query_debug_log)
|
|
GLOBAL_PROTECT(query_debug_log)
|
|
GLOBAL_VAR(world_job_debug_log)
|
|
GLOBAL_PROTECT(world_job_debug_log)
|
|
GLOBAL_VAR(world_mecha_log)
|
|
GLOBAL_PROTECT(world_mecha_log)
|
|
GLOBAL_VAR(world_virus_log)
|
|
GLOBAL_PROTECT(world_virus_log)
|
|
GLOBAL_VAR(world_asset_log)
|
|
GLOBAL_PROTECT(world_asset_log)
|
|
GLOBAL_VAR(world_cloning_log)
|
|
GLOBAL_PROTECT(world_cloning_log)
|
|
GLOBAL_VAR(world_map_error_log)
|
|
GLOBAL_PROTECT(world_map_error_log)
|
|
GLOBAL_VAR(world_paper_log)
|
|
GLOBAL_PROTECT(world_paper_log)
|
|
GLOBAL_VAR(tgui_log)
|
|
GLOBAL_PROTECT(tgui_log)
|
|
|
|
GLOBAL_LIST_EMPTY(bombers)
|
|
GLOBAL_PROTECT(bombers)
|
|
GLOBAL_LIST_EMPTY(admin_log)
|
|
GLOBAL_PROTECT(admin_log)
|
|
GLOBAL_LIST_EMPTY(lastsignalers) //keeps last 100 signals here in format: "[src] used [REF(src)] @ location [src.loc]: [freq]/[code]"
|
|
GLOBAL_PROTECT(lastsignalers)
|
|
GLOBAL_LIST_EMPTY(lawchanges) //Stores who uploaded laws to which silicon-based lifeform, and what the law was
|
|
GLOBAL_PROTECT(lawchanges)
|
|
|
|
GLOBAL_LIST_EMPTY(combatlog)
|
|
GLOBAL_PROTECT(combatlog)
|
|
GLOBAL_LIST_EMPTY(IClog)
|
|
GLOBAL_PROTECT(IClog)
|
|
GLOBAL_LIST_EMPTY(OOClog)
|
|
GLOBAL_PROTECT(OOClog)
|
|
GLOBAL_LIST_EMPTY(adminlog)
|
|
GLOBAL_PROTECT(adminlog)
|
|
|
|
GLOBAL_LIST_EMPTY(active_turfs_startlist)
|
|
|
|
/////Picture logging
|
|
GLOBAL_VAR(picture_log_directory)
|
|
GLOBAL_PROTECT(picture_log_directory)
|
|
|
|
GLOBAL_VAR_INIT(picture_logging_id, 1)
|
|
GLOBAL_PROTECT(picture_logging_id)
|
|
GLOBAL_VAR(picture_logging_prefix)
|
|
GLOBAL_PROTECT(picture_logging_prefix)
|
|
/////
|