mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-22 02:38:45 -04:00
Added auto release note using template
This commit is contained in:
37
.github/RELEASE_TEMPLATE/Release.md
vendored
37
.github/RELEASE_TEMPLATE/Release.md
vendored
@@ -1,42 +1,41 @@
|
||||
# [YOUR_TWEAK_NAME] Features
|
||||
CercubePlus but adds Additional Features that should’ve been added to the native CercubePlus which were probably not added.
|
||||
# YTLitePlus Features
|
||||
|
||||
**YTNoModernUI:** This tweak changes and removes some newer UI elements from the app such as Some Rounded Buttons, Old Progress Bar, Old Buffer Bar & 16.42.3 App Version Number.
|
||||
|
||||
**LowContrastMode:** This tweak helps remove the new contrasty looking UI that was first introducted way back in 2020 August/September. (Tweak made by arichorn)
|
||||
<details>
|
||||
<summary>More Features...</summary>
|
||||
|
||||
**LowContrastMode:** This tweak helps remove the new contrasty looking UI that was first introduced way back in 2020 August/September. (Tweak made by arichorn)
|
||||
|
||||
**LowContrastModeColors:** for users who doesn’t use gray will get a set of colors to switch which changes and improves the UI Customization. (Add-on added for LowContrastMode)
|
||||
|
||||
**YTNoHeatwaves:** Turns off the Heatwaves Feature in the video player. `(CercubePlus/VideoPlayerOverlayControls)`
|
||||
|
||||
**YTNoUpgradeDialog:** Disables the Upgrade Dialog so you won’t be prompt to update the app.
|
||||
**YTNoUpgradeDialog:** Disables the Upgrade Dialog so you won’t be prompted to update the app.
|
||||
|
||||
**YouMute:** Mute/unmute videos in YouTube directly.
|
||||
|
||||
**iPadLayout:** Gives iPhone users the ability to use the iPad’s Interface and the ability to use the some of the YouTube features that are not on iPhone.
|
||||
**iPadLayout:** Gives iPhone users the ability to use the iPad’s Interface and the ability to use some of the YouTube features that are not on iPhone.
|
||||
|
||||
**iPhoneLayout:** Gives iPad users the ability to use Community Posts, to create Shorts and the ability to use the buggy iPhone layout. but using it in split view mode fixes the ui.
|
||||
**iPhoneLayout:** Gives iPad users the ability to use Community Posts, to create Shorts and the ability to use the buggy iPhone layout. but using it in split view mode fixes the UI.
|
||||
|
||||
**HideSponsorBlockButton:** Hide the SponsorBlock Button shown on the Nav Bar. Added by Dayanch96
|
||||
|
||||
**DisableWifiRelatedOptions:** want to remove sections that are only shown when internet is on? You can toggle this to remove all of those sections. Well not all but toggling the option will remove some of the annoying sections that may not be used.
|
||||
**DisableWifiRelatedOptions:** want to remove sections that are only shown when internet is on? You can toggle this to remove all of those sections. Well not all, but toggling the option will remove some of the annoying sections that may not be used.
|
||||
|
||||
**HideShadowOverlayButtons:** want to remove shadow overlay on the buttons used in the video player? Then toggle this to remove the Shadow Overlay on the buttons Previous, Next, Rewind, Forward.
|
||||
|
||||
**etc..**
|
||||
</details>
|
||||
|
||||
# [YOUR_TWEAK_NAME] Release Information
|
||||
Current YouTube IPA: `TEMPLATE`
|
||||
Current Cercube Version: `v5.3.13`
|
||||
# YTLitePlus Release Information
|
||||
|
||||
Current YouTube IPA: `%youtube_version%`
|
||||
Current Cercube Version: `%cercube_version%`
|
||||
Current App Compatibility: `iOS/iPadOS 14.0` or later
|
||||
|
||||
**RELEASE F1:**
|
||||
[THIS IS WHERE YOU PUT YOUR CHANGES BELOW, also F1 indicates First Release on the same YouTube Version in case you needed to know]
|
||||
- [<-- this subtract symbol makes the changelog look cool]
|
||||
**RELEASE %youtube_version%-%cercube_version%:** (%date%)
|
||||
|
||||
- [this right here shows you added additonal changes on a certain tweak like this for example, below]
|
||||
- Improvements
|
||||
- Fixed Sign-in Issue
|
||||
- Fixed Ads Not Working Issue
|
||||
[THIS IS HOW YOU DO IT! YOU CAN DELETE ALL OF THE TEXT I'VE SAID!]
|
||||
- Updated Youtube
|
||||
|
||||
### Issues in this Release:
|
||||
- LowContrastMode doesn't work (it work with older YT version)
|
10
.github/workflows/buildapp.yml
vendored
10
.github/workflows/buildapp.yml
vendored
@@ -141,6 +141,14 @@ jobs:
|
||||
path: ${{ github.workspace }}/main/packages/${{ steps.build_package.outputs.package }}
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Prepare Release Notes
|
||||
run: |
|
||||
export TODAY=$(date '+%Y-%m-%d')
|
||||
sed -e "s/%%CERCUBE_VERSION%%/${{ inputs.cercube_version }}/g" \
|
||||
-e "s/%%YOUTUBE_VERSION%%/${{ inputs.youtube_version }}/g" \
|
||||
-e "s/%%TODAY%%/${TODAY}/g" \
|
||||
.github/RELEASE_TEMPLATE/Release.md > .github/release_notes.md
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v0.1.15
|
||||
@@ -154,6 +162,8 @@ jobs:
|
||||
name: v${{ env.YOUTUBE_VERSION }}-${{ env.ytliteplus_version }}-(${{ github.run_number }})
|
||||
files: main/packages/*.ipa
|
||||
draft: ${{ env.DRAFT }}
|
||||
body_path: .github/release_notes.md
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user