Projects STRLCPY jadx Commits 5d186e56
🤬
  • ■ ■ ■ ■ ■ ■
    build.gradle
    skipped 25 lines
    26 26   }
    27 27   
    28 28   dependencies {
    29  - implementation 'org.slf4j:slf4j-api:2.0.5'
     29 + implementation 'org.slf4j:slf4j-api:2.0.6'
    30 30   compileOnly 'org.jetbrains:annotations:23.1.0'
    31 31   
    32 32   testImplementation 'ch.qos.logback:logback-classic:1.3.5'
    33 33   testImplementation 'org.hamcrest:hamcrest-library:2.2'
    34  - testImplementation 'org.mockito:mockito-core:4.9.0'
     34 + testImplementation 'org.mockito:mockito-core:4.10.0'
    35 35   testImplementation 'org.assertj:assertj-core:3.23.1'
    36 36   
    37 37   testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
    skipped 124 lines
  • ■ ■ ■ ■
    jadx-core/build.gradle
    skipped 8 lines
    9 9   
    10 10   // TODO: move resources decoding to separate plugin module
    11 11   implementation 'com.android.tools.build:aapt2-proto:7.3.1-8691043'
    12  - implementation 'com.google.protobuf:protobuf-java:3.21.11' // forcing latest version
     12 + implementation 'com.google.protobuf:protobuf-java:3.21.12' // forcing latest version
    13 13   
    14 14   testImplementation 'org.apache.commons:commons-lang3:3.12.0'
    15 15   
    skipped 14 lines
  • ■ ■ ■ ■ ■ ■
    jadx-gui/build.gradle
    skipped 1 lines
    2 2   id 'application'
    3 3   id 'edu.sc.seis.launch4j' version '2.5.4'
    4 4   id 'com.github.johnrengelman.shadow' version '7.1.2'
    5  - id 'org.beryx.runtime' version '1.12.7'
     5 + id 'org.beryx.runtime' version '1.13.0'
    6 6  }
    7 7   
    8 8  dependencies {
    skipped 2 lines
    11 11   implementation 'com.beust:jcommander:1.82'
    12 12   implementation 'ch.qos.logback:logback-classic:1.3.5'
    13 13   
    14  - implementation 'com.fifesoft:rsyntaxtextarea:3.3.0'
     14 + implementation 'com.fifesoft:rsyntaxtextarea:3.3.1'
    15 15   implementation files('libs/jfontchooser-1.0.5.jar')
    16 16   implementation 'hu.kazocsaba:image-viewer:1.2.3'
    17 17   
    18  - implementation 'com.formdev:flatlaf:2.6'
    19  - implementation 'com.formdev:flatlaf-intellij-themes:2.6'
    20  - implementation 'com.formdev:flatlaf-extras:2.6'
     18 + implementation 'com.formdev:flatlaf:3.0'
     19 + implementation 'com.formdev:flatlaf-intellij-themes:3.0'
     20 + implementation 'com.formdev:flatlaf-extras:3.0'
    21 21   implementation 'com.formdev:svgSalamander:1.1.4'
    22 22   
    23 23   implementation 'com.google.code.gson:gson:2.10'
    skipped 124 lines
  • ■ ■ ■ ■ ■ ■
    jadx-gui/src/main/java/jadx/gui/utils/LafManager.java
    skipped 14 lines
    15 15  import com.formdev.flatlaf.FlatLightLaf;
    16 16  import com.formdev.flatlaf.extras.FlatAnimatedLafChange;
    17 17  import com.formdev.flatlaf.intellijthemes.FlatAllIJThemes;
     18 +import com.formdev.flatlaf.themes.FlatMacDarkLaf;
     19 +import com.formdev.flatlaf.themes.FlatMacLightLaf;
    18 20   
    19 21  import jadx.gui.settings.JadxSettings;
    20 22   
    skipped 47 lines
    68 70   // default flatlaf themes
    69 71   map.put(FlatLightLaf.NAME, FlatLightLaf.class.getName());
    70 72   map.put(FlatDarkLaf.NAME, FlatDarkLaf.class.getName());
     73 + map.put(FlatMacLightLaf.NAME, FlatMacLightLaf.class.getName());
     74 + map.put(FlatMacDarkLaf.NAME, FlatMacDarkLaf.class.getName());
    71 75   map.put(FlatIntelliJLaf.NAME, FlatIntelliJLaf.class.getName());
    72 76   map.put(FlatDarculaLaf.NAME, FlatDarculaLaf.class.getName());
    73 77   
    skipped 19 lines
Please wait...
Page is in error, reload to recover