From 141d260354d8cf8ebda775ccad5a348864b06150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aliberk=20Sand=C4=B1k=C3=A7=C4=B1?= Date: Fri, 26 Jul 2024 22:55:05 +0300 Subject: [PATCH] mini rebranding --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 8 ++++---- app/build.gradle | 14 +++++++------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ac5e7cb6..748f3dc24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout branch "${{ github.ref_name }}" run: | - git clone --no-checkout https://github.com/polymorphicshade/Tubular.git . + git clone --no-checkout https://github.com/MaintainTeam/LastPipeBender.git . git config core.symlinks false git checkout --progress --force ${{ github.ref_name }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6dda6a9a2..888e5d8a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout branch "${{ github.ref_name }}" run: | - git clone --no-checkout https://github.com/polymorphicshade/Tubular.git . + git clone --no-checkout https://github.com/MaintainTeam/LastPipeBender.git . git config core.symlinks false git checkout --progress --force ${{ github.ref_name }} @@ -45,14 +45,14 @@ jobs: version=$( grep "versionName" app/build.gradle | awk -F'"' '{print $2}' ) echo "${KEYSTORE}" | base64 -d > apksign.keystore ${ANDROID_HOME}/build-tools/34.0.0/apksigner sign --ks apksign.keystore --ks-pass env:SIGNING_STORE_PASSWORD "app/build/outputs/apk/release/app-release-unsigned.apk" - mv app/build/outputs/apk/release/app-release-unsigned.apk app/build/outputs/apk/release/"tubular_v${version}.apk" + mv app/build/outputs/apk/release/app-release-unsigned.apk app/build/outputs/apk/release/"lastpipebender_v${version}.apk" - name: Create release and upload run: | version=$( grep "versionName" app/build.gradle | awk -F'"' '{print $2}' ) gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}" - gh release create "v${version}" --title "${{ inputs.title }}" --notes-file ".github/changelog.md" --prerelease=${{ inputs.is_pre_release }} --repo polymorphicshade/Tubular - gh release upload "v${version}" app/build/outputs/apk/release/*.apk --repo polymorphicshade/Tubular + gh release create "v${version}" --title "${{ inputs.title }}" --notes-file ".github/changelog.md" --prerelease=${{ inputs.is_pre_release }} --repo MaintainTeam/LastPipeBender + gh release upload "v${version}" app/build/outputs/apk/release/*.apk --repo MaintainTeam/LastPipeBender - name: Archive reports for job uses: actions/upload-artifact@v4 diff --git a/app/build.gradle b/app/build.gradle index d172a547f..07008ec3e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -16,8 +16,8 @@ android { namespace 'org.schabi.newpipe' defaultConfig { - applicationId "org.polymorphicshade.tubular" - resValue "string", "app_name", "Tubular" + applicationId "org.maintainteam.lastpipebender" + resValue "string", "app_name", "PipeBender" minSdk 21 targetSdk 33 versionCode 998 @@ -42,19 +42,19 @@ android { if (normalizedWorkingBranch.isEmpty() || workingBranch == "master" || workingBranch == "dev") { // default values when branch name could not be determined or is master or dev applicationIdSuffix ".debug" - resValue "string", "app_name", "Tubular Debug" + resValue "string", "app_name", "PipeBender Debug" } else { applicationIdSuffix ".debug." + normalizedWorkingBranch - resValue "string", "app_name", "Tubular " + workingBranch - archivesBaseName = 'Tubular_' + normalizedWorkingBranch + resValue "string", "app_name", "PipeBender " + workingBranch + archivesBaseName = 'PipeBender_' + normalizedWorkingBranch } } release { if (System.properties.containsKey('packageSuffix')) { applicationIdSuffix System.getProperty('packageSuffix') - resValue "string", "app_name", "Tubular " + System.getProperty('packageSuffix') - archivesBaseName = 'Tubular_' + System.getProperty('packageSuffix') + resValue "string", "app_name", "PipeBender " + System.getProperty('packageSuffix') + archivesBaseName = 'PipeBender_' + System.getProperty('packageSuffix') } minifyEnabled true shrinkResources false // disabled to fix F-Droid's reproducible build