-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
1,330 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
name: Deploy Jekyll site to Pages | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.1' # Not needed with a .ruby-version file | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
cache-version: 0 # Increment this number if you need to re-download cached gems | ||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v2 | ||
- name: Build with Jekyll | ||
# Outputs to the './_site' directory by default | ||
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" | ||
env: | ||
JEKYLL_ENV: production | ||
- name: Upload artifact | ||
# Automatically uploads an artifact from the './_site' directory by default | ||
uses: actions/upload-pages-artifact@v1 | ||
|
||
# Deployment job | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copied from https://github.com/github/gitignore/blob/main/Jekyll.gitignore | ||
# Ignore metadata generated by Jekyll | ||
_site/ | ||
.sass-cache/ | ||
.jekyll-cache/ | ||
.jekyll-metadata | ||
|
||
# Ignore folders generated by Bundler | ||
.bundle/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
--- | ||
title: Changelog | ||
layout: default | ||
nav_order: 5 | ||
--- | ||
|
||
# Changelog | ||
|
||
## 2023-20-26 | ||
|
||
- Released api `1.5.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#150---2023-10-26). | ||
- Released admin `1.5.0`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#150---2023-10-26). | ||
- Released templates `1.3.1`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#131---2023-10-26) | ||
|
||
## 2023-09-14 | ||
|
||
- Released api `1.4.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#140---2023-09-14) | ||
- Released admin `1.4.5`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#140---2023-09-14) | ||
- Released client `1.3.4`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#135---2023-09-14) | ||
- Released templates `1.3.0`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#130---2023-09-14) | ||
|
||
## 2023-07-13 | ||
|
||
- Released client `1.3.4`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#134---2023-07-13) | ||
|
||
## 2023-07-11 | ||
|
||
- Released api `1.3.2`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#132---2023-07-11) | ||
- Released api `1.3.1`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#131---2023-07-11) | ||
- Released api `1.3.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#130---2023-07-11) | ||
- Released admin `1.3.3`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#133---2023-07-11) | ||
- Released admin `1.3.2`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#132---2023-07-11) | ||
- Released admin `1.3.1`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#131---2023-07-11) | ||
- Released admin `1.3.0`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#130---2023-07-11) | ||
- Released client `1.3.3`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#133---2023-07-11) | ||
- Released client `1.3.2`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#132---2023-07-11) | ||
- Released client `1.3.1`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#131---2023-07-11) | ||
- Released client `1.3.0`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#130---2023-07-11) | ||
|
||
## 2023-06-30 | ||
- Released api `1.2.9`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#129---2023-06-30) | ||
- Released client `1.2.7`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#127---2023-06-30) | ||
|
||
## 2023-06-12 | ||
|
||
- Released client `1.2.6`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#126---2023-06-12) | ||
|
||
## 2023-06-06 | ||
|
||
- Released client `1.2.5`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#125---2023-06-06). | ||
|
||
## 2023-06-01 | ||
|
||
- Released templates `1.2.6`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#126---2023-06-01) | ||
|
||
## 2023-05-25 | ||
|
||
- Released api `1.2.8`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#128---2023-05-25) | ||
- Released client `1.2.4`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#124---2023-05-25) | ||
- Released admin `1.2.7`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#127---2023-05-25) | ||
|
||
## 2023-05-11 | ||
|
||
- Released admin `1.2.6`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#126---2023-05-11) | ||
|
||
## 2023-04-03 | ||
|
||
- Released api `1.2.7`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#127---2023-04-03). | ||
|
||
## 2023-03-24 | ||
|
||
- Released api `1.2.6`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#126---2023-03-24). | ||
- Released admin `1.2.5`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#125---2023-03-24). | ||
- Released admin `1.2.4`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#124---2023-03-24). | ||
- Released client `1.2.3`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#123---2023-03-24). | ||
- Released templates `1.2.4`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#124---2023-03-24). | ||
|
||
- Released templates `1.2.5`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#125---2023-03-24). | ||
|
||
## 2023-03-16 | ||
|
||
- Released api `1.2.5`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#125---2023-03-16). | ||
|
||
## 2023-03-07 | ||
|
||
- Released api `1.2.4`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#124---2023-03-07). | ||
- Released admin `1.2.3`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#123---2023-03-07). | ||
- Released templates `1.2.3`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#123---2023-03-07). | ||
- Released client `1.2.2`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#122---2023-03-07). | ||
|
||
## 2023-02-14 | ||
|
||
- Released api `1.2.3`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#123---2023-02-14). | ||
|
||
## 2023-02-08 | ||
|
||
- Released api `1.2.2`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#122---2023-02-08). | ||
- Released admin `1.2.2`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#122---2023-02-08). | ||
- Released templates `1.2.2`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#122---2023-02-08). | ||
|
||
## 2023-02-02 | ||
|
||
- Released api `1.2.1`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#121---2023-02-02). | ||
|
||
## 2023-01-13 | ||
|
||
- Released admin `1.2.1`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#121---2023-01-13). | ||
- Released cient `1.2.1`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#121---2023-01-13). | ||
|
||
## 2023-01-05 | ||
|
||
- Released api `1.2.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#120---2023-01-05). | ||
- Released admin `1.2.0`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#120---2023-01-05). | ||
- Released client `1.2.0`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#120---2023-01-05). | ||
- Released templates `1.2.0`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#120---2023-01-05). | ||
|
||
## 2022-10-06 | ||
|
||
- Released admin `1.1.0`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#110---2022-10-06). | ||
- Released client `1.1.0`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#110---2022-10-06). | ||
|
||
## 2022-09-29 | ||
|
||
- Released api `1.1.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#110---2022-09-29). | ||
|
||
## 2022-09-08 | ||
|
||
- Released client `1.0.2`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#102---2022-09-08). | ||
|
||
## 2022-09-05 | ||
|
||
- Released api `1.0.4`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#104---2022-09-05). | ||
- Released admin `1.0.3`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#103---2022-09-05). | ||
|
||
## 2022-09-01 | ||
|
||
- Released api `1.0.3`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#103---2022-09-01). | ||
- Released api `1.0.2`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#102---2022-09-01). | ||
- Released api `1.0.1`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#101---2022-09-01). | ||
|
||
## 2022-06-02 | ||
|
||
- Released admin `1.0.2`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#102---2022-06-02). | ||
- Released templates `1.0.2`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#102---2022-06-02). | ||
- Released templates `1.0.1`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#101---2022-06-02). | ||
|
||
## 2022-06-01 | ||
|
||
- Released admin `1.0.1`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#101---2022-06-01). | ||
- Released client `1.0.1`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#101---2022-06-01). | ||
- Released templates `1.0.0`. See [changelog](https://github.com/os2display/display-templates/blob/develop/CHANGELOG.md#100---2022-06-01). | ||
|
||
## 2022-05-18 | ||
|
||
- Released api `1.0.0`. See [changelog](https://github.com/os2display/display-api-service/blob/develop/CHANGELOG.md#100---2022-05-18). | ||
- Released admin `1.0.0`. See [changelog](https://github.com/os2display/display-admin-client/blob/develop/CHANGELOG.md#100---2022-05-18). | ||
- Released client `1.0.0`. See [changelog](https://github.com/os2display/display-client/blob/develop/CHANGELOG.md#100---2022-05-18). |
Oops, something went wrong.