Skip to content

Commit

Permalink
APP-106362 Bump app version ahead of release and add to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tammy-pendo committed Jul 25, 2024
1 parent f5aade6 commit 3b4bfbf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ For this project we'll need:

Look here, https://developer.zendesk.com/apps/docs/developer-guide/zat for info on `zat`.

If you are running on a Macbook Pro M1 machine (or even later version), you may run into issues with the
version of `nokogiri` that you are asked to install when installing `zat`. Running `gem install nokogiri -v 1.13.10`
will install the `x86_64-darwin` version of the package, but you will actually need the `arm64-darwin` version that
is compatible with M1 machines. To do this, before running `gem install nokogiri -v 1.13.10`, you should run
`bundle config set force_ruby_platform true`. If you already installed `nokogiri`, you can run `gem uninstall nokogiri`,
then run the `bundle` command before re-installing `nokogiri`.

## Build

`npm run build` for development builds
Expand All @@ -19,7 +26,7 @@ Look here, https://developer.zendesk.com/apps/docs/developer-guide/zat for info
ZAT has a server mode that will let you run from local host. You can read about it in the above link.
The next best way to test a build is to use a private Zendesk app.

We have a developer account here https://d3v-pendosupport.zendesk.com/agent/dashboard.
We have a developer account here https://d3v-pendo-platformhelp.zendesk.com/agent/dashboard.
You can get a free Zendesk account that is prefixed with a string like `d3v-` to indicate its a development account. It may be preferrable to use multiple
or to use a shared login as membership is limited for developer accounts.

Expand Down
2 changes: 1 addition & 1 deletion 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": "pendo",
"version": "1.6.2",
"version": "1.6.3",
"homepage": ".",
"private": true,
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion zendesk-app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"ticket_sidebar": "assets/index.html"
}
},
"version": "1.6.2",
"version": "1.6.3",
"frameworkVersion": "2.0",
"parameters": [
{
Expand Down

0 comments on commit 3b4bfbf

Please sign in to comment.