Skip to content

Commit 7ecb4da

Browse files
committed
Update CHANGELOG and bump version
1 parent 868aa9c commit 7ecb4da

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Removed
1313
### Security
1414

15-
## [1.1.0] - 2024-10-17
15+
## [1.2.0] - 2024-10-26
1616

1717
### Added
18+
- "Frontend" for Wasm build
19+
20+
### Changed
21+
- Split project into library and binary
22+
- Produces a Zip file rather than writing to an output directory directly
23+
24+
## [1.1.0] - 2024-10-17
1825

26+
### Added
1927
- Support for ELF files
2028
- Support for PE files
2129

2230
## [1.0.0] - 2024-10-15
2331

2432
### Added
25-
2633
- Support for Macho-O files
2734
- Support for every `Deno compile` iteration

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "DenoDig"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55

66
[workspace]

deno-dig-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno-dig-lib" # 🦖-🍆-🫦
3-
version = "0.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55

66
[lib]

deno-dig-lib/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
457457
// let temp_dir = tempdir().unwrap();
458458
// let temp_path = temp_dir.path();
459459
//
460-
// let binary_data = read("/Users/fli/Git/DenoDig/test/hello-v1.6.exe").expect("[!] Failed to open input file");
460+
// let binary_data = read("").expect("[!] Failed to open input file");
461461
//
462462
// process_binary_file(
463463
// binary_data,
@@ -477,7 +477,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
477477
// let temp_path = temp_dir.path();
478478
//
479479
// process_binary_file(
480-
// Path::new("/Users/fli/Git/DenoDig/test/hello-v1.7.exe"),
480+
// Path::new(""),
481481
// temp_path,
482482
// )
483483
// .await
@@ -497,7 +497,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
497497
// let temp_path = temp_dir.path();
498498
//
499499
// process_binary_file(
500-
// Path::new("/Users/fli/Git/DenoDig/test/telecraft_deno_1.44"),
500+
// Path::new(""),
501501
// temp_path,
502502
// )
503503
// .await
@@ -517,7 +517,7 @@ fn check_version(binary_data: &[u8], offset: usize) -> bool {
517517
// let temp_path = temp_dir.path();
518518
//
519519
// process_binary_file(
520-
// Path::new("/Users/fli/Git/DenoDig/test/telecraft_deno_1.46"),
520+
// Path::new(""),
521521
// temp_path,
522522
// )
523523
// .await

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::time::Instant;
1010
#[derive(Parser, Debug)]
1111
#[command(
1212
name = "Deno Dig",
13-
version = "1.1.0",
13+
version = "1.2.0",
1414
author = "Frederic Linn",
1515
about = "A tool for excavating application code and npm packages from stand-alone Deno binaries "
1616
)]

web/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
display: flex;
1010
justify-content: center;
1111
flex-direction: column;
12-
overflow: none;
1312
align-items: center;
1413
height: 100vh;
1514
margin: 0;
@@ -21,8 +20,8 @@
2120
outline: 4px dashed deeppink;
2221
padding: 20px;
2322
margin: 20px;
24-
width: 80vw; /* Changed to vw for better scaling on smaller devices */
25-
max-width: 600px; /* Limit max width */
23+
width: 80vw;
24+
max-width: 600px;
2625
height: 50vh;
2726
max-height: 400px;
2827
display: flex;

0 commit comments

Comments
 (0)