Font size tweaks

This commit is contained in:
Black Coffee 2022-09-29 19:27:54 +01:00
parent 5cddae5ba9
commit 6f21c0c34b

View file

@ -217,7 +217,7 @@ async def get_lnbits_wallet_balances(gerty):
"inkey": wallet.inkey, "inkey": wallet.inkey,
}) })
text.append(get_text_item_dict(wallet.name, 20)) text.append(get_text_item_dict(wallet.name, 20))
text.append(get_text_item_dict(wallet.balance, 60)) text.append(get_text_item_dict(wallet.balance, 40))
return text return text
@ -236,7 +236,7 @@ async def get_satoshi_quotes():
if quote['text']: if quote['text']:
text.append(get_text_item_dict(quote['text'], 16)) text.append(get_text_item_dict(quote['text'], 16))
if quote['date']: if quote['date']:
text.append(get_text_item_dict(quote['date'], 12)) text.append(get_text_item_dict(quote['date'], 15))
return text return text
@ -245,7 +245,7 @@ async def get_pieter_wuille_fact():
quote = await api_gerty_wuille() quote = await api_gerty_wuille()
if quote: if quote:
text.append(get_text_item_dict(quote, 16)) text.append(get_text_item_dict(quote, 16))
text.append(get_text_item_dict("Pieter Wuille facts", 12)) text.append(get_text_item_dict("Pieter Wuille facts", 15))
return text return text
@ -257,8 +257,8 @@ async def get_exchange_rate(gerty):
amount = await satoshis_amount_as_fiat(100000000, gerty.exchange) amount = await satoshis_amount_as_fiat(100000000, gerty.exchange)
if amount: if amount:
price = ('{0} {1}').format(format_number(amount), gerty.exchange) price = ('{0} {1}').format(format_number(amount), gerty.exchange)
text.append(get_text_item_dict("Current BTC price", 12)) text.append(get_text_item_dict("Current BTC price", 15))
text.append(get_text_item_dict(price, 60)) text.append(get_text_item_dict(price, 40))
except: except:
pass pass
return text return text
@ -292,16 +292,16 @@ async def get_onchain_stat(stat_slug: str, gerty):
if stat_slug == "onchain_difficulty_epoch_progress": if stat_slug == "onchain_difficulty_epoch_progress":
stat = round(r.json()['progressPercent']) stat = round(r.json()['progressPercent'])
text.append(get_text_item_dict("Progress through current difficulty epoch", 16)) text.append(get_text_item_dict("Progress through current difficulty epoch", 16))
text.append(get_text_item_dict("{0}%".format(stat), 60)) text.append(get_text_item_dict("{0}%".format(stat), 40))
elif stat_slug == "onchain_difficulty_retarget_date": elif stat_slug == "onchain_difficulty_retarget_date":
stat = r.json()['estimatedRetargetDate'] stat = r.json()['estimatedRetargetDate']
dt = datetime.fromtimestamp(stat / 1000).strftime("%e %b %Y at %H:%M") dt = datetime.fromtimestamp(stat / 1000).strftime("%e %b %Y at %H:%M")
text.append(get_text_item_dict("Estimated date of next difficulty adjustment", 16)) text.append(get_text_item_dict("Estimated date of next difficulty adjustment", 16))
text.append(get_text_item_dict(dt, 60)) text.append(get_text_item_dict(dt, 40))
elif stat_slug == "onchain_difficulty_blocks_remaining": elif stat_slug == "onchain_difficulty_blocks_remaining":
stat = r.json()['remainingBlocks'] stat = r.json()['remainingBlocks']
text.append(get_text_item_dict("Blocks remaining until next difficulty adjustment", 16)) text.append(get_text_item_dict("Blocks remaining until next difficulty adjustment", 16))
text.append(get_text_item_dict("{0}".format(format_number(stat)), 60)) text.append(get_text_item_dict("{0}".format(format_number(stat)), 40))
elif stat_slug == "onchain_difficulty_epoch_time_remaining": elif stat_slug == "onchain_difficulty_epoch_time_remaining":
stat = r.json()['remainingTime'] stat = r.json()['remainingTime']
text.append(get_text_item_dict("Blocks remaining until next difficulty adjustment", 16)) text.append(get_text_item_dict("Blocks remaining until next difficulty adjustment", 16))
@ -319,7 +319,7 @@ async def get_mempool_stat(stat_slug: str, gerty):
if stat_slug == "mempool_tx_count": if stat_slug == "mempool_tx_count":
stat = round(r.json()['count']) stat = round(r.json()['count'])
text.append(get_text_item_dict("Transactions in the mempool", 16)) text.append(get_text_item_dict("Transactions in the mempool", 16))
text.append(get_text_item_dict("{0}".format(format_number(stat)), 60)) text.append(get_text_item_dict("{0}".format(format_number(stat)), 40))
return text return text
def get_date_suffix(dayNumber): def get_date_suffix(dayNumber):