Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
datenangebot committed Apr 29, 2021
1 parent 762f6e8 commit 98fb48f
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 7 deletions.
62 changes: 62 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,74 @@ distclean: clean
rm -rf js/vendor
rm -rf js/node_modules

# Builds the source and appstore package
.PHONY: macdist
macdist:
make macsource
make macappstore

# Builds the source package
.PHONY: macsource
macsource:
rm -rf $(source_build_directory)
mkdir -p $(source_build_directory)
tar --disable-copyfile -c \
--exclude="./.gitignore" \
--exclude="./.git" \
--exclude="./.idea" \
--exclude="./build" \
--exclude="./js/node_modules" \
--exclude="./node_modules" \
--exclude="./*.log" \
--exclude="./js/*.log" \
--exclude="./*.tar.gz" \
-zf $(source_package_name).tar.gz ./* \

# Builds the source package for the app store, ignores php and js tests
.PHONY: macappstore
macappstore:
rm -rf $(appstore_build_directory)
mkdir -p $(appstore_build_directory)
tar --disable-copyfile -c \
--exclude="./.gitignore" \
--exclude="./.git" \
--exclude="./.idea" \
--exclude="./build" \
--exclude="./build/*" \
--exclude="./tests" \
--exclude="./Makefile" \
--exclude="./*.log" \
--exclude="./phpunit*xml" \
--exclude="./composer.*" \
--exclude="./node_modules" \
--exclude="./js/tests" \
--exclude="./js/test" \
--exclude="./js/*.log" \
--exclude="./js/package.json" \
--exclude="./js/bower.json" \
--exclude="./js/karma.*" \
--exclude="./js/protractor.*" \
--exclude="./package.json" \
--exclude="./bower.json" \
--exclude="./karma.*" \
--exclude="./protractor\.*" \
--exclude="./js/.*" \
-zf $(appstore_package_name).tar.gz ./* \








# Builds the source and appstore package
.PHONY: dist
dist:
make source
make appstore


# Builds the source package
.PHONY: source
source:
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Health
##### version 1.1.0
##### version 1.2.0
### Track your health. Use the advantages of a trusted platform.

The app provides different modules to track your health data.
Expand All @@ -15,6 +15,14 @@ Following modules are served:

### Changelog

v1.2.0
- many small fixes
- many string fixes
- add translations
- removed official support for nc19, but should work
- npm updates
> many thanks to @Valdnet
v1.1.0
- nc21 ready
- add module activities
Expand Down
10 changes: 5 additions & 5 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ Following modules are served:
- Activities
Health is everything.]]></description>
<version>1.1.0</version>
<version>1.2.0</version>
<licence>agpl</licence>
<author mail="[email protected]" >Florian Steffens</author>
<namespace>Health</namespace>
<category>tools</category>
<category>monitoring</category>
<category>organization</category>
<bugs>https://github.com/datenangebot/health/issues</bugs>
<screenshot small-thumbnail="https://datenangebot.de/s/SM9w74RW4YHzbY6/download">https://datenangebot.de/s/TCg4GG8cMRfy6Zi/download</screenshot>
<screenshot>https://datenangebot.de/s/HbXqdWZ6wCBoo2w/download</screenshot>
<screenshot>https://datenangebot.de/s/7pSJ6XpxBQJGrYX/download</screenshot>
<screenshot small-thumbnail="https://datenangebot.de/s/CFtgiraAkafA6XM/download">https://datenangebot.de/s/3RdyGSRwBoeLSFB/download</screenshot>
<screenshot>https://datenangebot.de/s/btK5MzkBgcmatQo/download</screenshot>
<screenshot>https://datenangebot.de/s/5zraYrBTgmrtkAQ/download</screenshot>
<dependencies>
<nextcloud min-version="19" max-version="21"/>
<nextcloud min-version="20" max-version="21"/>
</dependencies>
<navigations>
<navigation>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "health",
"description": "Nextcloud health app",
"version": "1.1.0",
"version": "1.2.0",
"author": "Florian Steffens <[email protected]>",
"contributors": [
"Florian Steffens <[email protected]>"
Expand Down

0 comments on commit 98fb48f

Please sign in to comment.