Skip to content

Commit

Permalink
changed version to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalxl committed Dec 23, 2022
1 parent 0b1bd5d commit 1d66a25
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/nostr_console.dart
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ Future<void> main(List<String> arguments) async {
usersFetched = usersFetched.union(contacts).union(pTags);

// get meta events of all users fetched
print("getting meta for # users : ${usersFetched.length} #contacts = ${contacts.length}");
//print("getting meta for # users : ${usersFetched.length} #contacts = ${contacts.length}");
getMultiUserEvents(gListRelayUrls1, usersFetched, 4 * limitPerSubscription, getSecondsDaysAgo(limitSelfEvents*2), {0,3});

// get events from channels of user
Expand Down
2 changes: 1 addition & 1 deletion lib/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:logging/logging.dart';

// name of executable
const String exename = "nostr_console";
const String version = "0.2.7-beta";
const String version = "0.2.8-beta";

int gDebug = 0;
int gSpecificDebug = 0;
Expand Down
4 changes: 2 additions & 2 deletions lib/tree_ds.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ class Store {
String getTagStr(String replyToId, String clientName, [bool addAllP = false, Set<String>? extraTags = null]) {
clientName = (clientName == "")? "nostr_console": clientName; // in case its empty

print("extraTags = $extraTags");
//print("extraTags = $extraTags");
String otherTags = "";

if( extraTags != null)
Expand All @@ -2026,7 +2026,7 @@ class Store {
otherTags += '["location","$gUserLocation"]';
}

print("otherTags = $otherTags");
//print("otherTags = $otherTags");
if( replyToId.isEmpty) {
return otherTags.length >0 ? otherTags: '[]';
}
Expand Down
1 change: 0 additions & 1 deletion lib/user.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

import 'dart:io';
import 'package:nostr_console/event_ds.dart';
import 'package:nostr_console/utils.dart';

Expand Down
6 changes: 5 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: nostr_console
description: A multi-platform nostr client built for terminal/console
version: 0.2.7-beta
version: 0.2.8-beta
homepage: https://github.com/vishalxl/nostr_console


0.2.7
# improved relay, fetching logic and added more default pubkeys to fetch
# incresed user id lenth to 5, and event id len to 6 in SN

# after tagging
# fixed new issue of taking longer time when file was already there
# increased channel fetches from 2 days from half a day

0.2.8

# reduced items fetched. 23/12
# reduced items more evening 23/12
# reduced more evening 23/12
# channel fetches for 3-4 days

environment:
sdk: '>=2.17.3 <3.0.0'
Expand Down

0 comments on commit 1d66a25

Please sign in to comment.