Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Dec 10, 2023
1 parent 37cbb2f commit cbada86
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
appimage-builder --recipe AppImageBuilder.yml --skip-test
- name: Copy nessessary files
run: |
cp images/logo.svg build/linux/x64/release/bundle/dev.linwood.qeck.svg
cp assets/images/logo.svg build/linux/x64/release/bundle/dev.linwood.qeck.svg
mkdir -p build/linux/x64/release/bundle/usr/share
cp -r linux/debian/usr/share build/linux/x64/release/bundle/usr
- name: Rename AppImage
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
flutter build linux -v --release --dart-define=flavor=production
- name: Copy nessessary files
run: |
cp images/logo.svg build/linux/x64/release/bundle/dev.linwood.qeck.svg
cp assets/images/logo.svg build/linux/x64/release/bundle/dev.linwood.qeck.svg
mkdir -p build/linux/x64/release/bundle/usr/share
cp -r linux/debian/usr/share build/linux/x64/release/bundle/usr
- name: Compress Flutter build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Install dependencies
run: |
flutter pub get
- name: Build files
if: matrix.projects == 'app'
run: |
dart run build_runner build --delete-conflicting-outputs
# Uncomment this step to verify the use of 'dart format' on each commit.
- name: Verify formatting
Expand Down
10 changes: 6 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

There are many ways to contribute to this project.
Thanks to everyone who has contributed!
If you have any questions, please contact me at <contact@linwood.dev>.
If you have any questions, please contact me at [contact@linwood.dev](mailto:contact@linwood.dev).

There is a matrix server for this project [here](https://linwood.dev/matrix) and a discord server [here](https://discord.linwood.dev).

Expand All @@ -27,14 +27,14 @@ Read more about it [here](https://docs.qeck.linwood.dev/nightly).
Documentation is important for users to understand the program and its features.
The documentation is written in markdown, a simple markup language. It can be found in the `docs` folder.

To start, please install yarn (<https://yarnpkg.com/getting-started/install>).
To start, please install [pnpm](https://pnpm.io/installation).

Get started by running:

```bash
cd docs
yarn install
yarn start
pnpm install
pnpm start
```

All stable documentation can be found in the `versioned_docs` folder.
Expand All @@ -57,6 +57,8 @@ Please install the dependencies first:
- libsecret-1-dev
- libjsoncpp-dev

On windows, please install visual studio build tools (or visual studio) and all flutter dependencies. Additionally install the atl library.

To get started, run:

```bash
Expand Down
2 changes: 1 addition & 1 deletion app/lib/pages/settings/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class _SettingsPageState extends State<SettingsPage> {
child: SizedBox(
height: 50,
child: SvgPicture.asset(
'images/powered-by-vercel.svg',
'assets/images/powered-by-vercel.svg',
placeholderBuilder: (BuildContext
context) =>
Container(
Expand Down
6 changes: 3 additions & 3 deletions docs/community/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Welcome to the community section.

A special thanks goes to:

* <https://github.com/flutter/flutter> for providing this useful crossplatform ui framework
* <https://github.com/leanflutter/window_manager> for all this useful desktop window features
* <https://github.com/facebook/docusaurus> for an easy-to-use static react documentation framework
* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework
* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features
* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework

All other licenses can you found in the settings.

Expand Down

1 comment on commit cbada86

@vercel
Copy link

@vercel vercel bot commented on cbada86 Dec 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

qeck – ./app

qeck.vercel.app
qeck-git-develop-linwood.vercel.app
qeck.linwood.dev
qeck-linwood.vercel.app

Please sign in to comment.