From 1f28e8064cd42e130e2fe5ac1dcce20d7582fcbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Jos=C3=A9=20Baz=C3=A1n?= Date: Wed, 31 Oct 2018 21:41:35 -0300 Subject: [PATCH 1/2] Fix registered repository update --- lycheepy/configuration/configuration/validators/repository.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lycheepy/configuration/configuration/validators/repository.py b/lycheepy/configuration/configuration/validators/repository.py index 8df2a66..febc32e 100644 --- a/lycheepy/configuration/configuration/validators/repository.py +++ b/lycheepy/configuration/configuration/validators/repository.py @@ -16,10 +16,11 @@ def validate_type(data, instance): if instance: if type_name and type_name != instance.type.name: raise Conflict('The repository type cannot be changed') - repository_type = instance.type.name + repository_type = instance.type else: if not type_name: raise Conflict('Please, specify the repository type') + repository_type = RepositoryType.query.filter_by(name=type_name).one_or_none() if not repository_type: From ea90edca8988131033048ba4eaf3a235b3a24f25 Mon Sep 17 00:00:00 2001 From: gabrielbazan Date: Fri, 7 Dec 2018 21:56:30 -0300 Subject: [PATCH 2/2] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 3a91c5a..61b23b8 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ It allows you to: * [Discovering Automatically Published Products](#discovering-automatically-published-products) - [Setting Up Your Development Environment](#setting-up-your-development-environment) - [The Graphic User Interface](#the-graphic-user-interface) +- [Who Uses LycheePy?](#who-uses-lycheepy) - [Ideas](#ideas) @@ -1235,6 +1236,17 @@ And now you're able to use your LycheePy instance. LycheePy also has a web client! You you can find [here](https://github.com/gabrielbazan/lycheepy.cli). +## Who Uses LycheePy? + + + + + + + +Do you use it? Add yourself! :) + + ## Ideas Feel free to contribute, or come up with some ideas!