Release version 0.8.8

This commit is contained in:
chrox
2024-12-29 12:48:55 +01:00
parent 870607f9c3
commit d1b6a0db1e
7 changed files with 14 additions and 7 deletions
+4 -4
View File
@@ -11,8 +11,8 @@ jobs:
contents: write
runs-on: ubuntu-latest
outputs:
release_id: ${{ steps.get-release.outputs.result }}
release_note: ${{ steps.get-release-notes.outputs.result }}
release_id: ${{ steps.get-release.outputs.release_id }}
release_note: ${{ steps.get-release-notes.outputs.release_note }}
steps:
- uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
})
return data.id
core.setOutput('release_id', data.id);
- name: get release notes
id: get-release-notes
uses: actions/github-script@v6
@@ -42,7 +42,7 @@ jobs:
const notes = releaseNotes.notes || [];
const releaseNote = notes.map((note, index) => `${index + 1}. ${note}`).join(' ');
console.log('Formatted release note:', releaseNote);
return releaseNote;
core.setOutput('release_note', releaseNote);
build-tauri:
needs: get-release
+1 -1
View File
@@ -84,7 +84,7 @@ Stay tuned for continuous improvements and updates! Contributions and suggestion
![Wikipedia](./data/screenshots/wikipedia_vertical.png)
![Dark Mode](./data/screenshots/dark_mode.png)
![Themeing Dark Mode](./data/screenshots/theming_dark_mode.png)
---
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@readest/readest-app",
"version": "0.8.7",
"version": "0.8.8",
"private": true,
"scripts": {
"dev": "dotenv -e .env.tauri -- next dev",
+7
View File
@@ -1,5 +1,12 @@
{
"releases": {
"0.8.8": {
"date": "2024-12-29",
"notes": [
"Use readest binary name for better CLI interface.",
"Some CSS tweaks to better support dark mode and embedded fonts."
]
},
"0.8.7": {
"date": "2024-12-27",
"notes": [
@@ -38,7 +38,7 @@ const SettingsDialog: React.FC<{ bookKey: string; config: BookConfig }> = ({ boo
}, []);
return (
<dialog className='modal modal-open min-w-90 w-full'>
<dialog className='modal modal-open min-w-90 w-full !bg-[rgba(0,0,0,0.2)]'>
<div className='modal-box settings-content flex h-[60%] w-1/2 min-w-[480px] max-w-full flex-col p-0'>
<div className='dialog-header bg-base-100 sticky top-0 z-10 flex items-center justify-center px-4 pt-2'>
<div className='dialog-tabs flex h-10 max-w-[80%] flex-grow items-center justify-around'>
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 2.0 MiB