Abra should be able to show which apps have new versions available #130

Closed
opened 2021-09-09 12:57:48 +00:00 by decentral1se · 4 comments
Owner
> https://git.coopcloud.tech/coop-cloud/abra/issues/12
femmefaytale added the
enhancement
label 2021-09-09 13:28:06 +00:00
decentral1se added this to the Command-line tool sustainability milestone 2021-09-09 14:24:36 +00:00
decentral1se added this to the Beta release (software) project 2021-09-17 05:42:43 +00:00
Author
Owner

I was thinking that it might make sense to make --status the default on abra app ls and roll in #150, an async-aware table output for good UI/UX for slow load times. Then once we have a handle on the new versioning stuff re: #120 we could easily show a "update available" flag when checking.

I was thinking that it might make sense to make `--status` the default on `abra app ls` and roll in https://git.coopcloud.tech/coop-cloud/organising/issues/150, an async-aware table output for good UI/UX for slow load times. Then once we have a handle on the new versioning stuff re: https://git.coopcloud.tech/coop-cloud/organising/issues/120 we could easily show a "update available" flag when checking.
decentral1se self-assigned this 2021-09-20 16:46:17 +00:00
Author
Owner

I just ran the following to wipe all old versioning from the recipe repos:

#!/bin/bash
for d in */ ; do
    cd "$HOME/.abra/apps/$d" && \
    echo "$d" && \
    git fetch -a && \
    git push origin --delete $(git tag -l) && \
    git tag -d $(git tag -l)
done

We can start working with the new scheme now.

I just ran the following to wipe all old versioning from the recipe repos: ```bash #!/bin/bash for d in */ ; do cd "$HOME/.abra/apps/$d" && \ echo "$d" && \ git fetch -a && \ git push origin --delete $(git tag -l) && \ git tag -d $(git tag -l) done ``` We can start working with the new scheme now.
Author
Owner

Next steps:

  • Finish documenting provisionally how we handle versions
  • Publish two versions of Gitea (current config + upgrade)
  • Implement logic to show current deployed version + available ones in catalogue

This will be really great to finish.

Next steps: - Finish documenting provisionally how we handle versions - Publish two versions of Gitea (current config + upgrade) - Implement logic to show current deployed version + available ones in catalogue This will be really great to finish.
Author
Owner

And then there was one 👀

Implement logic to show current deployed version + available ones in catalogue

And then there was one 👀 > Implement logic to show current deployed version + available ones in catalogue
Sign in to join this conversation.
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: coop-cloud/organising#130
No description provided.