Skip to content

Commit

Permalink
Merge pull request #260 from TechnionTDK/develop
Browse files Browse the repository at this point in the history
release 2.0.2
  • Loading branch information
raz-levi authored Jun 20, 2022
2 parents dbd2923 + 19a020e commit 672b4df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .packages
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# For more info see: https://dart.dev/go/dot-packages-deprecation
#
# Generated by pub on 2022-06-15 20:02:30.432352.
# Generated by pub on 2022-06-20 14:55:20.394294.
another_flushbar:file:///Users/raz/flutter/.pub-cache/hosted/pub.dartlang.org/another_flushbar-1.10.29/lib/
archive:file:///Users/raz/flutter/.pub-cache/hosted/pub.dartlang.org/archive-3.3.0/lib/
args:file:///Users/raz/flutter/.pub-cache/hosted/pub.dartlang.org/args-2.3.1/lib/
Expand Down
2 changes: 1 addition & 1 deletion lib/global/client_requests.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ClientRequests extends GetConnect {
}

Future<SortedList<Suggestion>> getSuggestions({required String pattern}) async {
Response response = await get('http://${ProjectConfig.serverAddress}/get_suggestions?name=${pattern.replaceAll(" ", "_")}');
Response response = await get('http://${ProjectConfig.serverAddress}/get_suggestions?name=$pattern');
SortedList<Suggestion> suggestions = getSuggestionsList;

if (_isResponseSuccess(response)) {
Expand Down
4 changes: 2 additions & 2 deletions lib/global/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ class ProjectConfig {

// Project Config
static const String projectName = "WikiPo";
static const String projectVersion = "v2.0.1";
static const String projectVersion = "v2.0.2";
static const String googlePlayUrl = "https://play.google.com/store/apps/details?id=com.technion.android.wikiplaces.wiki_places";
static const String appEmail = "[email protected]";
static const String appEmailPassword = "uruevumwrgrkkjhb";

// Backend Config
static const String serverAddress = "132.69.8.15:80";
static const String serverAddress = "wikipo.cs.technion.ac.il";
}
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: wiki_places
description: WikiPo app.

publish_to: 'none'
version: 2.0.1+1
version: 2.0.2+1

environment:
sdk: ">=2.15.1 <3.0.0"
Expand Down

0 comments on commit 672b4df

Please sign in to comment.