Skip to content

Tags: hzxcaryn/ptman

Tags

v1.5

Toggle v1.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Last Changes (CS2103JAN2018-W14-B2#244)

* Update export email

* Update tests

* Collate

* Fix length

v1.5rc

Toggle v1.5rc's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update documentation and code base consistency

* update user guide , update codebase to be more consistent

* update UserGuide image link

* update user guide

* update Test

* update xref to all ppp .adoc

v1.4.1

Toggle v1.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request CS2103JAN2018-W14-B2#170 from SunBangjie/fixBug

fix OperatingHours bug

v1.4

Toggle v1.4's commit message
upload collate (CS2103JAN2018-W14-B2#158)

v1.3

Toggle v1.3's commit message
Use open source libs

1.2

Toggle 1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Documentations (Update readme and DG) (CS2103JAN2018-W14-B2#80)

* Update readme

* Update DG with timetable feature

* correct typo

v0.7

Toggle v0.7's commit message
build.gradle: upgrade TestFX to 4.0.7-alpha

TestFX 4.0.7-alpha has been released. Besides being the latest and
greatest version, 4.0.7-alpha also contains a proper working headless
mode for Linux.

Without this upgrade, attempting to run `./gradlew headless guiTests` on
Linux would result with the GUI tests failing with the following
exception:

        java.lang.RuntimeException: java.lang.RuntimeException: java.lang.IllegalAccessException: Class org.testfx.toolkit.impl.ApplicationLauncherImpl can not access a member of class com.sun.glass.ui.monocle.HeadlessPlatform with modifiers ""

            Caused by:
            java.lang.RuntimeException: java.lang.IllegalAccessException: Class org.testfx.toolkit.impl.ApplicationLauncherImpl can not access a member of class com.sun.glass.ui.monocle.HeadlessPlatform with modifiers ""

                Caused by:
                java.lang.IllegalAccessException: Class org.testfx.toolkit.impl.ApplicationLauncherImpl can not access a member of class com.sun.glass.ui.monocle.HeadlessPlatform with modifiers ""

Let's upgrade TestFX to 4.0.7-alpha to have happy Linux developers.

This working headless mode was also present in the 4.0.6-alpha, but we
couldn't upgrade to it as it broke our gui tests. (See e1eafd1 ([se-edu#353]
All gui tests are failing  (se-edu#354), 2017-03-23))

Furthermore, since headless mode now works on Linux, our Travis CI
builds do not need to run xvfb any more. As such, let's remove its usage
from .travis.yml.

v0.6

Toggle v0.6's commit message
[se-edu#621] UniquePersonList: Simplify logic of updatePerson(...) (s…

…e-edu#616)

This method retrieves the person in the list to be updated, and calls
Person#resetData(ReadOnlyPerson) to update the values of that person.

We do not need to retrieve the person in the list to be updated, to
update the list accordingly.

Let’s simplify the logic by setting the updated Person object in place
of the person to be updated.