diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b674053..50e30c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,11 +20,11 @@ jobs: - name: create-artifacts run: | - (cd dist && zip -r - .) >mdpresentation-${{ github.ref_name }}.zip + (cd dist && zip -r - .) >mdpresentation-viewer-${{ github.ref_name }}.zip mkdir -p dist/release - mv mdpresentation-${{ github.ref_name }}.zip dist/release/ - md5sum dist/release/mdpresentation-${{ github.ref_name }}.zip >dist/release/md5sum.txt - sha256sum dist/release/mdpresentation-${{ github.ref_name }}.zip >dist/release/sha256sum.txt + mv mdpresentation-viewer-${{ github.ref_name }}.zip dist/release/ + md5sum dist/release/mdpresentation-viewer-${{ github.ref_name }}.zip >dist/release/md5sum.txt + sha256sum dist/release/mdpresentation-viewer-${{ github.ref_name }}.zip >dist/release/sha256sum.txt - name: publish-artifacts uses: fnkr/github-action-ghr@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d07a4a..1e5ba86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,13 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.0.0] - 2024-08-30 ### Added +- **Breaking:** Load ocis images from the sub directory level (https://github.com/JankariTech/web-app-presentation-viewer/pull/60) +- **Breaking:** Use ocis images from same directory level (https://github.com/JankariTech/web-app-presentation-viewer/pull/48) - Loading spinner until presentation is ready (https://github.com/JankariTech/web-app-presentation-viewer/pull/61) -- Load ocis images from the sub directory level (https://github.com/JankariTech/web-app-presentation-viewer/pull/60) -- Use ocis images from same directory level (https://github.com/JankariTech/web-app-presentation-viewer/pull/48) ### Fixed @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Renamed app-id to `mdpresentation-viewer` (https://github.com/JankariTech/web-app-presentation-viewer/pull/74) - Parse and update local image urls directly in the markdown content (https://github.com/JankariTech/web-app-presentation-viewer/pull/61) ### Removed diff --git a/package.json b/package.json index 03cbaa3..435fc43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "web-app-presentation-viewer", - "version": "2.0.0-beta.1", + "name": "mdpresentation-viewer", + "version": "2.0.0", "description": "Markdown Presentation Viewer for ownCloud Web", "license": "Apache-2.0", "private": true, diff --git a/public/manifest.json b/public/manifest.json index 9501250..cdd3301 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,5 +1,5 @@ { - "id": "com.github.jankaritech.web.mdpresentation", + "id": "com.github.jankaritech.mdpresentation-viewer", "entrypoint": "extension.js", "config": {} }