diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3169bd..39daafcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/views/controllers/web/welcome/index.html.erb b/app/views/controllers/web/welcome/index.html.erb index 34347d5a..2b9f6d3f 100644 --- a/app/views/controllers/web/welcome/index.html.erb +++ b/app/views/controllers/web/welcome/index.html.erb @@ -94,17 +94,6 @@
-

- -

PullKeeper is 100% open source. You can check source code of application at Github repository.

If you have any suggestions then you can create issue at Github issues.

You can fork repository, run it locally or even run it on your own production server.

@@ -243,7 +232,7 @@
- © 2024 PullKeeper, v2.0.2 + © Since 2023, PullKeeper, v2.0.3
Sponsored by diff --git a/config/initializers/pagy.rb b/config/initializers/pagy.rb new file mode 100644 index 00000000..2c24cd1f --- /dev/null +++ b/config/initializers/pagy.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +require 'pagy/extras/overflow' + +Pagy::DEFAULT[:overflow] = :last_page