Compare commits

..

26 Commits
dev ... doc

Author SHA1 Message Date
367eab77e4 Update
All checks were successful
/ mirror (push) Successful in 4s
2024-12-20 12:30:05 +02:00
8f298bf57c Restore Pitch.md, cleaned useless pdf, scoped build.sh
All checks were successful
/ mirror (push) Successful in 5s
2024-12-20 11:42:57 +02:00
312b832932 Reomve /pitch
Some checks failed
/ mirror (push) Failing after 52s
2024-12-20 09:34:06 +00:00
9fa8a83dba Add User Manual starter 2024-12-20 09:34:06 +00:00
d86bba95a5 Started GlobalDoc 2024-12-20 09:34:06 +00:00
f3416a6d80 Add pitch build.sh 2024-12-20 09:34:06 +00:00
bac9c951fe Pitch v0.5 2024-12-20 09:34:06 +00:00
c21cfda2c0 Add pitch 2024-12-20 09:34:06 +00:00
014d53652e feat: home page 2024-12-20 09:34:06 +00:00
5bec26593a feat: project description 2024-12-20 09:34:06 +00:00
4b047f2725 fix: invalid BASE_URL 2024-12-20 09:34:06 +00:00
33f9f44fbf fix(website): .env path 2024-12-20 09:34:06 +00:00
23d4ad4d61 fix: k8sdeploy workdir 2024-12-20 09:34:06 +00:00
dd4384747b force deploy 2024-12-20 09:34:06 +00:00
148a1727d1 test 2024-12-20 09:34:06 +00:00
3a8885e6bf force CICD 2024-12-20 09:34:06 +00:00
5e10f308a6 fix: invalid image name 2024-12-20 09:34:06 +00:00
eff830f1db fix push 2024-12-20 09:34:06 +00:00
bbe01a2d68 ! 2024-12-20 09:34:06 +00:00
c97ba9c307 test 2024-12-20 09:34:06 +00:00
981f876f45 test 2024-12-20 09:34:06 +00:00
2a8ef7eb5d fix: action path 2024-12-20 09:34:06 +00:00
940aa9c8ff force action 2024-12-20 09:34:06 +00:00
1be0dffa3a fix: action wrong variable 2024-12-20 09:34:06 +00:00
344cd43ad1 fix: dockerfile path 2024-12-20 09:34:06 +00:00
f4f4533179 feat: website autodeploy scripts 2024-12-20 09:34:06 +00:00
6 changed files with 25 additions and 32 deletions

View File

@ -1,13 +0,0 @@
# Icing
An Epitech Innovation Project
*By*
**Bartosz Michalak - Alexis Danlos - Florian Griffon - Ange Duhayon - Stéphane Corbière**
---
The **docs** folder contains documentation about:
- The project
- A user manual
- Our automations

5
dialer/README.md Normal file
View File

@ -0,0 +1,5 @@
# ICING Dialer
Project aiming to <i>ice</i> your **non-internet** phone calls, thanks to a custom and super-cryptographic dialer app.
Like & Follow !

View File

@ -17,7 +17,7 @@ class SettingsPage extends StatelessWidget {
MaterialPageRoute(builder: (context) => const SettingsCallPage()), MaterialPageRoute(builder: (context) => const SettingsCallPage()),
); );
break; break;
case 'Sim settings': case 'Page of telephone accounts':
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => const SettingsAccountsPage()), MaterialPageRoute(builder: (context) => const SettingsAccountsPage()),
@ -54,7 +54,7 @@ class SettingsPage extends StatelessWidget {
return Scaffold( return Scaffold(
backgroundColor: Colors.black, backgroundColor: Colors.black,
appBar: AppBar( appBar: AppBar(
title: const Text('Settings'), title: const Text('settings'),
), ),
body: ListView.builder( body: ListView.builder(
itemCount: settingsOptions.length, itemCount: settingsOptions.length,

View File

@ -7,13 +7,13 @@ class SettingsAccountsPage extends StatelessWidget {
void _navigateToAccountOption(BuildContext context, String option) { void _navigateToAccountOption(BuildContext context, String option) {
switch (option) { switch (option) {
case 'Chose SIM card': case 'Choisir la SIM':
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => const ChooseSimPage()), MaterialPageRoute(builder: (context) => const ChooseSimPage()),
); );
break; break;
case 'SIM card parameters': case 'Paramètre SIM':
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => const SimParametersPage()), MaterialPageRoute(builder: (context) => const SimParametersPage()),
@ -27,14 +27,14 @@ class SettingsAccountsPage extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final accountOptions = [ final accountOptions = [
'Chose SIM card', 'Choisir la SIM',
'SIM card parameters', 'Paramètre SIM',
]; ];
return Scaffold( return Scaffold(
backgroundColor: Colors.black, backgroundColor: Colors.black,
appBar: AppBar( appBar: AppBar(
title: const Text('Sim settings'), title: const Text('Page des comptes téléphoniques'),
), ),
body: ListView.builder( body: ListView.builder(
itemCount: accountOptions.length, itemCount: accountOptions.length,

View File

@ -46,6 +46,19 @@ paginate: true
--- ---
## **EIP Icing**
### =
### **Icing protocol**
**+**
### **Implémentation client téléphonique**
### *(Dialer)*
---
## Un client téléphonique comme un autre ## Un client téléphonique comme un autre
--- ---
@ -71,18 +84,6 @@ paginate: true
--- ---
## **Icing Dialer**
### =
### **Icing protocol**
**+**
### **Dialer**
---
## Icing est un **outil**, pas un produit ## Icing est un **outil**, pas un produit
--- ---

Binary file not shown.