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

bibibo #10

Closed
wants to merge 8 commits into from
Closed
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
53 changes: 53 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
name: Gradle Automation Build
runs-on: ubuntu-latest
strategy:
matrix:
java: [17]
steps:
-
uses: actions/checkout@v2
-
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}

# add cache to improve workflow execution time
-
name: Cache .gradle/caches
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
-
name: Cache .gradle/wrapper
uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-wrapper-
-
name: Grant execute permission for gradlew
run: chmod +x gradlew
-
name: Build with Gradle
run: ./gradlew clean build -s
-
name: Upload Jar
uses: actions/upload-artifact@v2
with:
name: Bruhfuscator
path: build/libs/*.jar
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# [Download latest build](https://github.com/erxson/Bruhfuscator/actions)

# [Ambien](https://github.com/iiiiiiiris/Ambien)

# Features
Expand Down Expand Up @@ -31,7 +33,7 @@
* Run obfuscator `java -jar bruhfuscator-1.5.0.jar -cfg settings.json` (maybe it's better to add `--add-opens java.base/java.util.zip=ALL-UNNAMED` arg)

**Before using:**
* Bruhfuscator MUST be ran with Java 8+
* Bruhfuscator MUST be ran with Java 17+
* Ambien should not be used alongside or with other obfuscators (you sure, iiiiris???)

Run the jar using the `--create-config` argument to create a base config
Expand All @@ -41,4 +43,4 @@ Then run the Ambien jar using the `-config` argument (including the path to your
###### To see all the arguments Ambien offers, you can use the '-help' argument


###### нумчик нумасик бро бра, я не знаю джаву, не воспринимай всерьез эту помойку
###### нумчик нумасик бро бра, я не знаю джаву, не воспринимай всерьез эту помойку
4 changes: 2 additions & 2 deletions src/main/java/me/iris/ambien/obfuscator/Ambien.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public class Ambien {
public void initializeTransformers(boolean ignoreVersionCheck) {
// Check for new version
LOGGER.info("Ambien | {}", VERSION);
if (!ignoreVersionCheck)
checkVersion();
// if (!ignoreVersionCheck)
// checkVersion();

// Initialize transformers
LOGGER.info("Initializing transformer manager...");
Expand Down
Loading