Skip to content

Commit d541a39

Browse files
authored
Merge pull request #35 from nextcloud/chore/bump-nc_py_api
bumped nc_py_api to latest version
2 parents 3337d9c + 1ff50ff commit d541a39

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Makefile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
APP_ID := app-skeleton-python
44
APP_NAME := SkeletonApp
5-
APP_VERSION := 2.0.0
5+
APP_VERSION := 3.0.0
66
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9030}"
77

88

@@ -17,14 +17,14 @@ help:
1717
@echo " > Next commands are only for the dev environment with nextcloud-docker-dev!"
1818
@echo " > They must be run from the host you are developing on, not in a Nextcloud container!"
1919
@echo " "
20-
@echo " run29 installs $(APP_NAME) for Nextcloud 29"
2120
@echo " run30 installs $(APP_NAME) for Nextcloud 30"
21+
@echo " run31 installs $(APP_NAME) for Nextcloud 31"
2222
@echo " run installs $(APP_NAME) for Nextcloud Latest"
2323
@echo " "
2424
@echo " > Commands for manual registration of ExApp($(APP_NAME) should be running!):"
2525
@echo " "
26-
@echo " register29 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
2726
@echo " register30 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
27+
@echo " register31 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
2828
@echo " register performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
2929

3030

@@ -33,16 +33,16 @@ build-push:
3333
docker login ghcr.io
3434
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/app-skeleton-python:latest .
3535

36-
.PHONY: run29
36+
.PHONY: run30
3737
run29:
38-
docker exec master-stable29-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
39-
docker exec master-stable29-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
38+
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
39+
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
4040
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml
4141

42-
.PHONY: run30
42+
.PHONY: run31
4343
run30:
44-
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
45-
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
44+
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
45+
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
4646
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml
4747

4848
.PHONY: run
@@ -51,16 +51,16 @@ run:
5151
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
5252
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml
5353

54-
.PHONY: register29
55-
register29:
56-
docker exec master-stable29-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
57-
docker exec master-stable29-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
58-
5954
.PHONY: register30
6055
register30:
6156
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
6257
docker exec master-stable30-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
6358

59+
.PHONY: register31
60+
register31:
61+
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
62+
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
63+
6464
.PHONY: register
6565
register:
6666
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nc_py_api[app]>=0.17.1
1+
nc_py_api[app]>=0.19.0

0 commit comments

Comments
 (0)