Skip to content

Commit

Permalink
Looking at stuff fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brianquinlan committed Oct 10, 2024
1 parent 4a8b5a9 commit 6698a62
Show file tree
Hide file tree
Showing 10 changed files with 130 additions and 127 deletions.
116 changes: 112 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,119 @@
# Adapted from https://github.com/flutter/flutter/blob/master/.gitignore

# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# Visual Studio Code related
.vscode/
.classpath
.project
.settings/
.vscode/*

# Don’t commit the following directories created by pub.
.dart_tool
# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
**/generated_plugin_registrant.dart
.packages
.pub-preload-cache/
.pub-cache/
.pub/
build/
flutter_*.png
linked_*.ds
unlinked.ds
unlinked_spec.ds
pubspec.lock
pubspec_overrides.yaml

# From the Mac OS X Finder
.DS_Store
# Android related
**/android/**/gradle-wrapper.jar
.gradle/
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java
**/android/key.properties
*.jks

# iOS/XCode related
**/ios/**/*.mode1v3
**/ios/**/*.mode2v3
**/ios/**/*.moved-aside
**/ios/**/*.pbxuser
**/ios/**/*.perspectivev3
**/ios/**/*sync/
**/ios/**/.sconsign.dblite
**/ios/**/.tags*
**/ios/**/.vagrant/
**/ios/**/DerivedData/
**/ios/**/Icon?
**/ios/**/Pods/
**/ios/**/.symlinks/
**/ios/**/profile
**/ios/**/xcuserdata
**/ios/.generated/
**/ios/Flutter/.last_build_id
**/ios/Flutter/App.framework
**/ios/Flutter/Flutter.framework
**/ios/Flutter/Flutter.podspec
**/ios/Flutter/Generated.xcconfig
**/ios/Flutter/ephemeral
**/ios/Flutter/app.flx
**/ios/Flutter/app.zip
**/ios/Flutter/flutter_assets/
**/ios/Flutter/flutter_export_environment.sh
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*

# macOS
**/Flutter/ephemeral/
**/Pods/
**/macos/Flutter/GeneratedPluginRegistrant.swift
**/macos/Flutter/ephemeral
**/xcuserdata/

# Windows
**/windows/flutter/ephemeral/
**/windows/flutter/generated_plugin_registrant.cc
**/windows/flutter/generated_plugin_registrant.h
**/windows/flutter/generated_plugins.cmake

# Linux
**/linux/flutter/ephemeral/
**/linux/flutter/generated_plugin_registrant.cc
**/linux/flutter/generated_plugin_registrant.h
**/linux/flutter/generated_plugins.cmake

# Coverage
coverage/

# Symbols
app.*.symbols

# Exceptions to above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/dev/ci/**/Gemfile.lock
!.vscode/settings.json
20 changes: 18 additions & 2 deletions pkgs/cupertino_http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
## 2.0.0-wip

* MutableURLRequest.httpBodyStream now takes a `NSInputStream` instead of a
`Stream<List<int>>`.
* The behavior of `CupertinoClient` and `CupertinoWebSocket` has not changed.
* **Breaking:** `MutableURLRequest.httpBodyStream` now takes a `NSInputStream`
instead of a `Stream<List<int>>`.
* **Breaking:** The following enums/classes previous defined by
`package:cupertino_http` are now imported from `package:objective_c`:
* `NSData`
* `NSError`
* `NSHTTPCookieAcceptPolicy`
* `NSMutableData`
* `NSURLRequestCachePolicy`
* `NSURLRequestNetworkServiceType`
* `NSURLSessionMultipathServiceType`
* `NSURLSessionResponseDisposition`
* `NSURLSessionTaskState`
* `NSURLSessionWebSocketCloseCode`
* `NSURLSessionWebSocketMessageType`
* **Breaking:** `URLSession.dataTaskWithCompletionHandler` is no longer
supported for background sessions.

## 1.5.1

Expand Down

This file was deleted.

2 changes: 0 additions & 2 deletions pkgs/cupertino_http/example/android/local.properties

This file was deleted.

This file was deleted.

This file was deleted.

23 changes: 0 additions & 23 deletions pkgs/cupertino_http/example/linux/flutter/generated_plugins.cmake

This file was deleted.

44 changes: 0 additions & 44 deletions pkgs/flutter_http_example/ios/Podfile

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down

0 comments on commit 6698a62

Please sign in to comment.