From 7d31f90e7a1329804cb48a9447760fd7e82c1dcd Mon Sep 17 00:00:00 2001 From: Enes Hecan Date: Thu, 17 Oct 2024 12:42:01 +0200 Subject: [PATCH] Rename more stuff --- .github/funding.yml | 4 ++-- .github/workflows/release.yml | 2 +- CONTRIBUTING.md | 4 ++-- README.md | 2 +- appimage/AppImageBuilder.yml | 2 +- snap/snapcraft.yaml | 10 +++++----- src/util/Settings.cpp | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/funding.yml b/.github/funding.yml index 06ac53b..faabb4b 100644 --- a/.github/funding.yml +++ b/.github/funding.yml @@ -1,4 +1,4 @@ -github: eneshecan -open_collective: wasistlos +github: xeco23 +open_collective: WasIstLos ko_fi: xeco19 custom: "paypal.me/xeco19" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b28ac7..e619812 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: with: recipe: "./appimage/AppImageBuilder.yml" env: - UPDATE_INFO: gh-releases-zsync|eneshecan|WasIstLos|${{ env.RELEASE_VERSION }}|*x86_64.AppImage.zsync + UPDATE_INFO: gh-releases-zsync|xeco23|WasIstLos|${{ env.RELEASE_VERSION }}|*x86_64.AppImage.zsync - name: Push Tag id: push-tag diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c101fd0..6bb216f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ We are really happy you're reading this, because we need volunteers to help this ## Code -You can contribute by opening issues, resolving any issue especially [good first issues](https://github.com/xeco/WasIstLos/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), +You can contribute by opening issues, resolving any issue especially [good first issues](https://github.com/xeco23/WasIstLos/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), improving documentation, adding [translations](https://github.com/xeco23/WasIstLos/wiki#translations) in your language etc. ### Submitting changes @@ -14,7 +14,7 @@ Read more about [Pull Requests](https://help.github.com/en/github/collaborating- ## Donations -Donations are accepted through [opencollective](https://opencollective.com/wasistlos), [github sponsors](https://github.com/sponsors/eneshecan), +Donations are accepted through [opencollective](https://opencollective.com/WasIstLos), [github sponsors](https://github.com/sponsors/xeco23), [ko_fi](https://ko-fi.com/xeco19) and [paypal](https://www.paypal.com/paypalme/xeco19). Money collected via Open Collective is distributed to code contributors. diff --git a/README.md b/README.md index 953d0e5..8cb8bec 100644 --- a/README.md +++ b/README.md @@ -129,4 +129,4 @@ Please read [contributing](CONTRIBUTING.md). ### Code Contributors -[![Code Contributors](https://opencollective.com/whatsapp-for-linux/contributors.svg?width=880&button=false)](https://github.com/eneshecan/whatsapp-for-linux/graphs/contributors) +[![Code Contributors](https://opencollective.com/WasIstLos/contributors.svg?width=880&button=false)](https://github.com/xeco23/WasIstLos/graphs/contributors) diff --git a/appimage/AppImageBuilder.yml b/appimage/AppImageBuilder.yml index c0ca923..ff27459 100644 --- a/appimage/AppImageBuilder.yml +++ b/appimage/AppImageBuilder.yml @@ -6,7 +6,7 @@ AppDir: name: WasIstLos icon: com.github.xeco23.WasIstLos version: !ENV ${RELEASE_VERSION} - exec: usr/bin/wasistlos + exec: usr/bin/WasIstLos exec_args: $@ after_bundle: | # Binary patch absolute paths in libwebkit files diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 69b4f70..381fadd 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,11 +1,11 @@ -name: whatsapp-for-linux +name: WasIstLos base: core20 grade: stable confinement: strict -adopt-info: whatsapp-for-linux +adopt-info: WasIstLos parts: - whatsapp-for-linux: + WasIstLos: source-type: local source: . plugin: cmake @@ -35,7 +35,7 @@ parts: - resource/com.github.xeco23.WasIstLos.appdata.xml cleanup: - after: [whatsapp-for-linux] + after: [WasIstLos] plugin: nil build-snaps: [core20, gnome-3-38-2004, gtk-common-themes] override-prime: | @@ -68,7 +68,7 @@ slots: name: com.github.xeco23.WasIstLos apps: - whatsapp-for-linux: + WasIstLos: command: usr/local/bin/WasIstLos desktop: usr/local/share/applications/com.github.xeco23.WasIstLos.desktop common-id: com.github.xeco23.WasIstLos diff --git a/src/util/Settings.cpp b/src/util/Settings.cpp index 6b3c4a9..197ca93 100644 --- a/src/util/Settings.cpp +++ b/src/util/Settings.cpp @@ -60,7 +60,7 @@ namespace wfl::util if (autostart) { constexpr auto const possibleDesktopFilePaths = std::array{"/usr/local/share/applications/" WFL_APP_ID ".desktop", - "/usr/share/applications/" WFL_APP_ID ".desktop", "/snap/whatsapp-for-linux/current/share/applications/" WFL_APP_ID ".desktop"}; + "/usr/share/applications/" WFL_APP_ID ".desktop", "/snap/WasIstLos/current/share/applications/" WFL_APP_ID ".desktop"}; auto const it = std::find_if(possibleDesktopFilePaths.begin(), possibleDesktopFilePaths.end(), [](auto const& elem)