mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-06-25 06:41:04 +02:00
bump version
This commit is contained in:
parent
97b8789c19
commit
ea7655e9ce
2
setup.py
2
setup.py
@ -1,6 +1,6 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
VERSION = '0.2.4'
|
VERSION = '0.2.5'
|
||||||
DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines'
|
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. '
|
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. '
|
||||||
'This is an early stage release. Interfaces might change/brick')
|
'This is an early stage release. Interfaces might change/brick')
|
||||||
|
@ -14,13 +14,16 @@ const store = createStore({
|
|||||||
requestidSearchProfile: String,
|
requestidSearchProfile: String,
|
||||||
requestidImage: String,
|
requestidImage: String,
|
||||||
requestidRecommendation: String,
|
requestidRecommendation: String,
|
||||||
|
requestidSummarization: String,
|
||||||
hasEventListener: false,
|
hasEventListener: false,
|
||||||
imagehasEventListener: false,
|
imagehasEventListener: false,
|
||||||
recommendationehasEventListener: false,
|
recommendationehasEventListener: false,
|
||||||
|
summarizationhasEventListener: false,
|
||||||
imagedvmreplies: [],
|
imagedvmreplies: [],
|
||||||
nip89dvms: [],
|
nip89dvms: [],
|
||||||
activesearchdvms: [],
|
activesearchdvms: [],
|
||||||
recommendationhdvms: [],
|
recommendationhdvms: [],
|
||||||
|
summarizationdvms: [],
|
||||||
results: [],
|
results: [],
|
||||||
profile_results: [],
|
profile_results: [],
|
||||||
relays: [
|
relays: [
|
||||||
@ -60,6 +63,10 @@ const store = createStore({
|
|||||||
state.recommendationehasEventListener = recommendationehasEventListener
|
state.recommendationehasEventListener = recommendationehasEventListener
|
||||||
},
|
},
|
||||||
|
|
||||||
|
set_summariarizationEventListener(state, summarizationhasEventListener) {
|
||||||
|
state.summarizationhasEventListener = summarizationhasEventListener
|
||||||
|
},
|
||||||
|
|
||||||
set_nip89dvms(state, nip89dvms) {
|
set_nip89dvms(state, nip89dvms) {
|
||||||
state.nip89dvms.length = 0
|
state.nip89dvms.length = 0
|
||||||
//console.log(nip89dvms)
|
//console.log(nip89dvms)
|
||||||
@ -72,6 +79,11 @@ const store = createStore({
|
|||||||
set_current_request_id_search(state, requestid){
|
set_current_request_id_search(state, requestid){
|
||||||
state.requestidSearch = String(requestid)
|
state.requestidSearch = String(requestid)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
set_current_request_id_summarization(state, requestid){
|
||||||
|
state.requestidSummarization = String(requestid)
|
||||||
|
},
|
||||||
|
|
||||||
set_current_request_profile_id_search(state, requestid){
|
set_current_request_profile_id_search(state, requestid){
|
||||||
state.requestidSearchProfile = String(requestid)
|
state.requestidSearchProfile = String(requestid)
|
||||||
},
|
},
|
||||||
@ -83,6 +95,11 @@ const store = createStore({
|
|||||||
state.recommendationhdvms.length = 0
|
state.recommendationhdvms.length = 0
|
||||||
state.recommendationhdvms.push.apply(state.recommendationhdvms, dvms)
|
state.recommendationhdvms.push.apply(state.recommendationhdvms, dvms)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
set_summarization_dvms(state, dvms) {
|
||||||
|
state.summarizationdvms.length = 0
|
||||||
|
state.summarizationdvms.push.apply(state.summarizationdvms, dvms)
|
||||||
|
},
|
||||||
set_search_results_profiles(state, items){
|
set_search_results_profiles(state, items){
|
||||||
state.profile_results.length = 0
|
state.profile_results.length = 0
|
||||||
state.profile_results.push.apply(state.profile_results, items)
|
state.profile_results.push.apply(state.profile_results, items)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user