Skip to content

Commit c7f9c37

Browse files
committed
Bump version to 1.0.0
1 parent 4cc6527 commit c7f9c37

File tree

5 files changed

+108
-201
lines changed

5 files changed

+108
-201
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ env:
88
CARGO_TERM_COLOR: always
99

1010
jobs:
11-
build-cross-linux:
11+
build-linux:
1212
runs-on: ubuntu-latest
1313
env:
1414
RUST_BACKTRACE: full
1515
steps:
1616
- uses: actions/checkout@v2
17+
1718
- name: Install Rust
1819
uses: actions-rs/toolchain@v1
1920
with:
@@ -22,28 +23,32 @@ jobs:
2223
toolchain: stable
2324
default: true
2425
override: true
26+
27+
- name: Install cross
28+
run: cargo install cross
29+
2530
- name: Build x86_64-unknown-linux-musl
2631
timeout-minutes: 120
2732
working-directory: ./windiff_cli
2833
run: |
29-
cargo build --release --target x86_64-unknown-linux-musl &&
34+
cross build --release --target x86_64-unknown-linux-musl &&
3035
mv target/x86_64-unknown-linux-musl/release/windiff_cli target/x86_64-unknown-linux-musl/release/windiff_cli-x86_64-unknown-linux-musl
3136
3237
- name: Upload Github Assets
3338
uses: softprops/action-gh-release@v1
3439
env:
3540
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
working-directory: ./windiff_cli
3741
with:
3842
files: |
39-
target/x86_64-unknown-linux-musl/release/windiff_cli-x86_64-unknown-linux-musl
43+
windiff_cli/target/x86_64-unknown-linux-musl/release/windiff_cli-x86_64-unknown-linux-musl
4044
4145
build-windows:
4246
runs-on: windows-latest
4347
env:
4448
RUST_BACKTRACE: full
4549
steps:
4650
- uses: actions/checkout@v2
51+
4752
- name: Install Rust
4853
uses: actions-rs/toolchain@v1
4954
with:
@@ -52,6 +57,7 @@ jobs:
5257
toolchain: stable
5358
default: true
5459
override: true
60+
5561
- name: Build release
5662
shell: bash
5763
working-directory: ./windiff_cli
@@ -63,7 +69,6 @@ jobs:
6369
uses: softprops/action-gh-release@v1
6470
env:
6571
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66-
working-directory: ./windiff_cli
6772
with:
6873
files: |
69-
target/x86_64-pc-windows-msvc/release/windiff_cli-x86_64-pc-windows-msvc.exe
74+
windiff_cli/target/x86_64-pc-windows-msvc/release/windiff_cli-x86_64-pc-windows-msvc.exe

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,18 @@ allows browsing information extracted from official Microsoft PEs and PDBs for
3131
certain versions of Microsoft Windows and also allows comparing this information
3232
between versions. The frontend's code is in the `windiff_frontend` directory.
3333

34-
A scheduled GitHub action fetches new updates from Winbindex every day and
34+
A scheduled GitHub action fetches new updates from `Winbindex` every day and
3535
updates the configuration file used to generate the live version of WinDiff.
3636
Currently, because of (free plans) storage and compute limitations, **only KB**
3737
**updates less than one year old are kept** for the live version. You can of
3838
course rebuild a local version of WinDiff yourself, without those limitations if
3939
you need to. See the next section for that.
4040

41+
Note: `Winbindex` doesn't provide unique download links for 100% of the indexed
42+
files, so it might happen that some PEs' information are unavailable in WinDiff
43+
because of that. However, as soon as these PEs are on VirusTotal, these will be
44+
integrated into WinDiff automatically.
45+
4146
## How to Build
4247

4348
### Prerequisites

0 commit comments

Comments
 (0)