Skip to content

Commit

Permalink
Follow the lowercase naming where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
xeco23 committed Oct 17, 2024
1 parent 31b4c37 commit e9cdfc3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
recipe: "./appimage/AppImageBuilder.yml"
env:
UPDATE_INFO: gh-releases-zsync|xeco23|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
Expand Down Expand Up @@ -87,8 +87,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: "WasIstLos_${{ env.RELEASE_VERSION }}_amd64.deb"
asset_name: "WasIstLos_${{ env.RELEASE_VERSION }}_amd64.deb"
asset_path: "wasistlos_${{ env.RELEASE_VERSION }}_amd64.deb"
asset_name: "wasistlos_${{ env.RELEASE_VERSION }}_amd64.deb"
asset_content_type: application/deb

- name: Upload Snap Package
Expand All @@ -109,8 +109,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: "WasIstLos-${{ env.RELEASE_VERSION }}-x86_64.AppImage"
asset_name: "WasIstLos-${{ env.RELEASE_VERSION }}-x86_64.AppImage"
asset_path: "wasistlos-${{ env.RELEASE_VERSION }}-x86_64.AppImage"
asset_name: "wasistlos-${{ env.RELEASE_VERSION }}-x86_64.AppImage"
asset_content_type: application/appimage

- name: Publish Snap to Store
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ An unofficial WhatsApp desktop application for Linux.
<a href="https://flathub.org/apps/details/com.github.xeco23.WasIstLos">
<img align="center" alt="Download on Flathub" src="https://flathub.org/assets/badges/flathub-badge-en.png" width="200">
</a>
<a href="https://snapcraft.io/WasIstLos">
<a href="https://snapcraft.io/wasistlos">
<img align="center" alt="Get it from the Snap Store" src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg" width="200">
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion appimage/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AppDir:
path: ./AppDir
app_info:
id: com.github.xeco23.WasIstLos
name: WasIstLos
name: wasistlos
icon: com.github.xeco23.WasIstLos
version: !ENV ${RELEASE_VERSION}
exec: usr/bin/wasistlos
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: WasIstLos
Upstream-Name: wasistlos
Upstream-Contact: https://github.com/xeco23/WasIstLos/issues
Source: https://github.com/xeco23/WasIstLos

Expand Down
2 changes: 1 addition & 1 deletion src/util/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace wfl::util
if (autostart)
{
constexpr auto const possibleDesktopFilePaths = std::array<char const*, 3>{"/usr/local/share/applications/" WFL_APP_ID ".desktop",
"/usr/share/applications/" WFL_APP_ID ".desktop", "/snap/WasIstLos/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)
Expand Down

0 comments on commit e9cdfc3

Please sign in to comment.