only check for new profiles once, update version

This commit is contained in:
Believethehype
2024-05-06 12:16:41 +02:00
parent 2b9c71c29f
commit 22a2925595
4 changed files with 10 additions and 17 deletions

View File

@@ -1,9 +1,8 @@
from setuptools import setup, find_packages
VERSION = '0.3.4'
VERSION = '0.3.5'
DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines'
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. '
'This is an early stage release. Interfaces might change/brick')
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. See the github repository for more information')
# Setting up
setup(

View File

@@ -1,14 +1,4 @@
# vue
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
# Nostr DVM web app
## Project Setup
@@ -26,4 +16,5 @@ npm run dev
```sh
npm run build
npm run preview
```

View File

@@ -19,7 +19,7 @@
"bootstrap": "^5.3.2",
"daisyui": "^4.6.0",
"mini-toastr": "^0.8.1",
"nostr-login": "^1.3.1",
"nostr-login": "^1.3.4",
"nostr-tools": "^2.4.0",
"vue": "^3.4.15",
"vue-notifications": "^1.0.2",

View File

@@ -379,7 +379,10 @@ export default {
localStorage.setItem('nostr-key', pubkey.toHex())
console.log("Client Nip46 connected")
await this.get_user_info(pubkey)
this.reconcile_all_profiles(pubkey)
if (launch){
this.reconcile_all_profiles(pubkey)
}
console.log(pubkey.toBech32())
//await this.reconcile_all_profiles()
@@ -943,7 +946,7 @@ export default {
if(mutes.length > 0){
for (let list of mutes){
console.log(list.id.toHex())
try {
for (let tag of list.tags) {
if (tag.asVec()[0] === "p") {