diff --git a/README.md b/README.md index c03f5a5..4d5e917 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,18 @@ Explore the wonders of distributed computing by adding a couple of other computers to your workspace. (Or a thousand — if you think your host can handle this.) Network cards allow these newly spawned machines to talk to each other. -And relays may prove useful to manage the wired networks. +And relays may prove useful to manage wired networks. Perhaps, instead of enlisting a computer army, you want to attach a dozen of screens to a single machine (as they do in the movies). Well, no problem — we've got that covered, too. +When a plain computer will not do, a server will. +Build your own scalable cloud infrastructure at no cost! +We'll supply you the hardware to meet the demand: racks, servers, and rack disk +drives. + ### Gorgeous graphical interface ![GUI][gui] @@ -158,12 +163,12 @@ $ sbt buildInfo ``` ## Credits -- **LeshaInc:** the original author of Ocelot Desktop. +- **LeshaInc:** the author of Ocelot Desktop and the graphics guru. - **Totoro:** the creator of [ocelot-brain][] and [ocelot.online][ocelot-online]. -- **bpm140:** produced the marvelous Ocelot Desktop landing page. -- **rason:** stirred the development at the critical moment! +- **bpm140:** produced a marvelous Ocelot Desktop landing page. +- **rason:** stirred development at the critical moment! - **NE0:** the bug extermination specialist. -- **ECS:** leaped fearlessly into the Scala jungle. +- **ECS:** introduced the exciting realm of cloud computing. - **Smok1e:** added some light and color with new components from Computronics. - **Saphire:** scaled the UI for HiDPI screens. - **fingercomp:** wrote this README. @@ -182,7 +187,7 @@ $ sbt buildInfo [download-dev]: https://cc-ru.gitlab.io/ocelot/ocelot-desktop/ocelot.jar [download-dev-mirror]: https://ocelot.fomalhaut.me/ocelot.jar [addon-showcase]: ./assets/addon-showcase.png "A workspace with colorful lamps and an OpenFM radio." -[gui]: ./assets/gui.png "A screenshot of the GUI." +[gui]: ./assets/gui.gif "A screenshot of the GUI." [window-scaling]: ./assets/window-scale.gif "Demonstrates the screen scaling." [tps-menu]: ./assets/tps.png "The simulation speed menu (right-click on the TPS)." [perf-graphs]: ./assets/perf-graphs.gif "A demo of performance graphs." diff --git a/assets/gui.gif b/assets/gui.gif new file mode 100644 index 0000000..7c99038 Binary files /dev/null and b/assets/gui.gif differ diff --git a/assets/gui.png b/assets/gui.png deleted file mode 100644 index 2882bce..0000000 Binary files a/assets/gui.png and /dev/null differ diff --git a/src/main/scala/ocelot/desktop/inventory/item/ComponentBusItem.scala b/src/main/scala/ocelot/desktop/inventory/item/ComponentBusItem.scala index 95f282d..ed3a04b 100644 --- a/src/main/scala/ocelot/desktop/inventory/item/ComponentBusItem.scala +++ b/src/main/scala/ocelot/desktop/inventory/item/ComponentBusItem.scala @@ -21,7 +21,7 @@ object ComponentBusItem { override def itemClass: Class[I] = classOf - override def name: String = s"ComponentBus (${_tier.label})" + override def name: String = s"Component Bus (${_tier.label})" override def tier: Option[Tier] = Some(_tier) diff --git a/src/main/scala/ocelot/desktop/inventory/item/DiskDriveMountableItem.scala b/src/main/scala/ocelot/desktop/inventory/item/DiskDriveMountableItem.scala index 35622e2..8d41ba1 100644 --- a/src/main/scala/ocelot/desktop/inventory/item/DiskDriveMountableItem.scala +++ b/src/main/scala/ocelot/desktop/inventory/item/DiskDriveMountableItem.scala @@ -24,7 +24,7 @@ object DiskDriveMountableItem { override def tier: Option[Tier] = None - override def name: String = "Disk drive" + override def name: String = "Disk Drive" override def icon: IconSource = IconSource.DiskDriveMountable