2021-05-19 20:57:59 +03:00
|
|
|
add_subdirectory(3DFileViewer)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(About)
|
2021-05-09 16:51:36 +03:00
|
|
|
add_subdirectory(AnalogClock)
|
2021-06-17 04:54:58 +03:00
|
|
|
add_subdirectory(Assistant)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(Browser)
|
2021-11-24 19:47:39 +03:00
|
|
|
add_subdirectory(BrowserSettings)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(Calculator)
|
|
|
|
add_subdirectory(Calendar)
|
2022-07-16 02:33:39 +03:00
|
|
|
add_subdirectory(CalendarSettings)
|
2023-03-27 21:04:24 +03:00
|
|
|
add_subdirectory(CertificateSettings)
|
2022-01-10 18:59:42 +03:00
|
|
|
add_subdirectory(CharacterMap)
|
2022-01-20 16:23:55 +03:00
|
|
|
add_subdirectory(ClockSettings)
|
2020-12-29 14:42:36 +03:00
|
|
|
add_subdirectory(CrashReporter)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(Debugger)
|
|
|
|
add_subdirectory(DisplaySettings)
|
2022-10-01 07:40:28 +03:00
|
|
|
add_subdirectory(Escalator)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(FileManager)
|
|
|
|
add_subdirectory(FontEditor)
|
2022-08-20 16:14:48 +03:00
|
|
|
add_subdirectory(GamesSettings)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(Help)
|
|
|
|
add_subdirectory(HexEditor)
|
2021-05-14 19:34:44 +03:00
|
|
|
add_subdirectory(ImageViewer)
|
2020-06-02 20:59:30 +03:00
|
|
|
add_subdirectory(KeyboardMapper)
|
2020-06-07 19:38:45 +03:00
|
|
|
add_subdirectory(KeyboardSettings)
|
2021-05-10 00:15:35 +03:00
|
|
|
add_subdirectory(Magnifier)
|
2021-07-22 20:44:59 +03:00
|
|
|
add_subdirectory(Mail)
|
2021-07-30 04:03:55 +03:00
|
|
|
add_subdirectory(MailSettings)
|
2020-12-30 00:38:13 +03:00
|
|
|
add_subdirectory(MouseSettings)
|
2022-03-25 21:31:47 +03:00
|
|
|
add_subdirectory(NetworkSettings)
|
PartitionEditor: Add the beginnings of a partition editor :^)
This adds a new application PartitionEditor which will eventually be
used to create and edit partition tables. Since LibPartition does not
know how to write partition tables yet, it is currently read-only.
Devices are discovered by scanning /dev for block device files.
Since block devices are chmod 600, PartitionEditor be must run as root.
By default Serenity uses the entire disk for the ext2 filesystem
without a partition table. This isn't useful for testing as the
partition list for the default disk will be empty. To test properly,
I created a few disk images using various partitioning schemes
(MBR, EBR, and GPT) and attached them using the following command:
export SERENITY_EXTRA_QEMU_ARGS="
-drive file=/path/to/mbr.img,format=raw,index=1,media=disk
-drive file=/path/to/ebr.img,format=raw,index=2,media=disk
-drive file=/path/to/gpt.img,format=raw,index=3,media=disk"
2022-06-28 05:48:30 +03:00
|
|
|
add_subdirectory(PartitionEditor)
|
2021-05-10 21:50:15 +03:00
|
|
|
add_subdirectory(PDFViewer)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(Piano)
|
2020-05-21 19:58:00 +03:00
|
|
|
add_subdirectory(PixelPaint)
|
2022-10-20 23:30:39 +03:00
|
|
|
add_subdirectory(Presenter)
|
2021-01-13 15:10:00 +03:00
|
|
|
add_subdirectory(Run)
|
2021-07-25 22:52:39 +03:00
|
|
|
add_subdirectory(Settings)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(SoundPlayer)
|
2021-01-06 21:40:49 +03:00
|
|
|
add_subdirectory(SpaceAnalyzer)
|
2020-08-23 06:55:16 +03:00
|
|
|
add_subdirectory(Spreadsheet)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(SystemMonitor)
|
|
|
|
add_subdirectory(Terminal)
|
2021-11-21 03:01:21 +03:00
|
|
|
add_subdirectory(TerminalSettings)
|
2020-05-06 18:40:06 +03:00
|
|
|
add_subdirectory(TextEditor)
|
2021-06-17 04:54:58 +03:00
|
|
|
add_subdirectory(ThemeEditor)
|
2021-06-05 23:42:25 +03:00
|
|
|
add_subdirectory(VideoPlayer)
|
2021-04-15 18:00:22 +03:00
|
|
|
add_subdirectory(Welcome)
|