diff --git a/code/modules/modular_computers/file_system/programs/generic/manifest.dm b/code/modules/modular_computers/file_system/programs/generic/manifest.dm index c491aa5b6bf..02fded622dd 100644 --- a/code/modules/modular_computers/file_system/programs/generic/manifest.dm +++ b/code/modules/modular_computers/file_system/programs/generic/manifest.dm @@ -11,27 +11,12 @@ requires_ntnet = TRUE available_on_ntnet = TRUE +/datum/computer_file/program/manifest/ui_data(mob/user) + var/list/data = initial_data() + return data + /datum/computer_file/program/manifest/ui_static_data(mob/user) var/list/data = list() data["manifest"] = SSrecords.get_manifest_list() data["allow_follow"] = isobserver(usr) return data - -// /datum/computer_file/program/manifest/Topic(href, href_list) -// . = ..() - -// if(href_list["action"] == "print" && can_run(usr, 1) && !isnull(computer?.nano_printer)) -// if(!computer.nano_printer.print_text(SSrecords.get_manifest_text(), text("crew manifest ([])", worldtime2text()))) -// to_chat(usr, SPAN_WARNING("Hardware error: Printer was unable to print the file. It might be out of paper.")) -// return -// else -// computer.visible_message(SPAN_NOTICE("\The [computer] prints out a paper.")) - -// if(!istype(computer, /obj/item/modular_computer/silicon)) -// return -// var/obj/item/modular_computer/silicon/true_computer = computer -// if(!istype(true_computer.computer_host, /mob/living/silicon/pai)) -// return -// var/mob/living/silicon/pai/host = true_computer.computer_host - -// host.radio.Topic(href, href_list) diff --git a/html/changelogs/mattatlas-manifix.yml b/html/changelogs/mattatlas-manifix.yml new file mode 100644 index 00000000000..f0cf557e807 --- /dev/null +++ b/html/changelogs/mattatlas-manifix.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: MattAtlas + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes the manifest on the PDA not having a header, and also being too small." diff --git a/tgui/packages/tgui/interfaces/NTOSManifest.tsx b/tgui/packages/tgui/interfaces/NTOSManifest.tsx index aaed12382e1..c2319364baa 100644 --- a/tgui/packages/tgui/interfaces/NTOSManifest.tsx +++ b/tgui/packages/tgui/interfaces/NTOSManifest.tsx @@ -3,7 +3,7 @@ import { Manifest } from './common/Manifest'; export const NTOSManifest = () => { return ( - +