Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: powerpaul17/yatoo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Choose a base ref
...
head repository: powerpaul17/yatoo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.2
Choose a head ref
  • 3 commits
  • 23 files changed
  • 1 contributor

Commits on Sep 28, 2023

  1. Copy the full SHA
    5e8d076 View commit details
  2. Copy the full SHA
    6053c8e View commit details
  3. Release 0.3.2

    powerpaul17 committed Sep 28, 2023
    Copy the full SHA
    e4adc9b View commit details
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
build
dist
.env
.parcel-cache
9 changes: 9 additions & 0 deletions .parcelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": [
"@parcel/config-default"
],
"reporters": [
"...",
"parcel-reporter-clean-dist"
]
}
5 changes: 5 additions & 0 deletions .postcssrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"plugins": {
"tailwindcss": true
}
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.3.2] - 2023-09-28

- use parcel instead of bun for bundling

## [0.3.1] - 2023-09-28

- remove `@capacitor/assets` package to try and fix f-droid build
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ android {
applicationId "com.paultirk.yatoo"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 7
versionName "0.3.1"
versionCode 8
versionName "0.3.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
2 changes: 1 addition & 1 deletion capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.paultirk.yatoo',
appName: 'Yatoo',
webDir: 'build',
webDir: 'dist',
server: {
androidScheme: 'https'
}
2 changes: 1 addition & 1 deletion electron/capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.paultirk.yatoo',
appName: 'Yatoo',
webDir: 'build',
webDir: 'dist',
server: {
androidScheme: 'https'
}
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yatoo",
"version": "0.3.1",
"version": "0.3.2",
"description": "An Amazing Capacitor App",
"author": {
"name": "Paul Tirk",
10 changes: 0 additions & 10 deletions index.html

This file was deleted.

Loading