-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial push to the nightly branch with version "v0.80 Build 193", containing the source code and a pre-compiled .pkg file, as well as a change log.
- Loading branch information
1 parent
83a8abe
commit 57893ce
Showing
334 changed files
with
50,330 additions
and
45 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,56 @@ | ||
name: Update UnityOrbisBridge Files | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
fetch-and-replace: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ItsJokerZz/UnityOrbisBridge | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
path: source_repo | ||
ref: main | ||
|
||
- name: Checkout target repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Create required directories | ||
run: | | ||
mkdir -p source/Assets/Plugins/PS4 | ||
mkdir -p source/Assets/Scripts | ||
mkdir -p source/Assets/Plugins | ||
- name: Copy UnityOrbisBridge.prx from source repo | ||
run: | | ||
curl -L -o source/Assets/Plugins/PS4/UnityOrbisBridge.prx https://raw.githubusercontent.com/ItsJokerZz/UnityOrbisBridge/main/source/plugin/UnityOrbisBridge.prx | ||
- name: Copy UOBWrapper.cs from source repo | ||
run: | | ||
curl -L -o source/Assets/Scripts/Globals/UOBWrapper.cs https://raw.githubusercontent.com/ItsJokerZz/UnityOrbisBridge/main/source/wrapper/UOBWrapper.cs | ||
- name: Copy UnityOrbisBridge.dll from source repo | ||
run: | | ||
curl -L -o source/Assets/Plugins/UnityOrbisBridge.dll https://raw.githubusercontent.com/ItsJokerZz/UnityOrbisBridge/main/source/Unity-API/UnityOrbisBridge.dll | ||
- name: Check for changes | ||
run: | | ||
git diff --exit-code || echo "Changes detected" | ||
- name: Commit and push changes if there are changes | ||
run: | | ||
if [ -n "$(git status --porcelain)" ]; then | ||
git config user.name "github-actions[bot]" | ||
git config user.email "github-actions[bot]@users.noreply.github.com" | ||
git add source/Assets/Plugins/PS4/UnityOrbisBridge.prx | ||
git add source/Assets/Scripts/Globals/UOBWrapper.cs | ||
git add source/Assets/Plugins/UnityOrbisBridge.dll | ||
git commit -m "Update UnityOrbisBridge & Wrapper with source repo(s)" | ||
git push origin HEAD | ||
else | ||
echo "No changes to commit" | ||
fi |
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,10 @@ | ||
/source/etc | ||
/source/.vs | ||
|
||
/source/Assets/Scripts/.vs | ||
|
||
/source/BUILD | ||
/source/DATA | ||
/source/Library | ||
/source/obj | ||
/source/Temp |
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,23 @@ | ||
# FPKGi - Nightly Changelog | ||
<details> | ||
<summary>[ v0.80-nightly Build: 193 ] from Jan 9th, 2025</summary> | ||
|
||
**Fixes:** | ||
- **Background Music:** Resolved issue with music not playing, toggling, or saving correctly when closing the menu. | ||
- **Populate via Web:** Ensured settings are retained after closing the menu. | ||
- **Search Filtering:** | ||
- **Improved Filtering:** Filter now persists across pages. | ||
- **Reset Functionality:** Filter resets properly, restoring unfiltered content. | ||
- **Downloading:** | ||
- Fixed issues with invalid content blocking actions and downloads. | ||
|
||
**Improvements:** | ||
- **Downloading:** | ||
- Increased update interval for better performance and accuracy. | ||
- Improved download speed accuracy using smoothing. | ||
- Enhanced overall download estimates for UI display. | ||
|
||
**Features:** | ||
- **Downloading:** Added elapsed download time counter to the UI. | ||
|
||
</details> |
Large diffs are not rendered by default.
Oops, something went wrong.
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.