Skip to content

Commit

Permalink
Merge pull request #6 from g33kdev/main
Browse files Browse the repository at this point in the history
Release 2
  • Loading branch information
stnguyen90 authored Apr 4, 2024
2 parents 7111aa7 + 936b66c commit 2171cf8
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 9 deletions.
10 changes: 6 additions & 4 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title : Price Logger Mobile App | Is That a
# App Info
ios_app_id : 6473100414 # Required. Enter iOS app ID to automatically populate name, price and icons (e.g. 718043190).
ios_app_country : us # Required outside USA. Enter 2 letter country code as in https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

play_app_id : com.g33kdev.itagp_cloud
appstore_link : https://apps.apple.com/us/app/is-that-a-good-price-cloud/id6473100414
playstore_link : https://play.google.com/store/apps/details?id=com.g33kdev.itagp_cloud
# presskit_download_link : https://emilbaehr.com # Enter a link to downloadable file or (e.g. public Dropbox link to a .zip file).
Expand All @@ -16,8 +16,10 @@ app_price : $0.99/month
app_description : Easily log the price history of products so you always know what's the best unit price!

enable_smart_app_banner : true # Set to true to show a smart app banner at top of page on mobile devices.
card_image: /assets/feature.png
card_image: /assets/og.png

posthog_api_key : phc_Il4JCu9WQQa7EHqzQGyP5NsH07I3pLxgyheGW2dTzzO
posthog_api_host : https://app.posthog.com

# Information About Yourself
your_name : g33kdev
Expand All @@ -26,7 +28,7 @@ your_name : g33kdev
email_address : [email protected]
# facebook_username :
# instagram_username : ebaehr
# twitter_username : ebaehr
twitter_username : itagp_app
# github_username : emilbaehr
# youtube_username :
# mastodon_link : https://mastodon.social/@ebaehr
Expand Down Expand Up @@ -57,7 +59,7 @@ features :
fontawesome_icon_name : adjust

- title : Entry Merchant and Name Autocomplete
description : Merchant and name autocompletes with previously entered info.
description : Quickly fill in details with previously entered info.
fontawesome_icon_name : magic

- title : # New Feature Title
Expand Down
34 changes: 34 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@
<title class="pageTitle">{{ site.page_title }}</title>
<meta name="description" content="{{ site.app_description }}">

{% if site.ios_app_id %}
<meta name="twitter:app:name:iphone" content="{{ site.app_name }}">
<meta name="twitter:app:id:iphone" content="{{ site.ios_app_id }}">
<meta property="al:ios:app_name" content="{{ site.app_name }}">
<meta property="al:ios:app_store_id" content="{{ site.ios_app_id }}">
{% endif %}
{% if site.play_app_id %}
<meta property="al:android:app_name" content="{{ site.app_name }}">
<meta property="al:android:package" content="{{ site.play_app_id }}">
{% endif %}
<meta property="og:site_name" content="{{ site.page_title }}">
<meta property="og:type" content="website">
<meta property="og:title" content="{{ site.page_title }}">
<meta property="twitter:title" content="{{ site.page_title }}">
{% if site.twitter_username %}
<meta name="twitter:site" content="@{{ site.twitter_username }}">
{% endif %}
<meta name="description" content="{{ site.app_description }}">
<meta property="og:description" content="{{ site.app_description }}">
<meta property="twitter:description" content="{{ site.app_description }}">
<meta property="og:url" content="{{ site.url }}/{{ site.baseurl }}">
<meta property="al:web:url" content="{{ site.url }}/{{ site.baseurl }}">
<meta property="og:image" content="{{ site.card_image | absolute_url }}">
<meta name="twitter:image:src" content="{{ site.card_image | absolute_url }}">
<meta name="twitter:card" content="summary_large_image">
<meta name="robots" content="index,follow,max-image-preview:large">

<link rel="shortcut icon" href="{{ site.app_icon | relative_url }}">

<!-- Smart App Banner -->
Expand All @@ -16,4 +43,11 @@

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="{{ '/main.css' | relative_url }}">
{% if site.posthog_api_key %}
<!-- PostHog Analytics -->
<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags getFeatureFlag getFeatureFlagPayload reloadFeatureFlags group updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures getActiveMatchingSurveys getSurveys onSessionId".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('{{ site.posthog_api_key }}',{api_host:'{{ site.posthog_api_host }}'})
</script>
{% endif %}
</head>
5 changes: 0 additions & 5 deletions _includes/screencontent.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
$(function() {
$(".iphoneScreen").attr('src', '{{ site.github.baseurl }}{{ file.path }}');
$(".iphoneScreen").removeClass("hidden");
console.log("{{ file.path }}");
});
</script>
{% elsif file.path contains 'assets/videos/' %}
{% unless file.path contains 'assets/videos/Place-video-files-here.txt' %}
<script>
$(function() {
$(".iphoneScreen").addClass("hidden");
console.log("remove screenshot");
});
</script>
{% endunless %}
Expand All @@ -23,23 +21,20 @@
$(function() {
$(".videoContainer").removeClass("hidden");
$(".screenvideo").append('<source src="{{ site.github.baseurl }}{{ file.path }}" type="video/mp4">');
console.log("{{ file.path }}");
});
</script>
{% elsif file.extname == ".ogg" %}
<script>
$(function() {
$(".videoContainer").removeClass("hidden");
$(".screenvideo").append('<source src="{{ site.github.baseurl }}{{ file.path }}" type="video/ogg">');
console.log("{{ file.path }}");
});
</script>
{% elsif file.extname == ".webm" %}
<script>
$(function() {
$(".videoContainer").removeClass("hidden");
$(".screenvideo").append('<source src="{{ site.github.baseurl }}{{ file.path }}" type="video/webm">');
console.log("{{ file.path }}");
});
</script>
{% endif %}
Expand Down
Binary file removed assets/feature.png
Binary file not shown.
Binary file added assets/og.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 assets/screenshot/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2171cf8

Please sign in to comment.