Skip to content

Commit

Permalink
update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
nesaku committed Nov 3, 2024
1 parent f17adc3 commit aa42d17
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@ 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).

## [2.24.1] - Oct 30, 2024
## [2.25.0] - Nov 3, 2024

### Changed

- Set a maximum width for the displayed Goodreads URL
- Use a reusable `<CoverImage />` component instead of repeating code
- Update the instances list in the README and instances.json
- Allow the /search path in robots.txt

### Fixed

- Fix similar books section still being shown when there are no books
- Fix book cover images not showing in the series list
- Fix the aria-hidden attribute added to the quotes header link

## [2.24.0] - Sep 28, 2024

Expand Down
4 changes: 2 additions & 2 deletions components/global/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { useEffect } from "react";
import Link from "next/link";

const Footer = () => {
const version = "v2.24.0";
const versionSlug = "2240---sep-28-2024";
const version = "v2.25.0";
const versionSlug = "2250---nov-3-2024";

useEffect(() => {
if (typeof sessionStorage !== "undefined") {
Expand Down
5 changes: 1 addition & 4 deletions components/global/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ const Header = () => {
<ul className="items-stretch hidden space-x-3 lg:flex">
<li className="flex">
<Link href="/quotes">
<a
className="flex items-center px-4 -mb-1 border-b-2 border-rose-400 hover:border-rose-600 dark:hover:border-white/90 transition duration-300 delay-150 hover:delay-50 dark:border-gray-300/90 hover:text-rose-900 dark:hover:text-white/90"
aria-hidden="true"
>
<a className="flex items-center px-4 -mb-1 border-b-2 border-rose-400 hover:border-rose-600 dark:hover:border-white/90 transition duration-300 delay-150 hover:delay-50 dark:border-gray-300/90 hover:text-rose-900 dark:hover:text-white/90">
Quotes
</a>
</Link>
Expand Down
1 change: 0 additions & 1 deletion components/searchpage/ListsResultData.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* eslint-disable @next/next/no-img-element */
import Link from "next/link";
import Meta from "../global/Meta";
import { cleanImageUrl } from "../../utils/cleanImageUrl";
import CoverImage from "../global/CoverImage";

const SearchResults = (props) => {
Expand Down
2 changes: 1 addition & 1 deletion components/seriespage/SeriesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const SeriesList = (props) => {
</div>
<div className="flex mr-8">
<CoverImage
src={data.cover && data.title}
src={data.cover && data.cover}
alt={`${data.title} book cover`}
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biblioreads",
"version": "2.24.0",
"version": "2.25.0",
"description": "An Alternative Goodreads Front-End",
"private": true,
"author": "Nesaku",
Expand Down
1 change: 1 addition & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
User-Agent: *
Allow: /$
Allow: /about
Allow: /search
Disallow: /

0 comments on commit aa42d17

Please sign in to comment.