-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from CodeDead/release/v1.1.0
Release/v1.1.0
- Loading branch information
Showing
53 changed files
with
1,418 additions
and
913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>com.codedead.opal</id> | ||
<metadata_license>FSFAP</metadata_license> | ||
<project_license>GPL-3.0-only</project_license> | ||
<name>Opal</name> | ||
<summary>Play relaxing music in the background</summary> | ||
|
||
<description> | ||
<p> | ||
Opal is a free and open-source JavaFX application that can play relaxing music in the background. | ||
</p> | ||
<p> | ||
Select the sounds (20+ relaxing tracks are available) that you want to hear, turn them on and listen to and | ||
enjoy the music for as long as you want, without interruption. | ||
</p> | ||
</description> | ||
|
||
<launchable type="desktop-id">Opal.desktop</launchable> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<caption>The main window</caption> | ||
<image>https://i.imgur.com/qMAV8yS.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<url type="homepage">https://codedead.com/software/opal</url> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- development | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: sudo apt-get install -y fuse libfuse2 | ||
|
||
- name: Set up JDK 20 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '20' | ||
distribution: 'temurin' | ||
|
||
- name: Test | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: test | ||
|
||
- name: Build | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build | ||
|
||
- name: Build (AppImage) | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: AppImage | ||
|
||
- name: Build (jlink) | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: jlink | ||
|
||
- name: Build (jpackage) | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: jpackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,4 @@ logs/* | |
|
||
/default.properties | ||
/help.pdf | ||
.opal/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.1-20230330100852+0000-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.