Compare commits
3 Commits
776a964d81
...
v1.2.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
d405bc8107
|
|||
|
6ad8b6bf3c
|
|||
|
16a435f38a
|
35
.gitea/workflows/release-zip.yml
Normal file
35
.gitea/workflows/release-zip.yml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
name: Zip and attach installable zip to release
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
zip-and-attach:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
- name: Check out the repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Extract tag name and build zip filename
|
||||||
|
id: vars
|
||||||
|
run: |
|
||||||
|
raw_tag="${GITHUB_REF##*/}"
|
||||||
|
tag="${raw_tag#v}" # Remove leading "v" if present
|
||||||
|
repo_name="${{ github.event.repository.name }}"
|
||||||
|
echo "TAG_NAME=$tag" >> $GITHUB_OUTPUT
|
||||||
|
echo "ZIP_NAME=${repo_name}_$tag.zip" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Create zip of the repository
|
||||||
|
run: |
|
||||||
|
zip -r "${{ steps.vars.outputs.ZIP_NAME }}" . -x '*.git*'
|
||||||
|
|
||||||
|
- name: Upload zip as a release asset
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: ${{ steps.vars.outputs.ZIP_NAME }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITEATOKEN }}
|
||||||
@@ -566,7 +566,7 @@ warningbox .error {
|
|||||||
/* A quote, perhaps from another post. */
|
/* A quote, perhaps from another post. */
|
||||||
.bbc_quote,
|
.bbc_quote,
|
||||||
/* A code block - maybe PHP ;) - shared styles. */
|
/* A code block - maybe PHP ;) - shared styles. */
|
||||||
.bbc_code {
|
.bbc_code.bbc_code {
|
||||||
border-color: var(--color-code-border);
|
border-color: var(--color-code-border);
|
||||||
background: var(--color-code-bg);
|
background: var(--color-code-bg);
|
||||||
}
|
}
|
||||||
@@ -1477,7 +1477,7 @@ div.bbc_footnotes .meaction {}
|
|||||||
}
|
}
|
||||||
|
|
||||||
.post_subject {
|
.post_subject {
|
||||||
color: var(--color-secondary);
|
color: var(--color-text-light-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.keyinfo h5 a,
|
.keyinfo h5 a,
|
||||||
@@ -1759,20 +1759,20 @@ li.ui-tab.ui-tabs-active.ui-state-active.ui-state-hover .ui-tabs-anchor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.activity_stats li span {
|
.activity_stats li span {
|
||||||
border-color: #585858;
|
border-color: var(--color-secondary);
|
||||||
border-right-color: transparent;
|
border-right-color: transparent;
|
||||||
border-left-color: transparent;
|
border-left-color: transparent;
|
||||||
background: #7C7360;
|
background: var(--color-card);
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity_stats li .bar {
|
.activity_stats li .bar {
|
||||||
border-color: var(--color-secondary);
|
border-color: var(--color-secondary);
|
||||||
border-bottom-color: transparent;
|
border-bottom-color: transparent;
|
||||||
background: #1A1A1A;
|
background: var(--color-body-alternate);
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity_stats li .bar div {
|
.activity_stats li .bar div {
|
||||||
background: #47B263 linear-gradient(to bottom, #1FA2E1 0%, #0689C8 100%);
|
background: var(--color-green-badge) linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary-dark-2) 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile_pie {
|
.profile_pie {
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.4 KiB |
BIN
images/mobile.png.apple.png
Normal file
BIN
images/mobile.png.apple.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
@@ -173,6 +173,7 @@ function template_html_above()
|
|||||||
// Show all the relative links, such as help, search, contents, and the like.
|
// Show all the relative links, such as help, search, contents, and the like.
|
||||||
echo '
|
echo '
|
||||||
<link rel="shortcut icon" sizes="196x196" href="' . $context['favicon'] . '" />
|
<link rel="shortcut icon" sizes="196x196" href="' . $context['favicon'] . '" />
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="' . $context['favicon'] . '.apple.png" />
|
||||||
<link rel="help" href="', $scripturl, '?action=help" />
|
<link rel="help" href="', $scripturl, '?action=help" />
|
||||||
<link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '
|
<link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '
|
||||||
<link rel="search" href="' . $scripturl . '?action=search" />' : '');
|
<link rel="search" href="' . $scripturl . '?action=search" />' : '');
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<theme-info xmlns="https://www.elkarte.net/site/theme-info" xmlns:elk="https://www.elkarte.net/">
|
<theme-info xmlns="https://www.elkarte.net/site/theme-info" xmlns:elk="https://www.elkarte.net/">
|
||||||
<!-- For the id, always use something unique - put your name, a colon, and then the package name. -->
|
<!-- For the id, always use something unique - put your name, a colon, and then the package name. -->
|
||||||
<id>artix:Artix</id>
|
<id>artix:Artix</id>
|
||||||
<version>1.2.1</version>
|
<version>1.2.2</version>
|
||||||
<!-- Theme name, used purely for aesthetics. -->
|
<!-- Theme name, used purely for aesthetics. -->
|
||||||
<name>Artix</name>
|
<name>Artix</name>
|
||||||
<!-- Author: your email address or contact information. The name attribute is optional. -->
|
<!-- Author: your email address or contact information. The name attribute is optional. -->
|
||||||
|
|||||||
Reference in New Issue
Block a user