Skip to content

Commit

Permalink
feature: Renamed to Muse (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
onl1ner committed Apr 23, 2024
1 parent cb05528 commit 4f05ac4
Show file tree
Hide file tree
Showing 172 changed files with 1,663 additions and 1,662 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:
label: Environment
placeholder: |
- macOS:
- mupl:
- Muse:
validations:
required: false
- type: textarea
Expand Down
Binary file added .github/resources/dmg-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Download DMG
uses: actions/download-artifact@v3
with:
name: mupl
name: Muse

- name: Prepare Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
draft: true
automatic_release_tag: ${{ inputs.tag }}
files: mupl.dmg
files: Muse.dmg

- name: Generate Release Notes
uses: release-drafter/release-drafter@v5
Expand Down
28 changes: 15 additions & 13 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
env:
DEV_TEAM_ID: ${{ secrets.DEV_TEAM_ID }}
run: |
xcodebuild -scheme mupl -configuration Release -archivePath "$RUNNER_TEMP/mupl.xcarchive" DEVELOPMENT_TEAM=$DEV_TEAM_ID archive
xcodebuild -scheme Muse -configuration Release -archivePath "$RUNNER_TEMP/Muse.xcarchive" DEVELOPMENT_TEAM=$DEV_TEAM_ID archive
- name: Sign application
env:
CODESIGN_ID: ${{ secrets.CODESIGN_ID }}
run: |
codesign -s "$CODESIGN_ID" -f --strict --timestamp -o runtime "$RUNNER_TEMP/mupl.xcarchive/Products/Applications/mupl.app"
codesign -s "$CODESIGN_ID" -v -f --strict --timestamp --options=runtime "$RUNNER_TEMP/Muse.xcarchive/Products/Applications/Muse.app"
- name: Create DMG
env:
Expand All @@ -64,25 +64,27 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
run: |
xcrun notarytool store-credentials mupl --apple-id "$APPLE_ID" --team-id "$DEV_TEAM_ID" --password "$APPLE_ID_PASSWORD"
xcrun notarytool store-credentials Muse --apple-id "$APPLE_ID" --team-id "$DEV_TEAM_ID" --password "$APPLE_ID_PASSWORD"
create-dmg \
--volname "mupl" \
--volname "Muse" \
--background "$GITHUB_WORKSPACE/.github/resources/dmg-background.png" \
--window-pos 200 120 \
--window-size 699 518 \
--window-size 800 600 \
--icon-size 128 \
--icon "mupl.app" 170 210 \
--hide-extension "mupl.app" \
--app-drop-link 530 210 \
--icon "Muse.app" 192 304 \
--hide-extension "Muse.app" \
--app-drop-link 616 304 \
--codesign "$CODESIGN_ID" \
--notarize "mupl" \
"$RUNNER_TEMP/mupl.dmg" \
"$RUNNER_TEMP/mupl.xcarchive/Products/Applications/"
--notarize "Muse" \
"$RUNNER_TEMP/Muse.dmg" \
"$RUNNER_TEMP/Muse.xcarchive/Products/Applications/"
- name: Upload DMG
uses: actions/upload-artifact@v3
with:
name: mupl
path: ${{ runner.temp }}/mupl.dmg
name: Muse
path: ${{ runner.temp }}/Muse.dmg

- id: output
name: Output version
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

Every contribution to the project, be it a bug report, feature request, or pull request is essential, because the collective input will drive the project forward. Before contributing to the project it is recommended to first explore the existing issues. This understanding helps to see what is currently being tracked and what priorities the project holds.

Features and bugs can be explored on the [project's boards](https://github.com/orgs/mupl-app/projects/1/views/8). If you find a task you want to work on please indicate it in the issue or attach a draft PR to it once available.
Features and bugs can be explored on the [project's boards](https://github.com/orgs/muse-application/projects/1/views/8). If you find a task you want to work on please indicate it in the issue or attach a draft PR to it once available.

## Issues

If you wish to contribute by identifying bugs or suggesting new features, you could open an issue with the use of specific templates.

When you discover a bug, start by selecting the [bug report](https://github.com/mupl-app/mupl-macos/issues/new?template=bug_report.yml) template. This template will guide you through providing all necessary information about the issue. Although some fields are optional, filling them out can be incredibly helpful.
When you discover a bug, start by selecting the [bug report](https://github.com/muse-application/muse-macos/issues/new?template=bug_report.yml) template. This template will guide you through providing all necessary information about the issue. Although some fields are optional, filling them out can be incredibly helpful.

If you have an idea for a new feature that could enhance the project, use the [feature request](https://github.com/mupl-app/mupl-macos/issues/new?template=feature_request.yml) template to share your suggestion. A clear and concise description is crucial here. Clarity here helps others quickly grasp the value and functionality of your proposed feature. Though including screenshots is optional for feature requests, they can be helpful and can often communicate concepts more effectively than text alone.
If you have an idea for a new feature that could enhance the project, use the [feature request](https://github.com/muse-application/muse-macos/issues/new?template=feature_request.yml) template to share your suggestion. A clear and concise description is crucial here. Clarity here helps others quickly grasp the value and functionality of your proposed feature. Though including screenshots is optional for feature requests, they can be helpful and can often communicate concepts more effectively than text alone.

## Pull Request

Expand Down
Loading

0 comments on commit 4f05ac4

Please sign in to comment.