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

💚 refactor(ci): unify build workflows and add matrix strategy for OS and toolchain #2

Merged
merged 3 commits into from
Oct 28, 2024
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
19 changes: 0 additions & 19 deletions .github/dependabot.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/build.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Continuous Integration bytesto4t

on:
push:
branches:
- master
pull_request: {}

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
toolchain: [dev, nightly, 1.72.0]
bun-version: [latest, canary]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true

- name: Build Rust project
run: cargo build

# https://bun.sh/guides/runtime/cicd

- name: Install Tauri CLI
run: bun install -g @tauri-apps/cli
with:
bun-version: ${{ matrix.bun-version }}

- name: Install dependencies
run: bun install
with:
bun-version: ${{ matrix.bun-version }}

- name: Build Svelte app
run: bun run build
with:
bun-version: ${{ matrix.bun-version }}

- name: Build Tauri app
run: bun run tauri build
with:
bun-version: ${{ matrix.bun-version }}
25 changes: 1 addition & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,7 @@
# hl-rev
[Hashlink](https://github.com/HaxeFoundation/hashlink) reversing tools.
Hashlink reversing tools.

Repository contains:
- bytesto4t - GUI app based on [hlbc](https://github.com/Gui-Yom/hlbc)
- HLBOOT.DAT.bt - template file for [010 Editor](https://www.sweetscape.com/010editor/)

# ByteSto4t
Simple application that allows you to see internals of `hlboot.dat` file.

<div style="display: flex; justify-content: space-around;">
<img src="docs/images/bytesto4t_1.png" alt="ByteSto4t Screenshot1" width="45%">
<img src="docs/images/bytesto4t_2.png" alt="ByteSto4t Screenshot2" width="45%">
</div>


# Planned

## General

- [ImHex](https://github.com/WerWolv/ImHex) `hlboot.dat` pattern
- [Cheat Engine](https://www.cheatengine.org/) script that allows you to export all jit-compiled functions

## ByteSto4t

- Hex View
- History View
- X-references
- Zoom (increase/decrease size of UI elements)
- Better Inspector View
2 changes: 1 addition & 1 deletion bytesto4t/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@tauri-apps/cli": "^2.0.2",
"autoprefixer": "^10.4.20",
"svelte": "^5.1.1",
"svelte-check": "^4.0.5",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.13",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
Expand Down
Binary file modified bytesto4t/src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square107x107Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square142x142Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square150x150Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square284x284Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square30x30Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square310x310Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square44x44Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square71x71Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/Square89x89Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified bytesto4t/src-tauri/icons/StoreLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file modified bytesto4t/src-tauri/icons/icon.icns
Binary file not shown.
Binary file modified bytesto4t/src-tauri/icons/icon.ico
Binary file not shown.
Binary file modified bytesto4t/src-tauri/icons/icon.png
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file removed bytesto4t/src-tauri/icons/ios/[email protected]
Diff not rendered.
Binary file added bytesto4t/static/assets/logo2.png
Binary file removed docs/images/bytesto4t_1.png
Diff not rendered.
Binary file removed docs/images/bytesto4t_2.png
Diff not rendered.