Skip to content

Commit

Permalink
only check for new profiles once, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
believethehype committed May 6, 2024
1 parent 2b9c71c commit 22a2925
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 17 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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(
Expand Down
13 changes: 2 additions & 11 deletions ui/noogle/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -26,4 +16,5 @@ npm run dev

```sh
npm run build
npm run preview
```
2 changes: 1 addition & 1 deletion ui/noogle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 5 additions & 2 deletions ui/noogle/src/components/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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") {
Expand Down

0 comments on commit 22a2925

Please sign in to comment.