Skip to content

Commit

Permalink
Update CHANGELOG and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
theGEBIRGE committed Oct 26, 2024
1 parent 868aa9c commit 7ecb4da
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Security

## [1.1.0] - 2024-10-17
## [1.2.0] - 2024-10-26

### Added
- "Frontend" for Wasm build

### Changed
- Split project into library and binary
- Produces a Zip file rather than writing to an output directory directly

## [1.1.0] - 2024-10-17

### Added
- Support for ELF files
- Support for PE files

## [1.0.0] - 2024-10-15

### Added

- Support for Macho-O files
- Support for every `Deno compile` iteration
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "DenoDig"
version = "1.1.0"
version = "1.2.0"
edition = "2021"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion deno-dig-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno-dig-lib" # 🦖-🍆-🫦
version = "0.1.0"
version = "1.2.0"
edition = "2021"

[lib]
Expand Down
8 changes: 4 additions & 4 deletions deno-dig-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
// let temp_dir = tempdir().unwrap();
// let temp_path = temp_dir.path();
//
// let binary_data = read("/Users/fli/Git/DenoDig/test/hello-v1.6.exe").expect("[!] Failed to open input file");
// let binary_data = read("").expect("[!] Failed to open input file");
//
// process_binary_file(
// binary_data,
Expand All @@ -477,7 +477,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
// let temp_path = temp_dir.path();
//
// process_binary_file(
// Path::new("/Users/fli/Git/DenoDig/test/hello-v1.7.exe"),
// Path::new(""),
// temp_path,
// )
// .await
Expand All @@ -497,7 +497,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
// let temp_path = temp_dir.path();
//
// process_binary_file(
// Path::new("/Users/fli/Git/DenoDig/test/telecraft_deno_1.44"),
// Path::new(""),
// temp_path,
// )
// .await
Expand All @@ -517,7 +517,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
// let temp_path = temp_dir.path();
//
// process_binary_file(
// Path::new("/Users/fli/Git/DenoDig/test/telecraft_deno_1.46"),
// Path::new(""),
// temp_path,
// )
// .await
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::time::Instant;
#[derive(Parser, Debug)]
#[command(
name = "Deno Dig",
version = "1.1.0",
version = "1.2.0",
author = "Frederic Linn",
about = "A tool for excavating application code and npm packages from stand-alone Deno binaries "
)]
Expand Down
5 changes: 2 additions & 3 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
display: flex;
justify-content: center;
flex-direction: column;
overflow: none;
align-items: center;
height: 100vh;
margin: 0;
Expand All @@ -21,8 +20,8 @@
outline: 4px dashed deeppink;
padding: 20px;
margin: 20px;
width: 80vw; /* Changed to vw for better scaling on smaller devices */
max-width: 600px; /* Limit max width */
width: 80vw;
max-width: 600px;
height: 50vh;
max-height: 400px;
display: flex;
Expand Down

0 comments on commit 7ecb4da

Please # to comment.