Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
357fb4c
feat: Top Navigation
XhrdTLS Nov 21, 2024
bdd4b53
Merge branch 'dev' into patch/style-remover-sombreado
Im-Fran Nov 22, 2024
4db7445
patch: merge desde dev
Im-Fran Nov 22, 2024
dff763b
Merge branch 'refs/heads/dev' into patch/style-remover-sombreado
Im-Fran Jul 23, 2025
2f4429c
feat: implement asignatura screen with horario and notas functionality
Im-Fran Jul 26, 2025
07682fc
Update lib/screens/asignaturas/detalle_asignatura/asignatura_screen.dart
Im-Fran Jul 26, 2025
915b922
Update lib/screens/notas/notas_screen.dart
Im-Fran Jul 26, 2025
0d79211
Update lib/screens/notas/notas_screen.dart
Im-Fran Jul 26, 2025
00e033c
Update lib/screens/profile/widgets/profile_settings.dart
Im-Fran Jul 26, 2025
9a43531
Update lib/screens/notas/notas_screen.dart
Im-Fran Jul 26, 2025
394dfc2
Update lib/screens/profile/widgets/profile_settings.dart
Im-Fran Jul 26, 2025
78fed21
feat: add feature flag support to bottom navigation items and app
Im-Fran Jul 26, 2025
92e952e
feat: integrate feature flags into profile settings
Im-Fran Jul 26, 2025
bf4e9b2
patch: usar otro nombre para la variable
Im-Fran Jul 26, 2025
f796f82
patch: cambio de nombre de variable para evitar `shadowing`
Im-Fran Jul 26, 2025
9776c7e
patch
Im-Fran Aug 11, 2025
3694733
Merge branch 'dev' into feat/asignatura-screen
Im-Fran Jan 4, 2026
d67045c
feat: add configuration files and update environment variables
Im-Fran Jan 4, 2026
259d03d
feat: add configuration files and update environment variables
Im-Fran Jan 4, 2026
21d0877
feat: update dependencies and remove deprecated configurations
Im-Fran Feb 11, 2026
a9807e5
feat: update application namespace and enhance login form with email …
Im-Fran Feb 11, 2026
c8d5355
feat: enhance theme handling and refactor bloque_ramo_card widget
Im-Fran Feb 11, 2026
21d6e54
feat: implement pastel color scheme and contrast text color for class…
Im-Fran Feb 11, 2026
3fec4df
feat: add Malla Histórica screen and related components for displayin…
Im-Fran Feb 11, 2026
57781af
feat: implement caching for Malla data retrieval and enhance UI compo…
Im-Fran Feb 12, 2026
3fa0dc7
patch: update depends
Im-Fran Feb 12, 2026
7d30104
feat: update deployment target to iOS 13 and refactor caching logic i…
Im-Fran Feb 12, 2026
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
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SIGA_ENDPOINT=https://siga.utem.cl
EXDEV_API_ENDPOINT=https://api.exdev.cl
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# MiUTEM
android/app/google-services.json
ios/Runner/GoogleService-Info.plist
.env*
!.env.example

# Miscellaneous
*.class
Expand Down
10 changes: 10 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/git_toolbox_prj.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

android {
namespace = "cl.exdev.miutem"
namespace = "cl.inndev.miutem"
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cambio de namespace de Android. Esto es una modificación de alto impacto (paquete/manifest, Play Store, deep links, etc.) y no está mencionada en la descripción del PR. Confirmar que es intencional y que el resto de la configuración (applicationId, google-services, intent-filters) se actualiza en consecuencia.

Copilot uses AI. Check for mistakes.
compileSdk = 34
ndkVersion = flutter.ndkVersion

Expand All @@ -24,7 +24,7 @@ android {

// AQUI SE TIENE QUE USAR LA CONFIGURACION DEL KEYSTORE QUE TIENE LA APP OFICIAL
defaultConfig {
applicationId = "cl.exdev.miutem"
applicationId = "cl.inndev.miutem"
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cambio de applicationId (nombre de paquete) es breaking para actualizaciones en Play Store y para cualquier integración que dependa del bundle id. No está mencionado en la descripción del PR; si es intencional, sería bueno documentar la razón y validar impactos (Firebase config, links, firmas, etc.).

Copilot uses AI. Check for mistakes.

minSdk = 23
targetSdk = 34
Expand Down
3 changes: 3 additions & 0 deletions devtools_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
description: This file stores settings for Dart & Flutter DevTools.
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
extensions:
2 changes: 1 addition & 1 deletion ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>12.0</string>
<string>13.0</string>
</dict>
</plist>
6 changes: 1 addition & 5 deletions ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '13.0'
platform :ios, '16.0'

Comment on lines 1 to 3
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Raising the iOS deployment target from 13.0 to 16.0 is a breaking operational change (drops support for older iOS versions). If this isn’t strictly required by the updated Firebase/Flutter plugins, consider keeping the previous minimum; otherwise, call this out explicitly in release notes/PR description and verify stakeholders agree.

Copilot uses AI. Check for mistakes.
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down Expand Up @@ -31,10 +31,6 @@ target 'Runner' do
use_frameworks!
use_modular_headers!

pod 'FirebaseFirestore',
:git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git',
:tag => '11.4.0'

flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
Expand Down
Loading