Skip to content

Commit

Permalink
chore: merge release-v0.1.6 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Aug 26, 2023
2 parents b83f248 + a826703 commit 95b1538
Show file tree
Hide file tree
Showing 8 changed files with 463 additions and 398 deletions.
13 changes: 3 additions & 10 deletions .github/release-body.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
### 2023-07-29
### 2023-08-26

### Chores
+ dependencies updated, [634c1ce759b298d7c71a9a6b37d85e7f3d5b9e92]
+ create_release 0.3.0, [36351229b1e88b26af531cad2b7f88e466e92bf3]

### Features
+ use try_get_item() method, [171dca81fe8f0bb646efcbc6c113372eee3a2516]
+ dependencies updated, [99dd3c8249e8a68686d9d7c99d2c8aafa0c60b32]

### Fixes
+ sqlx disable logging, [06a831f578d46d788066340aeffc788724069778]

### Refactors
+ single folder/files into src, [ba9b09195775fb1fcef3732c96272a26e7bd3562]
+ specific build targets, [5c9707f99931e68c78f89de485136557ec77d26f]


see <a href='https://www.github.com/mrjackwills/obliqoro/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# <a href='https://www.github.com/mrjackwills/obliqoro/releases/tag/v0.1.6'>v0.1.6</a>
### 2023-08-26

### Chores
+ dependencies updated, [99dd3c82](https://www.github.com/mrjackwills/obliqoro/commit/99dd3c8249e8a68686d9d7c99d2c8aafa0c60b32)

### Fixes
+ specific build targets, [5c9707f9](https://www.github.com/mrjackwills/obliqoro/commit/5c9707f99931e68c78f89de485136557ec77d26f)

# <a href='https://www.github.com/mrjackwills/obliqoro/releases/tag/v0.1.5'>v0.1.5</a>
### 2023-07-29

Expand Down
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,32 @@ sudo apt install libwebkit2gtk-4.0-dev \
libayatana-appindicator3-dev \
librsvg2-dev
```
### arm64 cross compliation

tauri.conf.json:
```json
"targets": ["deb", "msi", "app", "dmg", "updater"],
```

```shell
rustup target add aarch64-unknown-linux-gnu
sudo apt install gcc-aarch64-linux-gnu
```

nano ~/.cargo/config.toml
```toml
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
```

```shell
sudo dpkg --add-architecture arm64

sudo apt-get update && sudo apt-get upgrade -y

sudo apt install libwebkit2gtk-4.0-dev:arm64

export PKG_CONFIG_SYSROOT_DIR=/usr/aarch64-linux-gnu/

cargo tauri build --target aarch64-unknown-linux-gnu
```
Loading

0 comments on commit 95b1538

Please sign in to comment.