From de7acfe31c4d06dd164a0152d1acdd5d4bc3a004 Mon Sep 17 00:00:00 2001 From: choreo development Date: Mon, 23 Sep 2024 13:48:09 -0400 Subject: [PATCH 1/3] changed wording from student --> user --- assets/l10n/intl_en.arb | 10 +++++----- .../choreographer/controllers/igc_controller.dart | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/l10n/intl_en.arb b/assets/l10n/intl_en.arb index 6312008d6..1a103e255 100644 --- a/assets/l10n/intl_en.arb +++ b/assets/l10n/intl_en.arb @@ -2619,15 +2619,15 @@ "type": "text", "placeholders": {} }, - "addStudents": "Add students", + "addStudents": "Add users", "@addStudents": { "type": "text", "placeholders": {} }, "copyClassLink": "Copy invite link", - "copyClassLinkDesc": "Clicking this link will take students to the app, direct them to make an account and they will automatically join this space.", + "copyClassLinkDesc": "Clicking this link will take users to the app, direct them to make an account and they will automatically join this space.", "copyClassCode": "Copy invite code", - "inviteStudentByUserName": "Invite student by username", + "inviteStudentByUserName": "Invite users by username", "@inviteStudentByUserName": { "type": "text", "placeholders": {} @@ -3196,7 +3196,7 @@ "inviteAllStudents": "Invite All Students", "inviteAllStudentsConfirmation": "Are you sure you want to invite all students?", "inviteStudentsFromOtherClasses": "Invite students from other spaces", - "inviteUsersFromPangea": "Add teachers", + "inviteUsersFromPangea": "Add admins", "redeemPromoCode": "Redeem Promo Code", "enterPromoCode": "Enter Promo Code", "downloadTxtFile": "Download Text File", @@ -3654,7 +3654,7 @@ "pay": "Pay", "allPrivateChats": "Direct chats", "unknownPrivateChat": "Unknown private chat", - "copyClassCodeDesc": "Students who are already in the app can 'Join space' via the main menu.", + "copyClassCodeDesc": "Users who are already in the app can 'Join space' via the main menu.", "addToSpaceDesc": "Adding a chat to a space will make the chat appear within the space for students and give them access.", "@addToSpaceDesc": { "placeholders": { diff --git a/lib/pangea/choreographer/controllers/igc_controller.dart b/lib/pangea/choreographer/controllers/igc_controller.dart index aae7104d4..08173ac41 100644 --- a/lib/pangea/choreographer/controllers/igc_controller.dart +++ b/lib/pangea/choreographer/controllers/igc_controller.dart @@ -76,7 +76,7 @@ class IgcController { debugPrint("igc text ${igcTextData.toString()}"); } catch (err, stack) { - debugger(when: kDebugMode); + //debugger(when: kDebugMode); choreographer.errorService.setError( ChoreoError(type: ChoreoErrorType.unknown, raw: err), ); From e81c3fec0d793809e0545fa16e994fa519a4716e Mon Sep 17 00:00:00 2001 From: choreo development Date: Tue, 24 Sep 2024 10:11:40 -0400 Subject: [PATCH 2/3] adjusted audio message sizing to fit time --- lib/pages/chat/events/audio_player.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/chat/events/audio_player.dart b/lib/pages/chat/events/audio_player.dart index d848cb6cc..c8e1bf46f 100644 --- a/lib/pages/chat/events/audio_player.dart +++ b/lib/pages/chat/events/audio_player.dart @@ -393,7 +393,7 @@ class AudioPlayerState extends State { const SizedBox(width: 5), // Pangea# SizedBox( - width: 36, + width: 40, //was 36 before child: Text( statusText, style: TextStyle( From 48b8b5caa311b16769e555de0109689893bb61aa Mon Sep 17 00:00:00 2001 From: ggurdin Date: Tue, 8 Oct 2024 15:23:45 -0400 Subject: [PATCH 3/3] uncommented debugged statement --- lib/pages/chat/events/audio_player.dart | 2 +- lib/pangea/choreographer/controllers/igc_controller.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat/events/audio_player.dart b/lib/pages/chat/events/audio_player.dart index c8e1bf46f..d848cb6cc 100644 --- a/lib/pages/chat/events/audio_player.dart +++ b/lib/pages/chat/events/audio_player.dart @@ -393,7 +393,7 @@ class AudioPlayerState extends State { const SizedBox(width: 5), // Pangea# SizedBox( - width: 40, //was 36 before + width: 36, child: Text( statusText, style: TextStyle( diff --git a/lib/pangea/choreographer/controllers/igc_controller.dart b/lib/pangea/choreographer/controllers/igc_controller.dart index c42a1a442..4beea095f 100644 --- a/lib/pangea/choreographer/controllers/igc_controller.dart +++ b/lib/pangea/choreographer/controllers/igc_controller.dart @@ -76,7 +76,7 @@ class IgcController { debugPrint("igc text ${igcTextData.toString()}"); } catch (err, stack) { - //debugger(when: kDebugMode); + debugger(when: kDebugMode); choreographer.errorService.setError( ChoreoError(type: ChoreoErrorType.unknown, raw: err), );