Skip to content
Open
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
1 change: 0 additions & 1 deletion Govt-Billing-React/android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ android {

apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-community-admob')
implementation project(':capacitor-app')
implementation project(':capacitor-haptics')
implementation project(':capacitor-keyboard')
Expand Down
3 changes: 0 additions & 3 deletions Govt-Billing-React/android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
include ':capacitor-android'
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')

include ':capacitor-community-admob'
project(':capacitor-community-admob').projectDir = new File('../node_modules/@capacitor-community/admob/android')

include ':capacitor-app'
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
97 changes: 43 additions & 54 deletions Govt-Billing-React/index.html
Original file line number Diff line number Diff line change
@@ -1,56 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Ionic App</title>

<base href="/" />

<meta name="color-scheme" content="light dark" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link rel="manifest" href="/manifest.json" />

<link rel="shortcut icon" type="image/png" href="/favicon.png" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Ionic App" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<script type="text/javascript" src="/jflot/jquery.min.js"></script>
<script
type="text/javascript"
src="/public/jflot/jquery.flot.min.js"
></script>
<script
type="text/javascript"
src="/public/jflot/jquery.flot.pie.js"
></script>
<script
type="text/javascript"
src="/public/jflot/jquery.flot.stack.js"
></script>
<script
type="text/javascript"
src="/public/jflot/jquery.flot.threshold.multiple.js"
></script>
<script
type="text/javascript"
src="/public/jflot/jquery.flot.valuelabels.js"
></script>
<script src="/public/SocialCalc.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

<head>
<meta charset="utf-8" />
<title>Ionic App</title>

<base href="/" />

<meta name="color-scheme" content="light dark" />
<meta name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link rel="manifest" href="/manifest.json" />

<link rel="shortcut icon" type="image/png" href="/favicon.png" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Ionic App" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<!-- For Android Chrome and other modern browsers -->
<meta name="mobile-web-app-capable" content="yes">

<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<script type="text/javascript" src="/jflot/jquery.min.js"></script>
<script type="text/javascript" src="/public/jflot/jquery.flot.min.js"></script>
<script type="text/javascript" src="/public/jflot/jquery.flot.pie.js"></script>
<script type="text/javascript" src="/public/jflot/jquery.flot.stack.js"></script>
<script type="text/javascript" src="/public/jflot/jquery.flot.threshold.multiple.js"></script>
<script type="text/javascript" src="/public/jflot/jquery.flot.valuelabels.js"></script>
<script src="/public/SocialCalc.js"></script>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion Govt-Billing-React/src/components/Files/Files.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const Files: React.FC<{
isOpen={showAlert1}
onDidDismiss={() => setShowAlert1(false)}
header="Delete file"
message={"Do you want to delete the " + currentKey + " file?"}
message={"Do you want to delete the file:" + '"' + currentKey + '"' + " file?"}
buttons={[
{ text: "No", role: "cancel" },
{
Expand Down
14 changes: 7 additions & 7 deletions Govt-Billing-React/src/components/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const Menu: React.FC<{
onDidDismiss={() => setShowAlert1(false)}
header="Alert Message"
message={
"Cannot update <strong>" + getCurrentFileName() + "</strong> file!"
"Cannot update " + '"' +getCurrentFileName()+'"' + " file!"
}
buttons={["Ok"]}
/>
Expand All @@ -190,9 +190,9 @@ const Menu: React.FC<{
onDidDismiss={() => setShowAlert2(false)}
header="Save"
message={
"File <strong>" +
getCurrentFileName() +
"</strong> updated successfully"
"File: " +
'"' +getCurrentFileName()+'"' +
" updated successfully"
}
buttons={["Ok"]}
/>
Expand All @@ -219,9 +219,9 @@ const Menu: React.FC<{
onDidDismiss={() => setShowAlert4(false)}
header="Save As"
message={
"File <strong>" +
getCurrentFileName() +
"</strong> saved successfully"
"File: " +
'"' +getCurrentFileName()+'"' +
" saved successfully"
}
buttons={["Ok"]}
/>
Expand Down