Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.13.1 (#230) #231

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.13.1] - 2024-10-24

### Fixed
- Outdated registration and reset password link [#220](https://github.com/IN-CORE/incore-ui/issues/220)
- Typo in delete dfr3 mapping [#223](https://github.com/IN-CORE/incore-ui/issues/223)

## [1.13.0] - 2024-08-21

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "incore",
"version": "1.13.0",
"version": "1.13.1",
"description": "The Interdependent Networked Community Resilience Modeling Environment (IN-CORE) has the capability of computing resiliency measures at the user-desired community level. The methodologies and algorithms have been developed by different research groups within the Center of Excellence.",
"engines": {
"npm": ">=3.10",
Expand Down
9 changes: 5 additions & 4 deletions src/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ config["incoreDocUrl"] = `${hostname}/doc/incore/introduction.html`;
config["incoreTutorialUrl"] = `${hostname}/doc/incore/tutorials.html`;
config["incoreFAQUrl"] = `${hostname}/doc/incore/faq.html`;
config["swaggerUrl"] = `${hostname}/doc/api/`;
config["webVersion"] = "1.13.0";
config["webVersion"] = "1.13.1";
config["spaceServiceBase"] = `${hostname}/space/api/`;
config["spaceService"] = `${hostname}/space/api/spaces`;
config["dfr3ServiceBase"] = `${hostname}/dfr3/api/`;
Expand All @@ -27,8 +27,8 @@ config["geoServer"] = `${hostname}/geoserver/incore/wms`;
config["plottingService"] = `${hostname}/plotting/api/samples`;

config["testUserInfo"] = "incrtest";
config["signUpURL"] = "https://identity.ncsa.illinois.edu/register/BSKC2UKQPU";
config["resetPwURL"] = "https://identity.ncsa.illinois.edu/reset";
config["signUpURL"] = "/register";
config["resetPwURL"] = "/auth/realms/In-core/login-actions/reset-credentials?client_id=react-auth";
config["setGravatarURL"] = "https://en.gravatar.com/support/activating-your-account/";
config["tosURL"] = `${hostname}/doc/incore/termsofservice.html`;
config["privacyURL"] = "https://www.vpaa.uillinois.edu/resources/web_privacy";
Expand All @@ -51,7 +51,8 @@ config["keycloakConfig"] = {
clientId: config["client_id"]
};

config["resetPwWarningMessage"] = "NOTE: Changes were recently made to IN-CORE's user management system. If you were " +
config["resetPwWarningMessage"] =
"NOTE: Changes were recently made to IN-CORE's user management system. If you were " +
"registered as an IN-CORE user before 08/21/2024 and are experiencing login issues, you need to reset your " +
"password.";

Expand Down
2 changes: 1 addition & 1 deletion src/components/DFR3Viewer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ const DFR3Viewer = () => {
};

const deleteMappingConfirmed = () => {
deleteItemById("mapping", selectedMapping.id)(dispatch);
deleteItemById("mappings", selectedMapping.id)(dispatch);
setSelectedMapping("");
setConfirmOpen(false);
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export default function Profile(props) {
) : null}
<Link href={config.resetPwURL} className={classes.profileLink} target="_blank">
<LockOpenIcon fontSize="small" className={classes.profileLinkIcon}/>
Forgot password?
Reset Password
</Link>
</Box>
<Divider orientation="horizontal"/>
Expand Down
Loading