Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.0 #319

Merged
merged 4 commits into from
Feb 24, 2024
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
2 changes: 2 additions & 0 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
branches-ignore:
- develop
workflow_call:
pull_request:

jobs:
analyze:
runs-on: ubuntu-latest
name: codecheck

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ env:
jobs:
check:
uses: ./.github/workflows/commit.yml
name: codecheck

build:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip-build]') }}
needs: [check]

steps:
Expand Down
5 changes: 5 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/259.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Erstes v1 Release 🥳

- Neue Kategorie-Seite
- Neue Rechnungen-Seite, erstellt von @dballagi
- Dateien können an die App geteilt werden um neue Transaktionen mit Anhang zu erstellen.
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/changelogs/248.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Prepare the first "v1" release as the last "non-pre-release beta".
In the future, pre-releases will be submitted to the beta channel in Google Play, production releases will be submitted to the main channel.

- New bill page, feature coded by @dballagi
- Bug fixes (#296 by @ch3thanhs, #301)
- Bug fixes
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/259.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
First v1 release 🥳

In the future, pre-releases will be submitted to the beta channel in Google Play, production releases will be submitted to the main channel.

- New category page
- New bill page, feature coded by @dballagi
- Allow sharing files to the app to attach to transactions
4 changes: 2 additions & 2 deletions fastlane/metadata/android/version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=1.0.0-prerelease
versionCode=249
versionName=1.0.0
versionCode=259
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: waterflyiii
description: WaterFly III, a mobile client for Firefly III
publish_to: 'none'

version: 1.0.0-prerelease
version: 1.0.0

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down
Loading