Skip to content

Commit 25e5e23

Browse files
authored
Release 0.3.0 - Merge pull request #14 from TheContrappostoShop/integrated_updater
Release 0.3.0
2 parents ba4a766 + 616dcfa commit 25e5e23

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+4836
-1523
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,29 @@ jobs:
1313
- uses: seanmiddleditch/gha-setup-ninja@master
1414
- uses: subosito/flutter-action@v2
1515
with:
16-
channel: 'stable' # or: 'beta', 'dev', 'master' (or 'main')
16+
channel: "stable" # or: 'beta', 'dev', 'master' (or 'main')
1717
- run: sudo apt-get update && sudo apt-get install -y gtk+-3.0
1818
- run: flutter pub global activate flutterpi_tool
1919
- run: flutter build linux
2020

2121
- name: Get Version
2222
id: get_version
23-
uses: mikefarah/yq@master
24-
with:
25-
cmd: yq '.version' pubspec.yaml
23+
run: |
24+
VERSION=$(yq '.version' pubspec.yaml)
25+
# Strip build metadata if it exists
26+
VERSION=$(echo $VERSION | sed 's/+.*//')
27+
echo "result=$VERSION" >> $GITHUB_OUTPUT
28+
29+
- name: Update Version with Commit Hash
30+
run: |
31+
VERSION=$(yq '.version' pubspec.yaml)
32+
COMMIT_HASH=${GITHUB_SHA::7}
33+
NEW_VERSION=${VERSION/+SELFCOMPILED/+${COMMIT_HASH}}
34+
yq -i ".version = \"$NEW_VERSION\"" pubspec.yaml
35+
echo "Updated version to $NEW_VERSION"
36+
37+
- name: Run pubspec_extract
38+
run: flutter pub run pubspec_extract
2639

2740
- name: Build, Copy, and Compress armv7
2841
run: |
@@ -71,6 +84,7 @@ jobs:
7184
skipIfReleaseExists: true
7285
generateReleaseNotes: true
7386
commit: ${{github.sha}}
87+
7488
- uses: ncipollo/release-action@v1.14.0
7589
if: github.ref != 'refs/heads/main'
7690
with:
@@ -80,4 +94,4 @@ jobs:
8094
allowUpdates: true
8195
prerelease: true
8296
generateReleaseNotes: true
83-
commit: ${{github.sha}}
97+
commit: ${{github.sha}}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,5 @@ app.*.map.json
4545
/android/key.properties
4646

4747
.VSCodeCounter
48+
49+
orion.cfg
54 KB
Binary file not shown.
54 KB
Binary file not shown.
53.6 KB
Binary file not shown.
53.1 KB
Binary file not shown.

