Skip to content

Commit 394dc90

Browse files
authored
Merge branch 'master' into fix/local-storage-undefined
2 parents 0daf030 + 8a33290 commit 394dc90

13 files changed

+22
-22
lines changed

.github/workflows/reusable-android-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Check out app code
5858
uses: actions/checkout@v3
5959
with:
60-
repository: "IDEMSInternational/parenting-app-ui.git"
60+
repository: "IDEMSInternational/open-app-builder.git"
6161
ref: ${{env.APP_CODE_BRANCH}}
6262
lfs: true
6363

.github/workflows/reusable-app-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Check out app code
5959
uses: actions/checkout@v3
6060
with:
61-
repository: "IDEMSInternational/parenting-app-ui.git"
61+
repository: "IDEMSInternational/open-app-builder.git"
6262
ref: ${{env.APP_CODE_BRANCH}}
6363

6464
- name: Checkout parent repo if needed

.github/workflows/reusable-content-sync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Check out app code
4848
uses: actions/checkout@v3
4949
with:
50-
repository: "IDEMSInternational/parenting-app-ui.git"
50+
repository: "IDEMSInternational/open-app-builder.git"
5151
ref: ${{env.APP_CODE_BRANCH}}
5252

5353
- name: Remove .git from the repository in order to nest

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/IDEMSInternational/parenting-app-ui.git)
1+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/IDEMSInternational/open-app-builder.git)
22

3-
# Parenting App UI
3+
# Open App Builder
44

