diff --git a/native/NEWS.md b/native/NEWS.md index 8e323fb..8178739 100644 --- a/native/NEWS.md +++ b/native/NEWS.md @@ -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 diff --git a/native/README.md b/native/README.md index 0b6866b..256b934 100644 --- a/native/README.md +++ b/native/README.md @@ -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