assets/fonts/OFL.txt

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
Copyright 2020 Braille Institute of America, Inc.
2+
3+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
4+
This license is copied below, and is also available with a FAQ at:
5+
http://scripts.sil.org/OFL
6+
7+
-----------------------------------------------------------
8+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
9+
-----------------------------------------------------------
10+
11+
PREAMBLE
12+
The goals of the Open Font License (OFL) are to stimulate worldwide
13+
development of collaborative font projects, to support the font creation
14+
efforts of academic and linguistic communities, and to provide a free and
15+
open framework in which fonts may be shared and improved in partnership
16+
with others.
17+
18+
The OFL allows the licensed fonts to be used, studied, modified and
19+
redistributed freely as long as they are not sold by themselves. The
20+
fonts, including any derivative works, can be bundled, embedded,
21+
redistributed and/or sold with any software provided that any reserved
22+
names are not used by derivative works. The fonts and derivatives,
23+
however, cannot be released under any other type of license. The
24+
requirement for fonts to remain under this license does not apply
25+
to any document created using the fonts or their derivatives.
26+
27+
DEFINITIONS
28+
"Font Software" refers to the set of files released by the Copyright
29+
Holder(s) under this license and clearly marked as such. This may
30+
include source files, build scripts and documentation.
31+
32+
"Reserved Font Name" refers to any names specified as such after the
33+
copyright statement(s).
34+
35+
"Original Version" refers to the collection of Font Software components as
36+
distributed by the Copyright Holder(s).
37+
38+
"Modified Version" refers to any derivative made by adding to, deleting,
39+
or substituting -- in part or in whole -- any of the components of the
40+
Original Version, by changing formats or by porting the Font Software to a
41+
new environment.
42+
43+
"Author" refers to any designer, engineer, programmer, technical
44+
writer or other person who contributed to the Font Software.
45+
46+
PERMISSION & CONDITIONS
47+
Permission is hereby granted, free of charge, to any person obtaining
48+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
49+
redistribute, and sell modified and unmodified copies of the Font
50+
Software, subject to the following conditions:
51+
52+
1) Neither the Font Software nor any of its individual components,
53+
in Original or Modified Versions, may be sold by itself.
54+
55+
2) Original or Modified Versions of the Font Software may be bundled,
56+
redistributed and/or sold with any software, provided that each copy
57+
contains the above copyright notice and this license. These can be
58+
included either as stand-alone text files, human-readable headers or
59+
in the appropriate machine-readable metadata fields within text or
60+
binary files as long as those fields can be easily viewed by the user.
61+
62+
3) No Modified Version of the Font Software may use the Reserved Font
63+
Name(s) unless explicit written permission is granted by the corresponding
64+
Copyright Holder. This restriction only applies to the primary font name as
65+
presented to the users.
66+
67+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
68+
Software shall not be used to promote, endorse or advertise any
69+
Modified Version, except to acknowledge the contribution(s) of the
70+
Copyright Holder(s) and the Author(s) or with their explicit written
71+
permission.
72+
73+
5) The Font Software, modified or unmodified, in part or in whole,
74+
must be distributed entirely under this license, and must not be
75+
distributed under any other license. The requirement for fonts to
76+
remain under this license does not apply to any document created
77+
using the Font Software.
78+
79+
TERMINATION
80+
This license becomes null and void if any of the above conditions are
81+
not met.
82+
83+
DISCLAIMER
84+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
85+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
86+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
87+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
88+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
89+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
90+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
91+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
92+
OTHER DEALINGS IN THE FONT SOFTWARE.

assets/images/bsod.png

3.97 KB
Loading

ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

ios/Podfile.lock

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ PODS:
55
- path_provider_foundation (0.0.1):
66
- Flutter
77
- FlutterMacOS
8-
- permission_handler_apple (9.1.1):
8+
- permission_handler_apple (9.3.0):
99
- Flutter
10-
- shared_preferences_foundation (0.0.1):
10+
- url_launcher_ios (0.0.1):
1111
- Flutter
12-
- FlutterMacOS
1312
- wifi_info_flutter (0.0.1):
1413
- Flutter
1514

@@ -18,7 +17,7 @@ DEPENDENCIES:
1817
- package_info (from `.symlinks/plugins/package_info/ios`)
1918
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
2019
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
21-
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
20+
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
2221
- wifi_info_flutter (from `.symlinks/plugins/wifi_info_flutter/ios`)
2322

2423
EXTERNAL SOURCES:
@@ -30,17 +29,17 @@ EXTERNAL SOURCES:
3029
:path: ".symlinks/plugins/path_provider_foundation/darwin"
3130
permission_handler_apple:
3231
:path: ".symlinks/plugins/permission_handler_apple/ios"
33-
shared_preferences_foundation:
34-
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
32+
url_launcher_ios:
33+
:path: ".symlinks/plugins/url_launcher_ios/ios"
3534
wifi_info_flutter:
3635
:path: ".symlinks/plugins/wifi_info_flutter/ios"
3736

3837
SPEC CHECKSUMS:
39-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
38+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
4039
package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62
41-
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
42-
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
43-
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
40+
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
41+
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
42+
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
4443
wifi_info_flutter: 55d4c2469034f5b5c38063ccefa62f708a503a2b
4544

4645
PODFILE CHECKSUM: 5a367937f10bf0c459576e5e472a1159ee029c13

0 commit comments

Comments
 (0)