Skip to content

Commit

Permalink
Sets the correct API version and fixes a few bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkrantz committed Aug 31, 2020
1 parent a72a12f commit d728c5a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="se.fsektionen.fapp" version="2.5.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<widget id="se.fsektionen.fapp" version="2.5.1" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>F-sektionen</name>
<description>
F-sektionens app
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "se.fsektionen.fapp",
"version": "2.5.0",
"version": "2.5.1",
"displayName": "F-sektionen",
"cordova": {
"platforms": [
Expand Down Expand Up @@ -34,4 +34,4 @@
"gulp": "^4.0.0",
"gulp-sass": "^4.0.2"
}
}
}
2 changes: 1 addition & 1 deletion www/about_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="page-content">
<div class="block-title about-title">F-appen</div>
<div class="block">
<p class="version">Version: 2.5.0</p>
<p class="version">Version: 2.5.1</p>
<p>Powered by Framework7 & Adobe PhoneGap</p>
<p class="contributor-title">Knackad av F-sektionens Spindelmän:</p>
<p class="contributor">Jakob Navrozidis (S16, S17, SF17/18, S18, S19)</p>
Expand Down
2 changes: 1 addition & 1 deletion www/js/groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $$('#groups-list').on('click', 'li', function() {

function updateGroupBadge(count) {
if (count > 0) {
$$('.group-badge').html('!');
$$('.group-badge').html(count);
$$('.group-badge').show();
} else {
$$('.group-badge').html(0);
Expand Down
2 changes: 1 addition & 1 deletion www/js/version_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* web API version and if not, prompts a popup to force the user to update.
*/
function checkAPIVersion(apiVersion) {
const localAPIVersion = 1.0;
const localAPIVersion = 1.1;

if (apiVersion !== localAPIVersion) {

Expand Down
4 changes: 4 additions & 0 deletions www/scss/partials/_messages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
.message-received.message-admin .message-bubble {
background-color: #ff9800;
color: $white;

a {
color: #007aff;
}
}

.msg-editor-page .content-block-title {
Expand Down

0 comments on commit d728c5a

Please sign in to comment.