Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Modified
- migrate primary and foreign keys from ID to UUID

### Fixed
- pagy overflow bug

## [2.0.2] - 2024-12-06
### Added
- open graph tags
Expand Down
13 changes: 1 addition & 12 deletions app/views/controllers/web/welcome/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,6 @@
</div>
<div class="flex-1 bg-blue py-8">
<div class="bg-white px-10 py-12 sm:py-32 max-w-xl">
<p>
<iframe
src="https://ghbtns.com/github-btn.html?user=kortirso&repo=pullmetry&type=star&count=true&size=large"
frameborder="0"
scrolling="0"
width="170"
height="30"
title="GitHub"
class="mb-4"
></iframe>
</p>
<p class="text-lg leading-8">PullKeeper is 100% open source. You can check source code of application at <a href="https://github.com/kortirso/pullmetry" target="_blank" rel="noopener noreferrer" class="simple-link">Github repository</a>.</p>
<p class="text-lg leading-8">If you have any suggestions then you can create issue at <a href="https://github.com/kortirso/pullmetry/issues" target="_blank" rel="noopener noreferrer" class="simple-link">Github issues</a>.</p>
<p class="text-lg leading-8">You can fork repository, run it locally or even run it on your own production server.</p>
Expand Down Expand Up @@ -243,7 +232,7 @@
</div>
<div class="w-full max-w-6xl flex justify-between items-center">
<div>
<span class="copyright">&copy;</span> 2024 PullKeeper, v2.0.2
<span class="copyright">&copy;</span> Since 2023, PullKeeper, v2.0.3
</div>
<div class="flex">
<span class="mr-2 text-sm">Sponsored by</span>
Expand Down
5 changes: 5 additions & 0 deletions config/initializers/pagy.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

require 'pagy/extras/overflow'

Pagy::DEFAULT[:overflow] = :last_page