2 Commits
0.7.0 ... 0.7.1

Author SHA1 Message Date
8d9431874f Release 0.7.1 2026-04-12 16:58:23 +02:00
3c621c01ce Collection: fixed adding book 2026-04-12 16:57:41 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "bibliomane",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"type": "module",
"engines": {

View File

@@ -130,7 +130,7 @@ export function postCollection(collection) {
return genericPayloadCall('/ws/collection', collection, 'POST')
}
export function postCollectionAddBook(collectionId, position) {
export function postCollectionAddBook(collectionId, bookId) {
return genericPayloadCall(
'/ws/collection/' + collectionId + '/addbook',
{ bookId: bookId },

View File

@@ -6,7 +6,7 @@ import (
)
func main() {
applicationVersion := "0.7.0"
applicationVersion := "0.7.1"
c := config.LoadConfig(applicationVersion)
r := setup.Setup(&c)
r.Run(":" + c.Port)