Difference between revisions of "Team P - OOP344 20133"
(→UGO) |
(→Tasks) |
||
(31 intermediate revisions by 3 users not shown) | |||
Line 32: | Line 32: | ||
|} | |} | ||
− | + | == IRC == | |
− | + | Channel on freenode : ##UGO | |
== Repository == | == Repository == | ||
Line 42: | Line 42: | ||
=== Master Branch Status === | === Master Branch Status === | ||
+ | * Open | ||
+ | <!-- | ||
* Merged by [mailto:emailid@learn.senecac.on.ca Yan Song], puerile : follow-up merging | * Merged by [mailto:emailid@learn.senecac.on.ca Yan Song], puerile : follow-up merging | ||
* Merged by [mailto:emailid@learn.senecac.on.ca Shreyas Patel], Dean_Winchester: initial setting up | * Merged by [mailto:emailid@learn.senecac.on.ca Shreyas Patel], Dean_Winchester: initial setting up | ||
+ | --> | ||
== Project Marking Percentage == | == Project Marking Percentage == | ||
− | + | ||
<big> | <big> | ||
− | Group work: | + | |
− | Individual work: | + | <u>Group work</u>: 50% |
+ | |||
+ | <u>Individual work</u>: 50% | ||
+ | |||
------------------------- | ------------------------- | ||
Total 100% | Total 100% | ||
+ | |||
</big> | </big> | ||
− | |||
− | |||
== Coding Style and Standards == | == Coding Style and Standards == | ||
Line 66: | Line 71: | ||
</syntaxhighlight></big> | </syntaxhighlight></big> | ||
+ | <!-- | ||
* Indent two spaces at a time. | * Indent two spaces at a time. | ||
+ | --> | ||
+ | * <u>'''For detailed coding style and standards we can reference cframe.h and cframe.cpp'''</u> Suggested by Ruojia--Oct.23 4:20PM | ||
<!-- | <!-- | ||
== Team Members == | == Team Members == | ||
Line 81: | Line 89: | ||
<!-- | <!-- | ||
|} --> | |} --> | ||
− | |||
− | |||
== Tasks == | == Tasks == | ||
Line 92: | Line 98: | ||
--> | --> | ||
− | === Release 0. | + | === V1.0 Task Assignment === |
+ | |||
+ | ; v1.0-1 : Yan, UI Prototyping and implementation; Browsing function. | ||
+ | ; v1.0-2 : ??? | ||
+ | ; v1.0-3 : ??? | ||
+ | |||
+ | === Release 0.4 Task Assignment === | ||
+ | <!-- | ||
+ | *R0.4.1: '''CButton''' | ||
− | + | *R0.4.2:''' CValEdit''' | |
+ | Ruojia Chen | ||
+ | In progress | ||
+ | *R0.4.3: '''CCheckMark''' | ||
− | ; r0. | + | *R0.4.4: '''CMenuItem''' |
+ | --> | ||
+ | ; r0.4-1 : Ruojia, CValEdit, Done | ||
+ | ; r0.4-2 : Yuzhi, CCheckMark, Done | ||
+ | ; r0.4-3 : Yan, CButton & CMenuItem, Done | ||
+ | |||
+ | === Release 0.3 Task Assignment === | ||
− | ; r0.3-3 : Shreyas and Yan, CDialog, | + | ; r0.3-1 : Ruojia, CLineEdit, Done |
+ | ; r0.3-2 : Yuzhi, CLabel, Done | ||
+ | ; r0.3-3 : Shreyas and Yan, CDialog, Done | ||
=== Release 0.2 Task Assignment === | === Release 0.2 Task Assignment === | ||
; r0.2-1 : Shreyas, initial testing and merging, done | ; r0.2-1 : Shreyas, initial testing and merging, done | ||
− | ; r0.2-2 : Rest of team, follow-up updating and merging, | + | ; r0.2-2 : Rest of team, follow-up updating and merging, Done |
== Meetings == | == Meetings == | ||
Line 111: | Line 136: | ||
=== Discussion === | === Discussion === | ||
− | * I need your help with warning guys i fixed one of them however, the warnings about conversion from 'int' to 'char', possible loss of data are because of (str[*strOffset+*curPosition] = key;)<-this line.I would appreciate is anyone can comes up with an idea to solve it. | + | ---- |
+ | ;Shreyas: | ||
+ | * I need your help with warning guys i fixed one of them however, the warnings about conversion from 'int' to 'char', possible loss of data are because of (str[*strOffset+*curPosition] = key;)<-this line.I would appreciate is anyone can comes up with an idea to solve it. [You're doing this assigment only if (key >= ' ' && key <= '~') is true, so it's safe to cast key to char. - Yan Song] | ||
* About rest of the warnings I found this link which somewhat explains the problem. | * About rest of the warnings I found this link which somewhat explains the problem. | ||
* http://stackoverflow.com/questions/4001736/what-with-the-thousands-of-warnings-in-standard-headers-in-msvc-wall | * http://stackoverflow.com/questions/4001736/what-with-the-thousands-of-warnings-in-standard-headers-in-msvc-wall |
Latest revision as of 11:24, 14 December 2013
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Contents
UGO
Team Members
First Name | Last Name | Section | Seneca Id | wiki id | IRC nick | Blog URL |
---|---|---|---|---|---|---|
Ruojia | Chen | B | rchen50 | Ruojia Chen | avoin | Ruojia's Blog |
Yan | Song | A | ysong55 | Yan Song | puerile | Sophomoric OOP344ing |
Yuzhi | A | yxing5 | maichaelxing | michaelxing | ||
Shreyas | Patel | B | spatel221 | Shreyas Patel | Dean_Winchester | OO Programming |
IRC
Channel on freenode : ##UGO
Repository
- GitHub Project Repo for Team P (Sign-in required)
Master Branch Status
- Open
Project Marking Percentage
Group work: 50%
Individual work: 50%
Total 100%
Coding Style and Standards
- No Tab Character allowed. (replace tabs with spaces)
- Each object must have its own type:
int a;
int b;
CDialog D;
- For detailed coding style and standards we can reference cframe.h and cframe.cpp Suggested by Ruojia--Oct.23 4:20PM
Tasks
V1.0 Task Assignment
- v1.0-1
- Yan, UI Prototyping and implementation; Browsing function.
- v1.0-2
- ???
- v1.0-3
- ???
Release 0.4 Task Assignment
- r0.4-1
- Ruojia, CValEdit, Done
- r0.4-2
- Yuzhi, CCheckMark, Done
- r0.4-3
- Yan, CButton & CMenuItem, Done
Release 0.3 Task Assignment
- r0.3-1
- Ruojia, CLineEdit, Done
- r0.3-2
- Yuzhi, CLabel, Done
- r0.3-3
- Shreyas and Yan, CDialog, Done
Release 0.2 Task Assignment
- r0.2-1
- Shreyas, initial testing and merging, done
- r0.2-2
- Rest of team, follow-up updating and merging, Done
Meetings
- latest will be on top
topic, date
Discussion
- Shreyas
- I need your help with warning guys i fixed one of them however, the warnings about conversion from 'int' to 'char', possible loss of data are because of (str[*strOffset+*curPosition] = key;)<-this line.I would appreciate is anyone can comes up with an idea to solve it. [You're doing this assigment only if (key >= ' ' && key <= '~') is true, so it's safe to cast key to char. - Yan Song]
- About rest of the warnings I found this link which somewhat explains the problem.
- http://stackoverflow.com/questions/4001736/what-with-the-thousands-of-warnings-in-standard-headers-in-msvc-wall