mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-04-24 23:40:25 +02:00
changed version to 0.2.8
This commit is contained in:
parent
0b1bd5d9be
commit
1d66a25cb0
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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)
|
||||
@ -2026,7 +2026,7 @@ class Store {
|
||||
otherTags += '["location","$gUserLocation"]';
|
||||
}
|
||||
|
||||
print("otherTags = $otherTags");
|
||||
//print("otherTags = $otherTags");
|
||||
if( replyToId.isEmpty) {
|
||||
return otherTags.length >0 ? otherTags: '[]';
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
|
||||
import 'dart:io';
|
||||
import 'package:nostr_console/event_ds.dart';
|
||||
import 'package:nostr_console/utils.dart';
|
||||
|
||||
|
@ -1,9 +1,10 @@
|
||||
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
|
||||
|
||||
@ -11,9 +12,12 @@ homepage: https://github.com/vishalxl/nostr_console
|
||||
# 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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user