diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md deleted file mode 100644 index e10b7cd7..00000000 --- a/.github/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,22 +0,0 @@ -# Contributor Code of Conduct - -## Pledge - -We as individuals involved in this project, pledge to participate in this -community in a respectful, constructive, and civil manner as we work towards a common goal -of delivering free, open source, and value adding software for all. - -## Standard - -The standard for this community is the Golden Rule. - -> “Do unto others as you would have them do unto you.” - -## Scope - -This Code of Conduct applies to all spaces related to WG Tunnel. - -## Incidents or Concerns - -For any incidents or concerns, reach out to Zane at -. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fe75686d..9ec5c785 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -118,8 +118,8 @@ jobs: - name: Set version release notes if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }} run: | - VERSION_NAME=$(grep "const val VERSION_NAME" buildSrc/src/main/kotlin/Constants.kt | awk -F'"' '{print $2}') - RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_NAME}.txt || echo "No changelog found for ${VERSION_NAME}")" + VERSION_CODE=$(grep "const val VERSION_CODE" buildSrc/src/main/kotlin/Constants.kt | awk -F'"' '{print $2}') + RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_CODE}.txt || echo "No changelog found for ${VERSION_CODE}")" echo "RELEASE_NOTES<> $GITHUB_ENV echo "$RELEASE_NOTES" >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV diff --git a/buildSrc/src/main/kotlin/Constants.kt b/buildSrc/src/main/kotlin/Constants.kt index 3dd3ebf6..aeec4a03 100644 --- a/buildSrc/src/main/kotlin/Constants.kt +++ b/buildSrc/src/main/kotlin/Constants.kt @@ -1,6 +1,6 @@ object Constants { - const val VERSION_NAME = "4.1.1" - const val VERSION_CODE = 40101 + const val VERSION_NAME = "4.1.2" + const val VERSION_CODE = 40102 const val TARGET_SDK = 36 const val MIN_SDK = 26 const val APP_ID = "com.zaneschepke.wireguardautotunnel" diff --git a/fastlane/metadata/android/en-US/changelogs/40102.txt b/fastlane/metadata/android/en-US/changelogs/40102.txt new file mode 100644 index 00000000..a389a610 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40102.txt @@ -0,0 +1,8 @@ +What's new: +- Metered tunnels settings +- Lockdown dual-stack support +- Lockdown multiple profile bugfix +- Split tunneling improved installed packages querying +- Restart active tunnels on configuration changes +- Android TV UI bugfixes +- Various other bugfixes and improvements \ No newline at end of file