-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Decompollaborate/develop
2.3.6
- Loading branch information
Showing
15 changed files
with
205,550 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Feature suggestion | ||
description: Suggest a new feature | ||
title: "[Suggestion]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for suggesting a new feature! | ||
- type: textarea | ||
id: the-feature | ||
attributes: | ||
label: Explain the feature | ||
description: What does this new feature do? How it would be done? | ||
placeholder: | | ||
- Print capybara ascii art on each run | ||
- Introduce achievements | ||
- Play the Oof sound on errors | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: advantage | ||
attributes: | ||
label: Advantage | ||
description: What are the pros of this new feature? | ||
placeholder: | | ||
- XYZ is a common case. | ||
- The parsing would be more correct because... | ||
- Would fix Windows builds. | ||
- type: textarea | ||
id: disadvantage | ||
attributes: | ||
label: Disadvantage | ||
description: What could be any drawback of the new feature? | ||
placeholder: | | ||
- Slower runtime. | ||
- Harder to debug. | ||
- Would fix Windows builds. | ||
- type: textarea | ||
id: example | ||
attributes: | ||
label: Example(s) | ||
description: Include examples on how this feature would look like or related info | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Frug Report | ||
description: File a frug report | ||
title: "[Frug]: " | ||
labels: ["frug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for filing a frug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Explain the problem. | ||
description: What happened? What did you expect to happen? | ||
placeholder: What went wrong? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproducer | ||
attributes: | ||
label: Reproducer | ||
description: Please provide instructions to reproduce the problem. | ||
placeholder: | | ||
Use the following file (attach it please) and run IJK with parameters ABC. | ||
Clone the repo github.com/example/example and do XYZ | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: mapfile_parser-flavour | ||
attributes: | ||
label: mapfile_parser flavour | ||
description: Which flavour of mapfile_parser were you using? | ||
placeholder: | | ||
- The Python cli? | ||
- As a Python library? | ||
- As a Rust library? | ||
- Etc | ||
validations: | ||
required: true | ||
- type: input | ||
id: mapfile_parser-version | ||
attributes: | ||
label: mapfile_parser version | ||
description: What version of mapfile_parser are you running? (i.e. `python3 -m mapfile_parser --version`) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: other-version | ||
attributes: | ||
label: "Optional: Version of other stuff" | ||
description: Here you can put the version of whatever other software you think may be relevant, like Rust, rabbitizer, binutils, OS, etc. | ||
placeholder: | | ||
- Python: 4.18 | ||
- Rust: 72.½ | ||
- binutils: 2.π | ||
- Wine on WSL2 on Windows 11 on VirtualBox on OpenBSD on Minecraft command blocks. | ||
- Etc | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "mapfile_parser" | ||
version = "2.3.5" | ||
version = "2.3.6" | ||
edition = "2021" | ||
authors = ["Anghelo Carvajal <[email protected]>"] | ||
description = "Map file parser library focusing decompilation projects" | ||
|
@@ -23,7 +23,7 @@ crate-type = ["cdylib", "staticlib", "rlib"] | |
|
||
[dependencies] | ||
regex = "1.10.2" | ||
pyo3 = { version = "0.20.0", optional = true } | ||
pyo3 = { version = "0.20.0", optional = true, features = ["abi3", "abi3-py37"]} | ||
lazy_static = "1.4.0" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.