diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index 59a10f5..ce3d19a 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -53,7 +53,6 @@ body: options: - x86-64 - arm64 - - armhf validations: required: true - type: textarea diff --git a/README.md b/README.md index 581ba05..8dd0b50 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf | ✅ | arm32v7-\ | +| armhf | ❌ | | ## Application Setup @@ -222,6 +222,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **03.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **11.06.22:** - Rebase to focal, update disable updates flag. * **08.04.20:** - Structural changes for beta18. * **04.12.19:** - Disable in app updates. diff --git a/readme-vars.yml b/readme-vars.yml index 19fa3e3..e11a38c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -6,48 +6,41 @@ project_url: "https://github.com/mregni/EmbyStat" project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/embystat-logo.png" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff." project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" - # supported architectures available_architectures: - - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} - + - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} + - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} # development version development_versions: false development_versions_items: - - { tag: "latest", desc: "EmbyStat releases" } - + - {tag: "latest", desc: "EmbyStat releases"} # container parameters common_param_env_vars_enabled: true param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files." } + - {vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files."} param_usage_include_ports: true param_ports: - - { external_port: "6555", internal_port: "6555", port_desc: "web gui" } + - {external_port: "6555", internal_port: "6555", port_desc: "web gui"} param_usage_include_env: true param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} - + - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} # optional container parameters opt_param_usage_include_env: false opt_param_env_vars: - - { env_var: "BASE_URL", env_value: "/embystat", desc: "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable." } - + - {env_var: "BASE_URL", env_value: "/embystat", desc: "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable."} optional_block_1: false optional_block_1_items: "" - # application setup block app_setup_block_enabled: true app_setup_block: | Access the webui at `:6555`. Follow the setup wizard on initial install. Then configure the required services. - # changelog changelogs: - - { date: "11.06.22:", desc: "Rebase to focal, update disable updates flag." } - - { date: "08.04.20:", desc: "Structural changes for beta18." } - - { date: "04.12.19:", desc: "Disable in app updates." } - - { date: "12.11.19:", desc: "Multi-arch builds." } - - { date: "10.09.19:", desc: "Initial Release." } + - {date: "03.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} + - {date: "11.06.22:", desc: "Rebase to focal, update disable updates flag."} + - {date: "08.04.20:", desc: "Structural changes for beta18."} + - {date: "04.12.19:", desc: "Disable in app updates."} + - {date: "12.11.19:", desc: "Multi-arch builds."} + - {date: "10.09.19:", desc: "Initial Release."}