Skip to content

Commit 46b904b

Browse files
chore: Dependency updates and project cleanup (#39)
* chore: Update gradle to v8.13 * chore: Update Kotlin to v2.1.10 and Compose to v1.7.3 * chore: Update JNA to v5.16.0 * chore: Update Dokka to v2.0.0 * chore: Update Publish plugin to v0.30.0 * chore: Cleanup gradle configuration and scripts * chore: Update .gitignore, dokka configuration, and clean files
1 parent 02d220c commit 46b904b

File tree

89 files changed

+181
-6740
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+181
-6740
lines changed

.gitignore

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,43 @@
1-
# IDEA/Android Studio
2-
.idea/*
3-
!.idea/codeStyles
4-
*.iml
1+
#
2+
# Gradle
3+
#
54

6-
# Android Studio - Layout Inspector
7-
/captures
5+
.gradle/
6+
**/build/
7+
!**/src/**/build/
88

9-
# Local configuration file (sdk path, etc)
9+
# Local configuration file
1010
local.properties
1111

12-
# Gradle files
13-
.gradle/
14-
build/
12+
#
13+
# Kotlin
14+
#
15+
16+
.kotlin
17+
18+
#
19+
# IntelliJ
20+
#
21+
22+
**/.idea/*
23+
!**/.idea/codeStyles
24+
!**/.idea/copyright
25+
!**/.idea/dictionaries
26+
**/.idea/dictionaries/*
27+
!**/.idea/dictionaries/default_user.xml
28+
*.iml
29+
30+
#
31+
# CI
32+
#
33+
34+
# Mkdocs
35+
site/
36+
docs/api/
1537

16-
# NDK
17-
.externalNativeBuild/
18-
.cxx/
38+
#
39+
# Common
40+
#
1941

2042
# Mac files
21-
.DS_Store
43+
.DS_Store

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<br />
22

33
<div align="center">
4-
<img src="res/logo.png" alt="Logo"/>
4+
<img src="docs/images/logo.png" alt="Logo"/>
55
</div>
66

77
<h1 align="center" style="margin-top: 0;">Compose Window Styler</h1>
@@ -22,7 +22,7 @@ UI. This includes styling the window to use acrylic, mica ...etc.**
2222

2323
---
2424

25-
![Demo Screenshot](res/demo_preview.webp)
25+
![Demo Screenshot](docs/images/demo_preview.webp)
2626

2727
---
2828

build.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// This is necessary to avoid the plugins to be loaded multiple times in each subproject's classloader.
2-
// Suppress annotation is a workaround for a bug.
3-
@Suppress("DSL_SCOPE_VIOLATION")
41
plugins {
5-
alias(libs.plugins.kotlin.multiplatform) apply false
6-
alias(libs.plugins.compose) apply false
2+
alias(libs.plugins.kotlinMultiplatform) apply false
3+
alias(libs.plugins.composeMultiplatform) apply false
4+
alias(libs.plugins.composeCompiler) apply false
75

86
alias(libs.plugins.dokka) apply false
97
alias(libs.plugins.vanniktech.publish) apply false
@@ -13,6 +11,5 @@ subprojects {
1311
repositories {
1412
google()
1513
mavenCentral()
16-
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
1714
}
1815
}

docs/images/anchor-copy-button.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/images/arrow_down.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/images/copy-icon.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/images/copy-successful-icon.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/images/footer-go-to-link.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/images/go-to-top-icon.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)