5-
[Online Documentation](https://idemsinternational.github.io/parenting-app-ui/)
5+
[Online Documentation](https://idemsinternational.github.io/open-app-builder/)
66

77
# Quickstart
88

@@ -24,13 +24,13 @@
2424

2525
### Download the repo with binary assets
2626
```
27-
$ git lfs clone https://github.com/IDEMSInternational/parenting-app-ui.git
27+
$ git lfs clone https://github.com/IDEMSInternational/open-app-builder.git
2828
```
2929
Note - if you do a regular git clone, you can always run `git lfs fetch --all` later to sync assets
3030

3131
### Install required dependencies
3232
```
33-
$ cd parenting-app-ui
33+
$ cd open-app-builder
3434
$ yarn install
3535
```
3636
Note - you may have to do this from time to time when content is updated)
@@ -45,7 +45,7 @@ yarn workflow deployment set
4545
```
4646
This will present an interactive list of deployments to select from.
4747

48-
See [Deployment Documentation](https://idemsinternational.github.io/parenting-app-ui/developers/deployments/) for information about creating and configuring deployments.
48+
See [Deployment Documentation](https://idemsinternational.github.io/open-app-builder/developers/deployments/) for information about creating and configuring deployments.
4949

5050
## Running locally
5151

@@ -57,8 +57,8 @@ This will start a local server and serve the app in your browser on http://local
5757

5858
# For Content Coders
5959

60-
Please see [Quickstart Authors](https://idemsinternational.github.io/parenting-app-ui/authors/quickstart/)
60+
Please see [Quickstart Authors](https://idemsinternational.github.io/open-app-builder/authors/quickstart/)
6161

6262
# For Developers
6363

64-
Please see [Quickstart Developers](https://idemsinternational.github.io/parenting-app-ui/developers/quickstart/)
64+
Please see [Quickstart Developers](https://idemsinternational.github.io/open-app-builder/developers/quickstart/)

documentation/docs/authors/advanced/overrides.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ It is also possible to replace any other flow type during sync and build by spec
5151
This can be useful in cases where multiple apps share some of the same core content, and want to only apply a number of replacements/additions.
5252

5353
!!! example "Experimental"
54-
See open issue [2081](https://github.com/IDEMSInternational/parenting-app-ui/issues/2081) for proposals to add multiple data sources to make this type of override system more easy to implement
54+
See open issue [2081](https://github.com/IDEMSInternational/open-app-builder/issues/2081) for proposals to add multiple data sources to make this type of override system more easy to implement

documentation/docs/authors/notifications.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ Notifications are automatically evaluated and scheduled on app start
6363
!!! warning
6464
When the app is not in active use sync timers pause and so no new notifications will be evaluated. That means that if the user closes the app
6565

66-
There is currently no workaround for this unfortunately except for reducing the re-schedule sync timer, however if this is required than it is suggested to [create an issue](https://github.com/IDEMSInternational/parenting-app-ui/issues/new/choose) for the feature (likely best handled by a trigger that can be called from authoring).
66+
There is currently no workaround for this unfortunately except for reducing the re-schedule sync timer, however if this is required than it is suggested to [create an issue](https://github.com/IDEMSInternational/open-app-builder/issues/new/choose) for the feature (likely best handled by a trigger that can be called from authoring).

documentation/docs/developers/deployments.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ export default config;
5656
```
5757
This configuration provides a minimal set of options to override the default header and sidemenu text, as well as configuring a remote google_drive data source (more information below)
5858

59-
A full list of general configuration options can be found in [packages/data-models/deployment.model.ts](https://github.com/IDEMSInternational/parenting-app-ui/blob/master/packages/data-models/deployment.model.ts)
59+
A full list of general configuration options can be found in [packages/data-models/deployment.model.ts](https://github.com/IDEMSInternational/open-app-builder/blob/master/packages/data-models/deployment.model.ts)
6060

61-
A full list of app_config and their default values can be found in [packages/data-models/appConfig.ts](https://github.com/IDEMSInternational/parenting-app-ui/blob/master/packages/data-models/appConfig.ts)
61+
A full list of app_config and their default values can be found in [packages/data-models/appConfig.ts](https://github.com/IDEMSInternational/open-app-builder/blob/master/packages/data-models/appConfig.ts)
6262

6363
Any configuration changes can be applied by setting the deployment
6464
```

documentation/docs/developers/device-testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Generate apk
44
A custom github action exists that can be used to trigger the building of android APKs from a given repo branch. Visit the action url and click Run workflow to initiate a build
5-
https://github.com/IDEMSInternational/parenting-app-ui/actions/workflows/trigger-build.yml
5+
https://github.com/IDEMSInternational/open-app-builder/actions/workflows/trigger-build.yml
66

77
![](./images/device-testing-1.png)
88

documentation/docs/developers/in-app-updates.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ npx cap open android
6060
3. Create a debug build from android studio menu (assumes google.json populated locally)
6161
_Build -> Build Bundles / APKs -> Build Bundle_
6262

63-
It should prompt a message on complete to locate the bundle, e.g. `...\parenting-app-ui\android\app\build\outputs\bundle\debug`
63+
It should prompt a message on complete to locate the bundle, e.g. `...\open-app-builder\android\app\build\outputs\bundle\debug`
6464

6565
4. Upload to [internal app sharing](https://play.google.com/console/internal-app-sharing) (each user maintains their own list of uploaded apps, so you won't be able to see what others have uploaded)
6666

documentation/docs/developers/web-previews.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
web_preview:
19-
uses: IDEMSInternational/parenting-app-ui/.github/workflows/reusable-deploy-web-preview.yml@master
19+
uses: IDEMSInternational/open-app-builder/.github/workflows/reusable-deploy-web-preview.yml@master
2020
secrets: inherit
2121
```
2222

documentation/docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
### Download the repo with binary assets
2020
```
21-
$ git lfs clone https://github.com/IDEMSInternational/parenting-app-ui.git
21+
$ git lfs clone https://github.com/IDEMSInternational/open-app-builder.git
2222
```
2323
Note - if you do a regular git clone, you can always run `git lfs fetch --all` later to sync assets
2424

2525
### Install required dependencies
2626
```
27-
$ cd parenting-app-ui
27+
$ cd open-app-builder
2828
$ yarn install
2929
```
3030
Note - you may have to do this from time to time when content is updated)

documentation/docs/questions/parameters_styles.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
_Asked on 10 February 2022_
66

7-
The `parameter_list` takes only parameters that are specifically defined by us for every specific component. As such, these are going to be pretty impossible for you to guess without documentation. For what it's worth, [this file](https://github.com/IDEMSInternational/parenting-app-ui/blob/master/documentation/docs/authors/template-component-parameter-list.md) is the closest thing to documentation of those parameters that we have at the moment.
7+
The `parameter_list` takes only parameters that are specifically defined by us for every specific component. As such, these are going to be pretty impossible for you to guess without documentation. For what it's worth, [this file](https://github.com/IDEMSInternational/open-app-builder/blob/master/documentation/docs/authors/template-component-parameter-list.md) is the closest thing to documentation of those parameters that we have at the moment.
88

99
Instead, the `style_list` does indeed interpret CSS directly. My knowledge of CSS is limited as well so I can't be of much help here, but [this documentation website](https://www.w3schools.com/cssref/default.asp) has proven handy to me in the past.
1010

documentation/mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ theme:
66
accent: a mber
77
font:
88
text: "Open Sans"
9-
repo_url: https://github.com/IDEMSInternational/parenting-app-ui
9+
repo_url: https://github.com/IDEMSInternational/open-app-builder
1010
edit_uri: edit/master/documentation/docs/
1111

1212
nav:

0 commit comments

Comments
 (0)