reduced text width

This commit is contained in:
Vishal 2022-09-12 04:48:36 +05:30
parent b6368e1c83
commit cd4abb6f9c
3 changed files with 3 additions and 3 deletions

View File

@ -257,7 +257,7 @@ Future<void> main(List<String> arguments) async {
initialEvents.forEach((element) { element.eventData.kind == 1? numUserPosts++: numUserPosts;});
numUserPosts -= numFilePosts;
stdout.write("...done.\n");//received $numUserPosts new posts made by the user\n");
stdout.write("...done\n");//received $numUserPosts new posts made by the user\n");
if( gDebug > 0) log.info("Received user events.");
initialEvents.forEach((e) => processKind3Event(e)); // first process the kind 3 event

View File

@ -87,7 +87,7 @@ const String gDummyAccountPubkey = "Non";
//////////////////////////////////////////////////////////////////////////////////////////////////////////////// UI and Color
const int gMinValidTextWidth = 60; // minimum text width acceptable
const int gDefaultTextWidth = 120; // default text width
const int gDefaultTextWidth = 96; // default text width
int gTextWidth = gDefaultTextWidth; // is changed by --width option
const int gSpacesPerDepth = 4; // constant
int gNumLeftMarginSpaces = 0;// this number is modified in main

View File

@ -4,7 +4,7 @@ version: 0.0.7-beta
homepage: https://github.com/vishalxl/nostr_console
# building with thread end marks
# latest build
environment:
sdk: '>=2.17.3 <3.0.0'