Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Learn more consistency on login form #156

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest]
platform: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -48,6 +48,15 @@ jobs:
- name: Build Tauri desktop app
uses: tauri-apps/tauri-action@v0

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: "edge"
releaseName: 'Lodestone v__VERSION__'
releaseBody: 'This is a prerelease version of Lodestone. Please report any bugs you find.'
releaseDraft: true
prerelease: true

# on windows, cache installer in src-tauri/target/release/bundle/msi/Lodestone*.msi
# on windows cache exe in src-tauri/target/release/Lodestone.exe
# on linux, cache deb in src-tauri/target/release/bundle/deb/lodestone*.deb
Expand All @@ -63,4 +72,5 @@ jobs:
./src-tauri/target/release/Lodestone.exe
./src-tauri/target/release/bundle/deb/lodestone*.deb
./src-tauri/target/release/bundle/appimage/lodestone*.AppImage

./src-tauri/target/release/
# ./src-tauri/target/release/ is a bit vague but we'll figure it out later
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Lodestone wouldn't be here if it weren't for our contributors. Check out our [te

## Support Us

We strive to make Lodestone open source and free for everyone to use. If you like what we are making please consider [buying us a coffee](https://www.buymeacoffee.com/lodestoneteam) to support our development.
We strive to make Lodestone open source and free for everyone to use. If you like what we are making please consider [buying us a coffee](https://ko-fi.com/lodestone_team) to support our development.

## Have questions?

Expand Down
6 changes: 3 additions & 3 deletions src/pages/login/CoreConnect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,20 @@ const CoreConnect = () => {
rel="noreferrer"
className="text-blue-200 underline hover:text-blue-300"
>
Learn more
Learn more.
</a>
</h2>
</div>
<WarningAlert>
<p>
You may need to adjust your network and browser settings. Learn more{' '}
You may need to adjust your network and browser settings.{' '}
<a
href="https://github.com/Lodestone-Team/lodestone/wiki/Known-Issues#network-errors"
target="_blank"
rel="noreferrer"
className="text-blue-200 underline hover:text-blue-300"
>
here.
Learn more.
</a>
</p>
</WarningAlert>
Expand Down