Skip to content

Commit

Permalink
Perform rename and redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanw committed Mar 17, 2022
1 parent ac1f410 commit 537ad70
Show file tree
Hide file tree
Showing 28 changed files with 450 additions and 503 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./dist/voebbot.zip
asset_name: voebbot-${{ env.RELEASE_VERSION }}.zip
asset_path: ./dist/bibbot.zip
asset_name: bibbot-${{ env.RELEASE_VERSION }}.zip
asset_content_type: application/zip
- name: "web-ext build"
id: web-ext-build
uses: kewisch/action-web-ext@d5376aebf5a5f167924728cf9b43d6e9e8ee10e0
with:
cmd: build
source: ./dist/voebbot
source: ./dist/bibbot
- name: "web-ext sign"
id: web-ext-sign
uses: kewisch/action-web-ext@d5376aebf5a5f167924728cf9b43d6e9e8ee10e0
Expand All @@ -69,7 +69,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ${{ steps.web-ext-sign.outputs.target }}
asset_name: voebbot-${{ env.RELEASE_VERSION }}.xpi
asset_name: bibbot-${{ env.RELEASE_VERSION }}.xpi
asset_content_type: application/x-xpinstall
- name: Trigger GitHub pages rebuild
run: |
Expand All @@ -84,7 +84,7 @@ jobs:
uses: trmcnvn/chrome-addon@7fc5a5ad3ff597dc64d6a13de7dcaa8515328be7
with:
extension: edafomjglmkfbiieocpflnhfdmikkhbo
zip: ./dist/voebbot.zip
zip: ./dist/bibbot.zip
client-id: ${{ secrets.CHROME_CLIENT_ID }}
client-secret: ${{ secrets.CHROME_CLIENT_SECRET }}
refresh-token: ${{ secrets.CHROME_REFRESH_TOKEN }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# VOEBBot
# BibBot

[Official website](https://stefanw.github.io/voebbot/)
[Official website](https://stefanw.github.io/bibbot/)

## Development

Expand Down
8 changes: 4 additions & 4 deletions dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
set -ex

mkdir -p dist
rm -f dist/voebbot.zip
rm -f dist/bibbot.zip
npm run build
zip -r -FS dist/voebbot.zip * --exclude '*.git*' \
zip -r -FS dist/bibbot.zip * --exclude '*.git*' \
--exclude '*/.DS_Store' \
--exclude '.*' \
--exclude 'node_modules/*' \
Expand All @@ -21,5 +21,5 @@ zip -r -FS dist/voebbot.zip * --exclude '*.git*' \
--exclude 'index.html' \
--exclude 'web-ext-artifacts/*'

rm -rf dist/voebbot
unzip dist/voebbot.zip -d dist/voebbot
rm -rf dist/bibbot
unzip dist/bibbot.zip -d dist/bibbot
378 changes: 378 additions & 0 deletions icons/bibbot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/bibbot128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/bibbot19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/bibbot38.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/bibbot48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/bibbot96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/bibbot_simple.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 537ad70

Please sign in to comment.