Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.
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
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### OS-X ###

.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes


### Windows ###
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
7 changes: 4 additions & 3 deletions J2ObjC-Framework.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@version = "1.0.2.2"
@version = "1.2"

Pod::Spec.new do |s|
s.name = "J2ObjC-Framework"
Expand All @@ -7,9 +7,10 @@ Pod::Spec.new do |s|
s.homepage = "https://actor.im/"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Actor LLC" => "steve@actor.im" }
s.source = { :git => "https://github.com/actorapp/J2ObjC-Framework.git", :tag => "v#{s.version}" }
s.source = { :git => "https://github.com/Daeda88/J2ObjC-Framework.git", :tag => "v#{s.version}" }

s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.requires_arc = true

s.frameworks = 'Security'
Expand Down
4 changes: 2 additions & 2 deletions Scripts/download.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
set -ev

j2objc_version=1.0.2
sha1_checksum=6f2f45b323ef92cc8d1b13dd789aebd1ab87562f
j2objc_version=1.2
sha1_checksum=62988333bcf505514a1af8aa37ee00c5f2b59c35

echo "fetching j2objc dist"
curl -OL https://github.com/google/j2objc/releases/download/${j2objc_version}/j2objc-${j2objc_version}.zip
Expand Down