aboutsummaryrefslogtreecommitdiffstats
path: root/Drop Serve/en.lproj/MainMenu.xib
AgeCommit message (Collapse)Author
2020-10-11MainMenu.xib: Don't resize the window when path is longTeddy Wing
Previously, when the file path of the folder being served was long, it would resize the window to fit the path. Prevent resizing, and truncate the path label so that it truncates the beginning of the path and keeps the end. Thanks to Stephan (https://stackoverflow.com/users/565336/stephan) on Stack Overflow for the tip about setting > Content Compression Resistance Priority of the NSTextView less than > NSLayoutPriorityWindowSizeStayPut (e.g. 499). Otherwise your > NSTextView will not truncate its content. (https://stackoverflow.com/questions/4171465/truncate-nstextview/13977990#13977990)
2020-10-10MainMenu.xib: Make folder path label small and boldTeddy Wing
Allow more space for the path.
2020-10-10MainMenu.xib: Remove unused menusTeddy Wing
2020-10-10MainMenu.xib: Make URL label selectableTeddy Wing
2020-10-10Add a label to the window to show server statusTeddy Wing
Indicate that the server is running. Show what path it's serving from , what URL it's serving on, and a button to stop the server.
2020-10-10DropZone: Only accept a single dragged file/folderTeddy Wing
Show an error message in a label in the drop zone if more than one is dropped.
2020-10-10Add drag and drop areaTeddy Wing
Allow dragging and dropping files. Based on: - https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/DragandDrop/Tasks/acceptingdrags.html#//apple_ref/doc/uid/20000993-BABHHIHC - https://developer.apple.com/library/archive/samplecode/CocoaDragAndDrop/Introduction/Intro.html#//apple_ref/doc/uid/DTS10000384-Intro-DontLinkElementID_2
2020-10-10MainMenu.xib: Prevent resizing on main windowTeddy Wing
2020-10-10MainMenu.xib: Add a drop zone to the main windowTeddy Wing
2020-10-10New Xcode 4.5.2 projectTeddy Wing