Skip to content

Commit a2c4f80

Browse files
committed
feat: create git repository
0 parents  commit a2c4f80

104 files changed

Lines changed: 18149 additions & 0 deletions

File tree

Some content is hidden

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

.github/img/appIcon.png

107 KB
Loading

.github/img/rainbow.png

2.86 KB
Loading

.github/img/send1.jpg

86.5 KB
Loading

.github/img/send2.jpg

75.7 KB
Loading

.github/workflows/tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build Send!
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test_job:
7+
runs-on: macos-12
8+
steps:
9+
- name: Checkout 🚚
10+
uses: actions/checkout@v3
11+
#- name: Prepare Env 🚀
12+
# run: |
13+
# pod install
14+
- name: Debug Build 🔨
15+
run: xcodebuild -scheme Send -destination "platform=macOS" -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
16+
#- name: Tests 📖
17+
# run: xcodebuild test -workspace Lusk.xcworkspace -scheme Lusk -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]}

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
.DS_Store
2+
# Xcode
3+
#
4+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
5+
6+
## User settings
7+
xcuserdata/
8+
9+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
10+
*.xcscmblueprint
11+
*.xccheckout
12+
13+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
14+
build/
15+
DerivedData/
16+
*.moved-aside
17+
*.pbxuser
18+
!default.pbxuser
19+
*.mode1v3
20+
!default.mode1v3
21+
*.mode2v3
22+
!default.mode2v3
23+
*.perspectivev3
24+
!default.perspectivev3
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
29+
## App packaging
30+
*.ipa
31+
*.dSYM.zip
32+
*.dSYM
33+
34+
# CocoaPods
35+
#
36+
# We recommend against adding the Pods directory to your .gitignore. However
37+
# you should judge for yourself, the pros and cons are mentioned at:
38+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
39+
#
40+
# Pods/
41+
#
42+
# Add this line if you want to avoid checking in source code from the Xcode workspace
43+
# *.xcworkspace
44+
45+
# Carthage
46+
#
47+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
48+
# Carthage/Checkouts
49+
50+
Carthage/Build/
51+
52+
# fastlane
53+
#
54+
# It is recommended to not store the screenshots in the git repo.
55+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
56+
# For more information about the recommended setup visit:
57+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
58+
59+
fastlane/report.xml
60+
fastlane/Preview.html
61+
fastlane/screenshots/**/*.png
62+
fastlane/test_output
63+
64+
# Code Injection
65+
#
66+
# After new code Injection tools there's a generated folder /iOSInjectionProject
67+
# https://github.com/johnno1962/injectionforxcode
68+
69+
iOSInjectionProject/

AppIcon.sketch

806 KB
Binary file not shown.

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<h1 align="center"><br><img src="./.github/img/appIcon.png" width=175px></h1>
2+
3+
<h3 align="center">Send!</h3>
4+
<p align="center">
5+
macOS GUI and share extension for 🦊 Send
6+
<br />
7+
<strong>Version: </strong>WIP (Unfinished)
8+
<br />
9+
<br />
10+
<img src="https://img.shields.io/badge/macOS-10.13-green.svg">
11+
<img src="https://img.shields.io/badge/Rust-🦀-blue.svg">
12+
<img src="https://img.shields.io/badge/Objective-C-gold.svg">
13+
<br />
14+
<br />
15+
<a><strong>No downloads</strong></a>
16+
<br />
17+
<br />
18+
<a href="https://github.com/EETagent/Send/issues">Report issues</a>
19+
</p>
20+
</p>
21+
22+
![-----------------------------------------------------](.github/img/rainbow.png)
23+
24+
## 🔔 Information
25+
26+
Send is still in development
27+
28+
## 👏 Dependencies
29+
30+
- `Maintained Send instance` https://send.vis.ee by [@timvisee](https://github.com/timvisee)
31+
- `FFsend API library` [ffsend-api](https://github.com/timvisee/ffsend-api) by [@timvisee](https://github.com/timvisee)
32+
- `ZIP library` [ZipArchive](https://github.com/ZipArchive/ZipArchive) by [@ZipArchive team](https://github.com/ZipArchive)
33+
34+
35+
## 🖼️ Gallery
36+
37+
<img src="./.github/img/send1.jpg" width=500px>
38+
39+
<img src="./.github/img/send2.jpg" width=500px>

0 commit comments

Comments
 (0)