From d28ce9368d5f46d4b0dc8f17f983c63e44938de0 Mon Sep 17 00:00:00 2001 From: Joao Victor Sena Date: Thu, 30 Jul 2026 19:44:43 -0300 Subject: [PATCH 1/2] fix: update changelog --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index adfa9bf..cdf7584 100644 --- a/.gitignore +++ b/.gitignore @@ -5,11 +5,13 @@ xcuserdata !src/**/build/ local.properties +output-metadata.json .idea .DS_Store captures .externalNativeBuild .cxx +.dm *.xcodeproj/* !*.xcodeproj/project.pbxproj !*.xcodeproj/xcshareddata/ @@ -17,3 +19,14 @@ captures !*.xcworkspace/contents.xcworkspacedata **/xcshareddata/WorkspaceSettings.xcsettings node_modules/ + +# Android Studio generated files and folders +captures/ +.externalNativeBuild/ +.cxx/ +*.apk +output.json + +# Keystore files +*.jks +*.keystore From 8737ea88b17039f0ff5dca10ab2a65caff8fe94e Mon Sep 17 00:00:00 2001 From: Joao Victor Sena Date: Thu, 30 Jul 2026 19:51:21 -0300 Subject: [PATCH 2/2] fix: update changelog --- .gitignore | 80 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 62 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index cdf7584..13e74b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,32 +1,76 @@ -*.iml -.kotlin +# Gradle .gradle +.gradle/ +build/ **/build/ -xcuserdata !src/**/build/ +/gradle/gradle-daemon-jvm.properties + +# Kotlin +.kotlin +.kotlin_cache/ +kotlinc/ +kotlin-tooling-box/ + +# Local configuration (sdk path, secrets, etc) local.properties + +# Build outputs +# Scoped to module roots (e.g. composeApp/release/ from the signed-APK wizard) so it +# never shadows an Android variant source set such as composeApp/src/release/. +/*/release/ +*.apk +*.aab +*.dm +output.json output-metadata.json -.idea -.DS_Store -captures -.externalNativeBuild -.cxx -.dm -*.xcodeproj/* -!*.xcodeproj/project.pbxproj -!*.xcodeproj/xcshareddata/ -!*.xcodeproj/project.xcworkspace/ -!*.xcworkspace/contents.xcworkspacedata -**/xcshareddata/WorkspaceSettings.xcsettings -node_modules/ # Android Studio generated files and folders captures/ .externalNativeBuild/ .cxx/ -*.apk -output.json + +# Profiling +*.hprof # Keystore files *.jks *.keystore + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# IntelliJ / Android Studio +.idea +*.iml +*.iws +*.pid + +# Other editors +.vscode/ + +# Claude Code local (machine-specific) settings; .claude/commands/ stays tracked +.claude/settings.local.json + +# Xcode +xcuserdata +*.xcarchive +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcodeproj/xcshareddata/ +!*.xcodeproj/project.xcworkspace/ +!*.xcworkspace/contents.xcworkspacedata +**/xcshareddata/WorkspaceSettings.xcsettings + +# Test results +test-results/ +test-reports/ + +# Node +node_modules/ + +# Log / OS / temporary files +*.log +*.tmp +*.swp +.DS_Store