Skip to content

Commit

Permalink
Increase version to 2.6.0
Browse files Browse the repository at this point in the history
- updated CHANGELOG
- updated version number everywhere
- added new and missing keys to temp example secrets file
  • Loading branch information
donni106 committed Jun 20, 2022
1 parent f890d8f commit 45c53b9
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [v2.6.0] :rocket:

This version brings fist integrations of volunteer and consul areas.

### Added

- integration of HumHub as new optional volunteer feature including user accounts, groups, chats, events, ...
- extended and used the HumHub API functionalities to fit our needs for a seamless integration
- check this repo for more infos: https://github.com/ikuseiGmbH/smart-village-app-humhub-ext
- this is a first version containing a lot of features that will be expanded and optimized in upcoming releases
- integration of Consul as new optional consul feature including user accounts, debates, proposals, polls, ...
- updated and used GraphQL API of https://github.com/consul/consul
- this is a first version containing a lot of features that will be expanded and optimized in upcoming releases
- added an option to the settings screen so that users can see the intro of the app again

### Changed

- migrated Teleport API from v3 to v4 that is used for BUS-BB

### Fixed

- fixed waste reminder notification times for summer time
- fixed Matomo setup with adding check for existence of mandatory values for initialization of an instance
- there was a warning otherwise which caused an annoying warning message on the screen with every app reload in development

## [v2.5.4]

Set app language to German and bugfixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Smart Village App - Mobile App

![Project version](https://img.shields.io/badge/version-2.5.4-informational.svg) [![Maintainability](https://api.codeclimate.com/v1/badges/ee77a5fd8990be0158c1/maintainability)](https://codeclimate.com/github/ikuseiGmbH/smart-village-app-app/maintainability) ![Node version](https://img.shields.io/badge/node-14.18.1-informational.svg) ![Yarn version](https://img.shields.io/badge/yarn-1.22.4-informational.svg) ![Expo version](https://img.shields.io/badge/expo-43.0.0-informational.svg)
![Project version](https://img.shields.io/badge/version-2.6.0-informational.svg) [![Maintainability](https://api.codeclimate.com/v1/badges/ee77a5fd8990be0158c1/maintainability)](https://codeclimate.com/github/ikuseiGmbH/smart-village-app-app/maintainability) ![Node version](https://img.shields.io/badge/node-14.18.1-informational.svg) ![Yarn version](https://img.shields.io/badge/yarn-1.22.4-informational.svg) ![Expo version](https://img.shields.io/badge/expo-43.0.0-informational.svg)

The Smart Village App is a open source mobile app for villages, communities and counties. It is made with React Native for Android and iOS.

Expand Down Expand Up @@ -52,4 +52,4 @@ Have a look at the [changelog](./CHANGELOG.md) to be up to date with the develop

---

###### Version: 2.5.4
###### Version: 2.6.0
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ios",
"android"
],
"version": "2.5.4",
"version": "2.6.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "smart-village-app",
Expand Down
52 changes: 50 additions & 2 deletions src/config/secrets.temp
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
// you need to provide these data and rename this file to .js instead of .temp
// in order to fetch data from the server

module.exports.staticRestSuffix = {
wasteCalendarExport: '/waste_calendar/export?',
wasteReminderRegister: '/notification/wastes.json',
wasteReminderDelete: '/notification/wastes/'
};

module.exports.encounterApi = {
serverUrl: '',
version: 'v1/',
encounter: {
create: 'encounter',
poll: 'encounters/poll',
list: 'encounters'
},
qr: 'qr_code',
support: {
create: 'support/create'
},
user: 'user'
};

module.exports.bbBusUrl = '';
module.exports.bbBusUrlV2 = '';

module.exports.secrets = {
localhost: {
serverUrl: '',
Expand All @@ -14,7 +39,10 @@ module.exports.secrets = {
matomoSiteId: 0,

busBb: {
areaId: 0
areaId: 0,
v2: {
areaId: 0
}
},

rest: {
Expand All @@ -31,7 +59,27 @@ module.exports.secrets = {
project: ''
},
dsn: ''
}
},

volunteer: {
passwordForgottenUrl: '',
inviteUrl: '',
serverUrl: '',
dataPrivacyLink: '',
v1: '/api/v1/',
v2: '/api/v2/'
},

consul: {
serverUrl: '',
graphqlEndpoint: '/graphql',

settings: '/account',
termsOfService: '/conditions',
passwordForgotten: '/users/password/new'
},
},

// other slugs/communities
...
};

0 comments on commit 45c53b9

Please sign in to comment.