diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..3d62184 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +custom: ["https://www.paypal.me/janraasch/29,00"] +github: ["janraasch"] diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 60a68af..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,14 +0,0 @@ -# see https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates -version: 2 -updates: - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - - # Maintain dependencies for npm - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" diff --git a/.github/stale.yml b/.github/stale.yml index 86c4885..dc90e5a 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,18 +1,17 @@ # Number of days of inactivity before an issue becomes stale -daysUntilStale: 90 +daysUntilStale: 60 # Number of days of inactivity before a stale issue is closed -daysUntilClose: 30 +daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - pinned - security - - bug - - priority-high -exemptProjects: true -exemptMilestones: true # Label to use when marking an issue as stale -staleLabel: no-activity +staleLabel: wontfix # Comment to post when marking an issue as stale. Set to `false` to disable -markComment: false +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false \ No newline at end of file +closeComment: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f931a91..54f0fe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,24 +10,23 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-18.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v2 - name: Setup Hugo - uses: peaceiris/actions-hugo@v3.0.0 + uses: peaceiris/actions-hugo@v2 with: hugo-version: latest - extended: true - name: Build local ./exampleSite - run: hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://zjedi.github.io/hugo-scroll/ + run: hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-scroll/ - name: Deploy to GitHub Pages if: github.event_name == 'push' - uses: peaceiris/actions-gh-pages@v4.0.0 + uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public diff --git a/.gitignore b/.gitignore index 0c3b764..ea47378 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,3 @@ public exampleSite/public -exampleSite/resources node_modules -*.lock -hugo-scroll.code-workspace diff --git a/.prettierignore b/.prettierignore index 7cace38..cf070c9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,5 @@ -assets/css/fontawesome -assets/css/normalize.css -layouts/_default/index.html -public +build resources +public +static/font-awesome +static/css/normalize.css diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index f5284ff..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,37 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -* Added for new features. -* Changed for changes in existing functionality. -* Deprecated for soon-to-be removed features. -* Removed for now removed features. -* Fixed for any bug fixes. -* Security in case of vulnerabilities. - -## [Unreleased](https://github.com/zjedi/hugo-scroll/compare/v.1.0.0...master) - -* **JS cleanup / CSS refactoring**, possibly causing some pain if you have extensive CSS customisations in screen.css #4, #61, #102. For backwards compatibility, a released tag `v1.0.0` was created just in case some projects needed to fix the legacy version. However, I won't actively support the legacy branch. -* New features: #70 , #46 , #118 -* More features #116 , #119 - -## [1.0.0 Legacy Snapshot](https://github.com/zjedi/hugo-scroll/releases/tag/v.1.0.0) - -## Template for new releases - -## [x.y.z](https://github.com/zjedi/hugo-scroll/compare/v1.0.0...vx.y.z) - -### Added - -### Changed - -### Deprecated - -### Removed - -### Fixed - -### Security diff --git a/README.md b/README.md index f95e63d..71704fb 100644 --- a/README.md +++ b/README.md @@ -1,144 +1,84 @@ -