Skip to content

Commit

Permalink
Release 0.1.9a
Browse files Browse the repository at this point in the history
This is an unofficial release.

Changes:

- Fix: Uses libbyapp.com domain rather than svc.overdrive.com which fixes ping#33
- Fix: Applied spicefather's fix for date time formats (see ping#17)

Also includes unreleased changes by ping including the following

- New: Rename a card
- Fix: Use a regex validator instead of input mask for Libby setup code due to wonkiness, ref ping#14
  • Loading branch information
sgmoore committed Sep 11, 2024
1 parent dfa9062 commit e66df99
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Shorten GITHUB_SHA
run: echo "github_short_sha=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Upload plugin
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: overdrive-libby-plugin-${{ env.github_short_sha }}
path: |
Expand Down
33 changes: 24 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ on:
jobs:
tag-zip:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
repository-projects: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
Expand All @@ -19,11 +23,22 @@ jobs:
run: |
cd .github/workflows
sh build_translations.sh
- name: Upload plugin
uses: actions/upload-artifact@v3
with:
name: overdrive-libby-plugin-${{ github.ref_name }}
path: |
calibre-plugin/
!calibre-plugin/translations/*.po
!calibre-plugin/translations/*.pot
# - name: Upload plugin
# uses: actions/upload-artifact@v3
# with:
# name: overdrive-libby-plugin-${{ github.ref_name }}
# path: |
# calibre-plugin/
# !calibre-plugin/translations/*.po
# !calibre-plugin/translations/*.pot

- name: Release plugin
env:
GH_TOKEN: ${{ github.token }}
run: |
cd calibre-plugin
zip -r overdrive-libby-plugin-${{ github.ref_name }}.zip * -x translations/*.po -x translations/*.pot
gh release create ${{ github.ref_name }} overdrive-libby-plugin-${{ github.ref_name }}.zip -t "Release ${{ github.ref_name }}" --notes-from-tag

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

Unreleased
Version 0.1.9a - 2024-09-11 Unoffical version
- Fix: Uses libbyapp.com domain rather than svc.overdrive.com which fixes https://github.com/ping/libby-calibre-plugin/issues/33
- Fix: Applied spicefather's fix for date time formats (see https://github.com/ping/libby-calibre-plugin/pull/17)

Also includes unreleased changes by ping including the following

- New: Rename a card
- Fix: Use a regex validator instead of input mask for Libby setup code due to wonkiness, ref #14

Expand Down

0 comments on commit e66df99

Please sign in to comment.