Skip to content
Merged
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
10 changes: 5 additions & 5 deletions docs/sdkx-cocos2dx/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Helpshift uniquely identifies each registered game with a combination of 2 token

| | |
| ------------- | ------------------------------------------------------------------------------ |
| `Platform ID` | Your Games's unique App Id (Games's `App Id` on dashboard is your platform Id) |
| `Platform ID` | Your Games's unique Platform Id (Games's `Platform Id` on dashboard is your platform Id) |
| `Domain Name` | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |

</div>
Expand Down Expand Up @@ -235,7 +235,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand All @@ -257,7 +257,7 @@ bool AppDelegate::applicationDidFinishLaunching() {

cocos2d::ValueMap config;
// Add install configs in the config map
HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down Expand Up @@ -292,7 +292,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -326,7 +326,7 @@ bool AppDelegate::applicationDidFinishLaunching() {

ValueMap config;
config["isForChina"] = Value("yes");
HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down
4 changes: 2 additions & 2 deletions docs/sdkx-cocos2dx/migration-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand All @@ -155,7 +155,7 @@ bool AppDelegate::applicationDidFinishLaunching() {
cocos2d::ValueMap config;
// Add config value.

HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down
8 changes: 4 additions & 4 deletions docs/sdkx-cocos2dx/notifications-android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -164,7 +164,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -193,7 +193,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -226,7 +226,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-cocos2dx/notifications-ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ bool AppDelegate::applicationDidFinishLaunching() {

ValueMap config;
config["enableInAppNotification"] = false;
HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down
20 changes: 10 additions & 10 deletions docs/sdkx-cocos2dx/sdk-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand All @@ -92,7 +92,7 @@ bool AppDelegate::applicationDidFinishLaunching() {
ValueMap config;
config["enableLogging"] = true

HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down Expand Up @@ -276,7 +276,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand All @@ -296,7 +296,7 @@ bool AppDelegate::applicationDidFinishLaunching() {
ValueMap config;
config["enableInAppNotification"] = false;

HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down Expand Up @@ -446,7 +446,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -475,7 +475,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -505,7 +505,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -534,7 +534,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -563,7 +563,7 @@ public class MyActivity extends Cocos2dxActivity {
// Install call
HelpshiftCocosBridge.install(
this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
}
Expand Down Expand Up @@ -599,7 +599,7 @@ bool AppDelegate::applicationDidFinishLaunching() {

config["inAppNotificationAppearance"] = inAppNotificationAppearance;

HelpshiftCocos2dx::install( "<App Id from the Helpshift Dashboard>",
HelpshiftCocos2dx::install( "<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
...
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-react-native/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Helpshift uniquely identifies each registered App with a combination of 2 tokens
| | |
| ------------------------ | ------------------------------------------------------------------------------------------ |
| <code>Domain Name</code> | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |
| <code>Platform ID</code> | Your App's unique Platform ID (App's <code>App ID</code> on dashboard is your Platform ID) |
| <code>Platform ID</code> | Your App's unique Platform ID (App's <code>Platform Id</code> on dashboard is your Platform ID) |

</div>

Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-unity/getting-started-android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Helpshift uniquely identifies each registered App with a combination of 2 tokens
| | |
| ------------------------ | ----------------------------------------------------- |
| <code>Domain Name</code> | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |
| <code>Platform ID</code> | Your App's unique App Id |
| <code>Platform ID</code> | Your App's unique Platform Id |

</div>
You can find these by navigating to `Settings`>`SDK (for Developers)` in your agent dashboard.
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-unity/getting-started-ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Helpshift uniquely identifies each registered App with a combination of 2 tokens
| | |
| ------------------------ | ----------------------------------------------------------------- |
| <code>Domain Name</code> | This is your Helpshift domain name e.g. _happyapps.helpshift.com_ |
| <code>Platform ID</code> | Your App's unique App id |
| <code>Platform ID</code> | Your App's unique Platform Id |

</div>

Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-unreal/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Helpshift uniquely identifies each registered App with a combination of 2 tokens
| | |
| ------------------------ | ------------------------------------------------------------------------------------------ |
| <code>Domain Name</code> | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |
| <code>Platform ID</code> | Your App's unique platform id (App's <code>App Id</code> on dashboard is your platform Id) |
| <code>Platform ID</code> | Your App's unique platform id (App's <code>Platform Id</code> on dashboard is your platform Id) |

</div>
You can find these by navigating to `Settings`>`SDK (for Developers)` in your agent dashboard.
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx-xamarin/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Helpshift uniquely identifies each app with a combination of 2 tokens:
| | |
| ------------------------ | ------------------------------------------------------|
| <code>Domain Name</code> | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |
| <code>Platform ID</code> | Your App's unique App ID |
| <code>Platform ID</code> | Your App's unique Platform Id |

</div>

Expand Down
6 changes: 3 additions & 3 deletions docs/sdkx_android/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Helpshift uniquely identifies each registered App with a combination of 2 tokens

| | |
| ------------- | ------------------------------------------------------------------------------- |
| `Platform ID` | Your App's unique platform id (App's `App Id` on dashboard is your platform Id) |
| `Platform ID` | Your App's unique platform id (App's `Platform Id` on dashboard is your platform Id) |
| `Domain Name` | Your Helpshift domain. E.g. _happyapps.helpshift.com_ |

</div>
Expand Down Expand Up @@ -139,7 +139,7 @@ You can optionally pass the configuration map to `Helpshift.install()` API. To s
// Install call
try {
Helpshift.install(this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
} catch (UnsupportedOSVersionException e) {
Expand Down Expand Up @@ -167,7 +167,7 @@ This config key accepts a boolean value. Pass `true` if you are integrating the
// Install call
try {
Helpshift.install(this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
} catch (UnsupportedOSVersionException e) {
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx_android/migration-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Update the `install` call as the following.
```java
try {
Helpshift.install(this,
"<App Id from the Helpshift Dashboard>",
"<Platform Id from the Helpshift Dashboard>",
"<Domain name from the Helpshift Dashboard>",
config);
} catch (UnsupportedOSVersionException e) {
Expand Down
2 changes: 1 addition & 1 deletion docs/sdkx_ios/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ of 2 tokens.

| | |
| ------------- | ------------------------------------------------------------------------------- |
| `Platform ID` | Your App's unique platform id (App's `App Id` on dashboard is your platform Id) |
| `Platform ID` | Your App's unique platform id (App's `Platform Id` on dashboard is your platform Id) |
| `Domain Name` | This is your Helpshift domain name e.g. _happyapps.helpshift.com_ |

</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/AnnouncementList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ export default function AnnouncementList() {

return (
<section
className="overflow-y-auto lg:pb-8 dark:bg-none dark:border dark:border-gray-700 dark:border-solid bg-white/40 dark:bg-white/0 backdrop-blur-sm px-4 rounded-xl"
className="overflow-y-auto lg:pb-8 dark:bg-none dark:border dark:border-gray-700 dark:border-solid bg-[#070E42] dark:bg-white/0 backdrop-blur-sm px-4 rounded-xl"
style={{
maxHeight: "90vh",
}}
>
<div className="flex justify-between mt-4 mb-4 lg:mt-6 items-center">
<h2 className="text-lg md:text-2xl mb-0">Announcements</h2>
<h2 className="text-lg md:text-2xl mb-0 text-white">Announcements</h2>
<button
onClick={_handleExpandedClick}
className="py-2 px-4 rounded-md text-xs bg-transparent text-gray-800 dark:text-gray-100 border border-solid border-gray-700 dark:border-gray-600 shadow cursor-pointer lg:hidden"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Book.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function Book({ book }) {
<li className="col-span-6">
<Link
to={link}
className="md:w-11/12 hover:no-underline text-slate-700 dark:text-gray-100 hover:text-sky-700 text-base font-normal rounded-lg flex hover:shadow transition-shadow justify-start flex-grow duration-150 h-full bg-white dark:bg-gray-800 gap-1"
className="md:w-11/12 hover:no-underline text-slate-700 dark:text-gray-100 hover:text-sky-700 text-base font-normal rounded-lg flex shadow-xl hover:shadow-2xl transition-shadow justify-start flex-grow duration-150 h-full bg-white dark:bg-gray-800 gap-1"
>
<div className="basis-16 md:basis-20">
<img
Expand Down
20 changes: 13 additions & 7 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,25 @@ a.menu__link--active {
/* Custom global styles */

.full-bg {
background: linear-gradient(
to bottom right,
#FBFFEC,
#E7F8E1,
#CCEDE6,
#DBEBE6
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: #FFFFFF
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sumeet-helpshift Are we keeping the background color as white? I think we were planning to show a blue linear gradient, right?

}

[data-theme="dark"] .full-bg {
background: unset;
}

[data-theme="light"] .footer {
background: #040720;
}

[data-theme="light"] .footer__title {
color: #FFFFFF;
}

[data-theme="light"] .footer__link-item {
color: #E6E6E6;
}

.feature-new > a.menu__link::after {
content: "NEW";
display: inline-block;
Expand Down
3 changes: 2 additions & 1 deletion src/data/navbar.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"logo": {
"alt": "Helpshift",
"src": "img/helpshift-kws-logo.svg",
"srcDark": "img/helpshift-kws-logo-white.png"
"srcDark": "img/helpshift-kws-logo-white.png",
"style": {"height": "50px"}
},
"items": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Homepage() {
<AnnouncementList />
</div>
<div className="grid grid-cols-12 gap-4 md:gap-8 mx-4 md:mx-6 xl:mx-20">
<div className="col-span-12 lg:col-span-9 dark:border dark:border-gray-700 dark:border-solid p-4 lg:p-6 lg:pl-8 rounded-xl bg-white/60 backdrop-blur-sm dark:bg-white/0">
<div className="col-span-12 lg:col-span-9 dark:border dark:border-gray-700 dark:border-solid p-4 lg:p-6 lg:pl-8 rounded-xl bg-[#F9F9F9] backdrop-blur-sm dark:bg-white/0">
<BookGroupsList />
</div>
<div className="hidden lg:block col-span-3">
Expand Down
Binary file modified static/img/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/helpshift-kws-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/helpshift-kws-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading