Update docs for version 1.1

This commit is contained in:
No Time To Play 2024-02-05 08:57:14 +00:00
parent 0efe3cc72a
commit 52923fc34f
2 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,12 @@
# ToyEd Native news
## [1.1] - 2024-02-05
### Added
* New status line field
* Ability to choose appearance from the user interface
## [1.0.1] - 2024-01-23
### Added

View File

@ -4,7 +4,7 @@
ToyEd is a toy text editor made for fun and learning. It's not meant for serious use, but rather to be studied and built upon.
ToyEd is written in 550 lines of C++ (see below), but has many expected features:
ToyEd is written in 570 lines of C++ (see below), but has many expected features:
- GUI controls
- keyboard operation
@ -14,17 +14,17 @@ ToyEd is written in 550 lines of C++ (see below), but has many expected features
ToyEd Native is open source under the Boost license. See the included file.
As of 22 January 2024, the code seems to work right, but hasn't been tested much. Please back up your data.
As of February 2024, the code seems to work right, but hasn't been tested much. Please back up your data.
The user interface should be fairly obvious.
## System requirements
Building ToyEd Native from source requires a C++11 compiler and the FLTK library, version 1.3 (or 1.4, reportedly). A makefile is included, but it does little more than
Building ToyEd Native from source requires a C++11 compiler and the FLTK library, version 1.3 (or 1.4, reportedly). So far it's been tried with success on Linux and Haiku. A makefile is included, but it does little more than
g++ -o toyed -lfltk main.cpp
Minimum screen resolution: 800x600. Recommended: 1024x768.
Minimum screen resolution: 800x480. Recommended: 1024x768.
## FAQ